Results 22 issues of Sun Xia

since go module have been released for a long time. Why not to use go module to manage dependencies? It only need a few commands ``` go mod init go...

My KUBECONFIG config as follows ``` minikube=~/.kube/config kubenetes=~/.kube/localconfig hongkong=~/.kube/hongkongconfig export KUBECONFIG=$KUBECONFIG:$minikube:$kubenetes:$hongkong\ ``` but when I execute`arena list`, I got the following error ``` WARN[0000] Illegal kubeconfig file: :~/.kube/config:~/.kube/localconfig:~/.kube/hongkongconfig FATA[0000] stat...

kind/question

## Description 构建一个可以运行在 arm 服务器上的kubefate 可执行文件,以及 kubefate 镜像 可以通过在执行makefile的时候添加arch 参数来指定目标架构 ``` ARCH=arm64 make release ARCH=amd64 make release ``` 生成的镜像以及可执行文件,会存放在 `release`目录里 ``` release ├── amd64 │   ├── kubefate-k8s-v1.4.5-amd64.tar.gz │   └── kubefate-v1.4.5-amd64.docker...

I deploy fate 1.8 by kubefate. After the cluster installed, pod python failed to start, and the error log is ``` Traceback (most recent call last): File "fateflow/python/fate_flow/fate_flow_server.py", line 29,...

bug

https://github.com/WeBankFinTech/eggroll/blob/07f406280a436b09c1dc2a83dd6ec0062a66a1ff/python/eggroll/core/conf_keys.py#L33 conf key `eggroll.core.grpc.channel.keepalive.timout.sec` should be `eggroll.core.grpc.channel.keepalive.timeout.sec`

Mesos 0.24.0 added experimental support for v1 Scheduler HTTP API. and I cannot shutdown the framwork by using the following command: ``` sh curl -d "frameworkId=YOUR_FRAMEWORK_ID" -X POST http://YOUR_MESOS_URL:5050/master/shutdown ```...

Is kubefate ready for fate2.0? If so, it would be better to create a new tag.

Does osx support multiple partners use tls at the same time?

`flow load`命令执行时,serving-server会到zookeeper中的`/flow/online/transfer`去查询模型地址。 fateflow 基于python实现,它写入到 zookeeper 中的地址为` http%3A%2F%2F172.16.0.49%3A9380%2Fv1%2Fmodel%2Ftransfer%2Fguest~10000~guest-10000~host-20000~model%2F202210120948058502700 `,可以看到`~`保持原样。 而java在做urldecode时会将`~`转为`%E7`。这会导致原有的实现中,`child.endsWith(encodeUri)`永远匹配不到结果 ``` # child字符串: http%3A%2F%2F172.16.0.49%3A9380%2Fv1%2Fmodel%2Ftransfer%2Fguest~10000~arbiter-10000~guest-10000~host-20000~model%2F202210180730196742980 # encodeUri字符串: %2Fguest%7E10000%7Earbiter-10000%7Eguest-10000%7Ehost-20000%7Emodel%2F202210180730196742980 ``` 目前我的修改办法是: 对zookeeper中读取到的内容直接decode,然后和拼接好的uri进行比较。缺点就是可能会做多次的decode操作。

add marshalBinary & unmarshalBinary to pedersen.Parameter