aboutsummaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-03-12 02:54:08 -0800
committerChris Lu <chris.lu@gmail.com>2021-03-12 02:54:08 -0800
commit2d567e00aa18d34173659ba0044466a89e0622ea (patch)
treecc5e78fd24737258cb522ed1eeb590b4fb7cb263 /docker
parent7d57664c2d80f2b7d3eb4cecc57a3275bafee44d (diff)
downloadseaweedfs-2d567e00aa18d34173659ba0044466a89e0622ea.tar.xz
seaweedfs-2d567e00aa18d34173659ba0044466a89e0622ea.zip
add mount memory profiling
Diffstat (limited to 'docker')
-rw-r--r--docker/Makefile7
-rw-r--r--docker/compose/local-mount-profile-compose.yml47
2 files changed, 53 insertions, 1 deletions
diff --git a/docker/Makefile b/docker/Makefile
index 345eac272..a933956b7 100644
--- a/docker/Makefile
+++ b/docker/Makefile
@@ -4,8 +4,10 @@ all: gen
gen: dev
-build:
+binary:
cd ../weed; CGO_ENABLED=0 GOOS=linux go build -ldflags "-extldflags -static"; mv weed ../docker/
+
+build: binary
docker build --no-cache -t chrislusf/seaweedfs:local -f Dockerfile.local .
rm ./weed
@@ -21,6 +23,9 @@ dev_tls: build certstrap
dev_mount: build
docker-compose -f compose/local-mount-compose.yml -p seaweedfs up
+profile_mount: build
+ docker-compose -f compose/local-mount-profile-compose.yml -p seaweedfs up
+
k8s: build
docker-compose -f compose/local-k8s-compose.yml -p seaweedfs up
diff --git a/docker/compose/local-mount-profile-compose.yml b/docker/compose/local-mount-profile-compose.yml
new file mode 100644
index 000000000..4682591c4
--- /dev/null
+++ b/docker/compose/local-mount-profile-compose.yml
@@ -0,0 +1,47 @@
+version: '2'
+
+services:
+ master:
+ image: chrislusf/seaweedfs:local
+ ports:
+ - 9333:9333
+ - 19333:19333
+ command: "master -ip=master"
+ volume:
+ image: chrislusf/seaweedfs:local
+ ports:
+ - 7455:8080
+ - 9325:9325
+ volumes:
+ - /Volumes/mobile_disk/99:/data
+ command: 'volume -mserver="master:9333" -port=8080 -metricsPort=9325 -preStopSeconds=1 -publicUrl=localhost:7455'
+ depends_on:
+ - master
+ filer:
+ image: chrislusf/seaweedfs:local
+ ports:
+ - 8888:8888
+ - 18888:18888
+ - 9326:9326
+ volumes:
+ - /Volumes/mobile_disk/99:/data
+ command: 'filer -master="master:9333" -metricsPort=9326'
+ tty: true
+ stdin_open: true
+ depends_on:
+ - master
+ - volume
+ mount:
+ image: chrislusf/seaweedfs:local
+ privileged: true
+ cap_add:
+ - SYS_ADMIN
+ devices:
+ - fuse
+ volumes:
+ - /Volumes/mobile_disk/99:/data
+ entrypoint: '/bin/sh -c "mkdir -p t1 && weed mount -filer=filer:8888 -dir=./t1 -cacheCapacityMB=0 -memprofile=/data/mount.mem.pprof"'
+ depends_on:
+ - master
+ - volume
+ - filer