DashJay

Results 10 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...

When using the built-in storage control of K8S, the POD will be expelled when the disk usage of the POD exceeds the limit. This does not what we desired. but...

I tried to add a pr #1012 @CaiJimmy please take a look if you have free time.

I implemented a version in more convenient way, I do not agree to change the interface, because the interface of the base library once opened to change will cause a...

You can easily use command like this to access BRPC server with http proto ``` dd if=/dev/random of=/tmp/test bs=4M count=1 echo "{\"message\": \"$(cat /tmp/test | base64)\"}" > test.1 curl -H...

> We encountered the same problem, how was it solved? @wlleiiwang Hi, finally we solve this problem by invoking the HTTP interface directly, brpc server implement http interface automaticly.

I think if we import iter.Seq/iter.Seq2, the implement may be easy, but the performance for inplace operations like Reverse, Replace should drop a lot