Go to file
qiwang c41ca0df46 Merge remote-tracking branch 'origin/2.0' into 2.0
Former-commit-id: b242bc2ed756d9a586ad9234e8d4338a80259172
2023-05-16 17:04:07 +08:00
adaptor Merge remote-tracking branch 'origin/2.0' into 2.0 2023-05-16 17:04:07 +08:00
common modelarts notebook接口参数调整 2023-05-12 15:40:10 +08:00
deploy core-api端口号修改 2023-05-16 09:57:27 +08:00
.gitignore feat: 添加日志处理 2023-04-13 18:14:30 +08:00
LICENSE Initial commit 2022-03-01 22:24:21 +08:00
Makefile feat: 增加pcm-ceph容器话配置文件 2023-04-26 14:51:20 +08:00
README.md feat: Edit README.md 2022-11-29 19:02:57 +08:00
go.mod 镜像管理初步完成 2023-05-13 16:17:56 +08:00
go.sum 镜像管理初步完成 2023-05-13 16:17:56 +08:00
image.tar.REMOVED.git-id 镜像管理初步完成 2023-05-13 16:17:56 +08:00

README.md

PCM: Peer Collaboration Mechanism

PCM is positioned as Software stack over Cloud, aiming to build the standards and ecology of heterogeneous cloud collaboration in a non intrusive and autonomous peer-to-peer manner. It focuses on how to make full use of the computing and storage capabilities of multiple source clouds without changing the heterogeneous cloud computing software stack, rather than implementing a new cloud software stack. From the cloud perspective, PCM superimposes on the cloud and focuses more on collaboration between clouds than on the cloud itself.

pcm

Requirements


Quick Start


# clone
git clone https://gitlink.org.cn/JCCE/PCM.git

# get required packages
go mod tidy

# build pcm components
make build

# start service
nohup ./pcm-gateway &> pcm-gateway.log &
nohup ./pcm-pod &> pcm-pod.log &
nohup ./pcm-vm &> pcm-vm.log &
nohup ./pcm-slurm &> pcm-slurm.log &

If the startup is successful, the 'gateway' will listen on the '8880' port by default, and no error is reported in the log. The above is a simple demonstration using nohup. It is recommended that the production environment should be hosted by systemd. The relevant service files can be found in the etc/service directory for reference.