Go to file
zw 4cfd9cd37f SyncInfo接口开发 2023-03-29 09:23:23 +08:00
adaptor SyncInfo接口开发 2023-03-29 09:23:23 +08:00
common 错误返回 2023-03-27 15:48:41 +08:00
deploy Delete 'deploy/pcm-modelarts-deployement.yaml' 2023-03-25 20:40:49 +08:00
.gitignore etcd连接服务 2023-03-22 15:01:56 +08:00
LICENSE Initial commit 2022-03-01 22:24:21 +08:00
Makefile feat: add pcm-modelarts cicd 2023-03-25 15:10:20 +08:00
README.md feat: Edit README.md 2022-11-29 19:02:57 +08:00
go.mod fix: template yaml 2023-03-20 17:14:39 +08:00
go.sum fix: template yaml 2023-03-20 17:14:39 +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.