less network spam
Some checks failed
Server / build-dhfs (push) Failing after 6m38s
Server / build-webui (push) Successful in 2m26s
Server / publish-docker (push) Has been skipped
Server / publish-run-wrapper (push) Has been skipped

This commit is contained in:
2024-07-14 09:37:25 +02:00
parent b568a5baaf
commit 66d2c26551
4 changed files with 10 additions and 9 deletions

View File

@@ -2,23 +2,23 @@ version: "3.2"
services: services:
dhfs1: dhfs1:
image: ghcr.io/usatiuk/dhfs:main # image: ghcr.io/usatiuk/dhfs:main
# build: . build: .
privileged: true privileged: true
devices: devices:
- /dev/fuse - /dev/fuse
command: "./dockerentry.sh -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5010" command: "./dockerentry.sh -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5010 -Ddhfs.objects.autosync.download-all=true"
ports: ports:
- 8080:8080 - 8080:8080
- 8081:8443 - 8081:8443
- 5005:5005 - 5005:5005
dhfs2: dhfs2:
image: ghcr.io/usatiuk/dhfs:main # image: ghcr.io/usatiuk/dhfs:main
# build: . build: .
privileged: true privileged: true
devices: devices:
- /dev/fuse - /dev/fuse
command: "./dockerentry.sh -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5010" command: "./dockerentry.sh -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5010 -Ddhfs.objects.autosync.download-all=true"
ports: ports:
- 8090:8080 - 8090:8080
- 8091:8443 - 8091:8443

View File

@@ -2,13 +2,13 @@ quarkus.grpc.server.use-separate-server=false
dhfs.objects.persistence.files.root=${HOME}/dhfs_data/dhfs_root dhfs.objects.persistence.files.root=${HOME}/dhfs_data/dhfs_root
dhfs.objects.root=${HOME}/dhfs_data/dhfs_root_d dhfs.objects.root=${HOME}/dhfs_data/dhfs_root_d
dhfs.objects.peerdiscovery.port=42069 dhfs.objects.peerdiscovery.port=42069
dhfs.objects.peerdiscovery.interval=1000 dhfs.objects.peerdiscovery.interval=5000
dhfs.objects.peersync.timeout=5 dhfs.objects.peersync.timeout=5
dhfs.objects.sync.timeout=30 dhfs.objects.sync.timeout=30
dhfs.objects.sync.ping.timeout=5 dhfs.objects.sync.ping.timeout=5
dhfs.objects.invalidation.threads=4 dhfs.objects.invalidation.threads=4
dhfs.objects.invalidation.delay=1000 dhfs.objects.invalidation.delay=1000
dhfs.objects.reconnect_interval=1s dhfs.objects.reconnect_interval=5s
dhfs.fuse.root=${HOME}/dhfs_data/dhfs_fuse_root dhfs.fuse.root=${HOME}/dhfs_data/dhfs_fuse_root
dhfs.fuse.debug=false dhfs.fuse.debug=false
dhfs.fuse.enabled=true dhfs.fuse.enabled=true

View File

@@ -50,8 +50,8 @@ public class DhfsFuseIT {
"-Ddhfs.objects.ref_verification=true", "-Ddhfs.objects.ref_verification=true",
"-Ddhfs.objects.deletion.delay=0", "-Ddhfs.objects.deletion.delay=0",
"-Ddhfs.objects.sync.timeout=5", "-Ddhfs.objects.sync.timeout=5",
"-Ddhfs.objects.reconnect_interval=1s",
"-Dquarkus.log.category.\"com.usatiuk.dhfs\".level=TRACE", "-Dquarkus.log.category.\"com.usatiuk.dhfs\".level=TRACE",
"-Dquarkus.log.category.\"com.usatiuk.dhfs\".min-level=TRACE",
"-jar", "/app/quarkus-run.jar") "-jar", "/app/quarkus-run.jar")
.build()) .build())
.withFileFromPath("/app", Paths.get(buildPath, "quarkus-app")); .withFileFromPath("/app", Paths.get(buildPath, "quarkus-app"));

View File

@@ -54,6 +54,7 @@ public class DhfsFusex3IT {
"-Ddhfs.objects.deletion.delay=0", "-Ddhfs.objects.deletion.delay=0",
"-Ddhfs.objects.ref_verification=true", "-Ddhfs.objects.ref_verification=true",
"-Ddhfs.objects.sync.timeout=5", "-Ddhfs.objects.sync.timeout=5",
"-Ddhfs.objects.reconnect_interval=1s",
"-Dquarkus.log.category.\"com.usatiuk.dhfs\".level=TRACE", "-Dquarkus.log.category.\"com.usatiuk.dhfs\".level=TRACE",
"-jar", "/app/quarkus-run.jar") "-jar", "/app/quarkus-run.jar")
.build()) .build())