DashJay

Results 4 comments of DashJay

> 我觉得这还不是一个最优方案,最优的方法应该按照 controller 的编码标准来,每个字段比对->执行->存状态 这样pipeline 每执行到一个阶段都会更新对应的字段 会更合理一些。 每一个包的状态应该是定义在包内吧,不然又会像3.0一样,针对kubernetes的搭建写了很多代码在二进制里无法修改。

@Linnkenn 你这个相当于不限制最大使用线程数,你可以使用API`fmt.Println("最大使用资源数: ", runtime.NumGoroutine())` 来查看具体情况 你这个`TestGoChan`同时运行了上千个`Goroutine`。 但是如果你使用一个chan 来限制并发数时 代码如下需要定义一个新的函数 ``` func (t *testWorker) Do2(s *chan int) { time.Sleep(oneLogicCostTime)

Can we push some container_layers directly and define a func container_manifest, so that we can commit a image like git rebase

I'd like to provide a tool named 'image_rebaser', we can call it like `image_rebaser base:tag target:tag layer1.tar layer2.tar ....`. this tool just push all tars as blobs, and commit a...