tianfeiyu

Results 6 comments of tianfeiyu

> @geektutu > @lisgroup 这是表面测试的现象,很可能代码中只对底层数组的大小做了判断。这一块具体的实现还没看到。 大佬,想继续请教一下,看结果这个 8192 字节只是 slice 底层数组的占用量,在runtime/slice.go 中 slice 定义有三个字段的,想问问 slice 在底层是怎么分配空间的 ``` type slice struct { array unsafe.Pointer len int cap int } ```

你这个是部署 kube-operator 失败导致的,按如下方式部署完成后再创建 cr 即可: ``` $ kubectl create -f deploy/crds/ecs_v1_kubernetescluster_crd.yaml $ kubectl create -f deploy/role.yaml $ kubectl create -f deploy/kube-operator.yaml $ bash test/create_ecs.sh ```

@kolyshkin I'm sorry, I may not have described it clearly. The above are two cases that execute `runc checkpoint mycontainerid ` failed. When container is `paused` or `running` status, execute...

I do not find relevant instructions of Recommender Components algorithm in the project. It is still a little complicated to learn from the code. Is there no documentation of the...

方法挺多的: (1)可以通过公司内部监控配置报警主动触发二次调度; (2)可以在 descheduler 代码中主动从公司内部监控系统获取节点的实际利用率; 我们目前就用的这两个方式。