Skip to content

Commit

Permalink
fix: disable binlog
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumedsde committed Oct 1, 2023
1 parent 46066a1 commit c3a2bd1
Showing 1 changed file with 19 additions and 12 deletions.
31 changes: 19 additions & 12 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,22 @@ services:
beanstalkd:
image: guillaumedsde/beanstalkd-distroless:1.13
command:
- -b
- /data
- -V
- -f
- "2400000"
- -z
- "10000000"
volumes:
- type: volume
source: beanstalkd-binlog
target: /data
# NOTE: disabling binlog due to memory leak, see:
# https://github.com/beanstalkd/beanstalkd/issues/622
# - -b
# - /data
# NOTE: never fsync (since binlog is disabled)
- "-F"
- "-z"
- "500000"
# NOTE: increase verbosity
- "-V"
# NOTE: disabling binlog due to memory leak, see:
# https://github.com/beanstalkd/beanstalkd/issues/622
# volumes:
# - type: volume
# source: beanstalkd-binlog
# target: /data
ports:
- target: 11300
published: 11300
Expand Down Expand Up @@ -187,4 +192,6 @@ services:

volumes:
pg-data:
beanstalkd-binlog:
# NOTE: disabling binlog due to memory leak, see:
# https://github.com/beanstalkd/beanstalkd/issues/622
# beanstalkd-binlog:

0 comments on commit c3a2bd1

Please sign in to comment.