Skip to content

Commit 4f6f55c

Browse files
committed
init paddleflow
1 parent 64baac2 commit 4f6f55c

File tree

255 files changed

+51467
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

255 files changed

+51467
-0
lines changed

Makefile

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# init project path
2+
HOMEDIR := $(shell pwd)
3+
OUTDIR := $(HOMEDIR)/output
4+
5+
# init command params
6+
GO := go
7+
GOPATH := $(shell $(GO) env GOPATH)
8+
GOMOD := $(GO) mod
9+
GOBUILD := $(GO) build
10+
GOTEST := $(GO) test -gcflags="-N -l"
11+
GOPKGS := $$($(GO) list ./...| grep -vE "vendor" | grep -vE "paddleflow/pkg/fs/fuse/ufs")
12+
export PATH := $(GOPATH)/bin/:$(PATH)
13+
14+
# test cover files
15+
COVPROF := $(HOMEDIR)/covprof.out # coverage profile
16+
COVFUNC := $(HOMEDIR)/covfunc.txt # coverage profile information for each function
17+
COVHTML := $(HOMEDIR)/covhtml.html # HTML representation of coverage profile
18+
19+
GIT_COMMIT = `git rev-parse HEAD`
20+
GIT_DATE = `date "+%Y-%m-%d %H:%M:%S"`
21+
GIT_VERSION = `git --version`
22+
23+
LD_FLAGS = " \
24+
-X 'paddleflow/pkg/version.GitVersion=${GIT_VERSION}' \
25+
-X 'paddleflow/pkg/version.GitCommit=${GIT_COMMIT}' \
26+
-X 'paddleflow/pkg/version.BuildDate=${GIT_DATE}' \
27+
'-extldflags=-static' \
28+
-w -s"
29+
30+
# make, make all
31+
all: prepare compile package
32+
33+
# make prepare, download dependencies
34+
prepare: gomod
35+
36+
gomod:
37+
$(GO) env -w GO111MODULE=on
38+
$(GO) env -w GOPROXY=https://goproxy.io,direct
39+
$(GO) env -w CGO_ENABLED=1
40+
$(GOMOD) download
41+
42+
# make compile
43+
compile: build
44+
45+
build:
46+
$(GOBUILD) -ldflags ${LD_FLAGS} -trimpath -o $(HOMEDIR)/paddleflow $(HOMEDIR)/cmd/server/main.go
47+
$(GOBUILD) -ldflags ${LD_FLAGS} -trimpath -o $(HOMEDIR)/pfs-fuse $(HOMEDIR)/cmd/fs/fuse/main.go
48+
$(GOBUILD) -ldflags ${LD_FLAGS} -trimpath -o $(HOMEDIR)/csi-plugin $(HOMEDIR)/cmd/fs/csi-plugin/main.go
49+
50+
# make doc
51+
doc:
52+
$(GO) get -u github.com/swaggo/swag/cmd/[email protected]
53+
swag init -g router.go --parseDependency --parseInternal -o $(HOMEDIR)/docs/api -d $(HOMEDIR)/pkg/apiserver/router/v1/
54+
mkdir -p $(OUTDIR)/docs
55+
mv $(HOMEDIR)/docs/api $(OUTDIR)/docs
56+
57+
# make test, test your code
58+
test: prepare mock-gen test-case
59+
mock-gen:
60+
$(GO) get golang.org/x/tools/go/packages
61+
$(GO) get github.com/golang/mock/[email protected]
62+
mockgen -destination=pkg/pipeline/mock_job.go -source=pkg/pipeline/job.go -package=pipeline
63+
test-case:
64+
$(GOTEST) -v -cover $(GOPKGS)
65+
66+
# make package
67+
package:
68+
mkdir -p $(OUTDIR)/bin
69+
mv $(HOMEDIR)/paddleflow $(OUTDIR)/bin
70+
mv $(HOMEDIR)/pfs-fuse $(OUTDIR)/bin
71+
mv $(HOMEDIR)/csi-plugin $(OUTDIR)/bin
72+
cp $(HOMEDIR)/pkg/fs/csiplugin/client/mount.sh $(OUTDIR)/bin
73+
74+
# make clean
75+
clean:
76+
$(GO) clean
77+
rm -rf $(OUTDIR)
78+
79+
# avoid filename conflict and speed up build
80+
.PHONY: all prepare compile test package clean build

bin/start.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
workdir=`cd $(dirname $0); pwd`
6+
root=$workdir/..
7+
supervise_dir=$root/status/paddleflow
8+
9+
pushd $root
10+
mkdir -p $supervise_dir
11+
./bin/supervise -p $supervise_dir -f "./bin/paddleflow"
12+
popd

cmd/fs/csi-plugin/app/csiplugin.go

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserve.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
package app
18+
19+
import (
20+
"github.com/spf13/pflag"
21+
22+
"paddleflow/cmd/fs/csi-plugin/app/options"
23+
"paddleflow/pkg/common/config"
24+
"paddleflow/pkg/common/logger"
25+
)
26+
27+
func initConfig() {
28+
// init from yaml config
29+
config.InitCSIPluginConfig()
30+
f := options.NewCSIPluginOption()
31+
f.InitFlag(pflag.CommandLine)
32+
}
33+
34+
func Init() error {
35+
initConfig()
36+
return logger.Init(&config.CSIPluginConf.Log)
37+
}
+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserve.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
package options
18+
19+
import (
20+
goflag "flag"
21+
"github.com/spf13/pflag"
22+
23+
"paddleflow/pkg/common/config"
24+
"paddleflow/pkg/common/logger"
25+
)
26+
27+
// CSIPluginOption is the main context object for the csi plugin.
28+
type CSIPluginOption struct{}
29+
30+
func NewCSIPluginOption() *CSIPluginOption {
31+
return &CSIPluginOption{}
32+
}
33+
34+
func (csi *CSIPluginOption) AddFlagSet(fs *pflag.FlagSet) {
35+
if fs == nil {
36+
fs = pflag.CommandLine
37+
}
38+
csiPluginConf := &config.CSIPluginConf.CSIPlugin
39+
fs.StringVar(&csiPluginConf.UnixEndpoint, "unix-endpoint", csiPluginConf.UnixEndpoint, "CSI endpoint")
40+
fs.StringVar(&csiPluginConf.NodeID, "node-id", csiPluginConf.NodeID, "node id")
41+
fs.BoolVar(&csiPluginConf.PprofEnable, "pprof-enable", csiPluginConf.PprofEnable, "pprof debug tool")
42+
fs.IntVar(&csiPluginConf.PprofPort, "pprof-port", csiPluginConf.PprofPort, "pprof port")
43+
}
44+
45+
func (csi *CSIPluginOption) InitFlag(fs *pflag.FlagSet) {
46+
if fs == nil {
47+
fs = pflag.CommandLine
48+
}
49+
csi.AddFlagSet(fs)
50+
logger.AddFlagSet(fs, &config.CSIPluginConf.Log)
51+
pflag.CommandLine.AddGoFlagSet(goflag.CommandLine)
52+
pflag.Parse()
53+
}

cmd/fs/csi-plugin/main.go

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
/*
2+
Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserve.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
package main
18+
19+
import (
20+
"fmt"
21+
"os"
22+
"time"
23+
24+
"github.com/gin-contrib/pprof"
25+
"github.com/gin-gonic/gin"
26+
log "github.com/sirupsen/logrus"
27+
28+
"paddleflow/cmd/fs/csi-plugin/app"
29+
"paddleflow/pkg/common/config"
30+
"paddleflow/pkg/fs/csiplugin/controller"
31+
"paddleflow/pkg/fs/csiplugin/csidriver"
32+
)
33+
34+
func exitWithError() {
35+
exit(true)
36+
}
37+
38+
func exitNormal() {
39+
exit(false)
40+
}
41+
42+
// exit the function that stop program with return value
43+
func exit(hasError bool) {
44+
// it is required, to work around bug of log4go
45+
// 在程序退出前,需要先sleep一段时间,否则有可能日志打印不全
46+
time.Sleep(100 * time.Millisecond)
47+
if hasError {
48+
os.Exit(-1)
49+
}
50+
os.Exit(0)
51+
}
52+
53+
// main the function where execution of the program begins
54+
func main() {
55+
if err := app.Init(); err != nil {
56+
log.Errorf("init csi plugin failed: %v", err)
57+
exitWithError()
58+
}
59+
60+
if config.CSIPluginConf.CSIPlugin.PprofEnable {
61+
go func() {
62+
router := gin.Default()
63+
pprof.Register(router, "debug/pprof")
64+
if err := router.Run(fmt.Sprintf(":%d", config.CSIPluginConf.CSIPlugin.PprofPort)); err != nil {
65+
log.Errorf("run pprof failed: %s, skip this error", err.Error())
66+
} else {
67+
log.Infof("pprof started")
68+
}
69+
}()
70+
}
71+
72+
stopChan := make(chan struct{})
73+
defer close(stopChan)
74+
controller := controller.GetMountPointController(config.CSIPluginConf.CSIPlugin.NodeID)
75+
go controller.Start(stopChan)
76+
defer controller.Stop()
77+
78+
d := csidriver.NewDriver(config.CSIPluginConf.CSIPlugin.NodeID, config.CSIPluginConf.CSIPlugin.UnixEndpoint)
79+
d.Run()
80+
81+
exitNormal()
82+
}

0 commit comments

Comments
 (0)