Go to file
devad 8e5229bfb9 fix: 修复查询历史作业列表bug
Signed-off-by: devad <cossjie@foxmail.com>
2023-03-06 15:51:43 +08:00
adaptor fix: 修复查询历史作业列表bug 2023-03-06 15:51:43 +08:00
common refactor: 接口返回调整 2023-03-02 09:15:39 +08:00
.gitignore config & code restructure 2022-10-24 03:24:58 -07:00
LICENSE Initial commit 2022-03-01 22:24:21 +08:00
Makefile refactor: Makefile更新 2023-03-03 10:36:47 +08:00
README.md feat: Edit README.md 2022-11-29 19:02:57 +08:00
go.mod feat:查询文件内容、查询用户可访问队列、查询队列资源详细信息、查询用户资源限制信息 2023-03-01 15:30:33 +08:00
go.sum feat:查询文件内容、查询用户可访问队列、查询队列资源详细信息、查询用户资源限制信息 2023-03-01 15:30:33 +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.