You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Gearman version to use. See available tags at https://hub.docker.com/r/artefactual/gearmand
777
+
GEARMAN_VERSION=latest
778
+
# Port to use (Default: 6379)
779
+
GEARMAN_PORT=6379
780
+
# Logging Level (Default: INFO)
781
+
GEARMAN_VERBOSE=INFO
782
+
# Persistent queue type to use (Default: builtin)
783
+
GEARMAN_QUEUE_TYPE=builtin
784
+
# Number of I/O threads to use (Default: 4)
785
+
GEARMAN_THREADS=4
786
+
# Number of backlog connections for listen (Default: 32)
787
+
GEARMAN_BACKLOG=32
788
+
# Number of file descriptors to allow for the process (Default is max allowed for user)
789
+
GEARMAN_FILE_DESCRIPTORS=
790
+
# Number of attempts to run the job before the job server removes it. (Default: no limit = 0)
791
+
GEARMAN_JOB_RETRIES=0
792
+
# Assign work in round-robin order per worker connection (Default: 0)
793
+
GEARMAN_ROUND_ROBIN=0
794
+
# Number of workers to wakeup for each job received (Default: 0)
795
+
GEARMAN_WORKER_WAKEUP=0
796
+
# Enable keepalive on sockets (Default: 0)
797
+
GEARMAN_KEEPALIVE=0
798
+
# The duration between two keepalive transmissions in idle condition (Default: 30)
799
+
GEARMAN_KEEPALIVE_IDLE=30
800
+
# The duration between two successive keepalive retransmissions, if acknowledgement to the previous keepalive transmission is not received (Default: 10)
801
+
GEARMAN_KEEPALIVE_INTERVAL=10
802
+
# The number of retransmissions to be carried out before declaring that remote end is not available (Default: 5)
803
+
GEARMAN_KEEPALIVE_COUNT=5
804
+
# Mysql server host (Default: localhost)
805
+
GEARMAN_MYSQL_HOST=localhost
806
+
# Mysql server port (Default: 3306)
807
+
GEARMAN_MYSQL_PORT=3306
808
+
# Mysql server user (Default: root)
809
+
GEARMAN_MYSQL_USER=root
810
+
# Mysql password
811
+
GEARMAN_MYSQL_PASSWORD=
812
+
# Path to file with mysql password(Docker secrets)
813
+
GEARMAN_MYSQL_PASSWORD_FILE=
814
+
# Database to use by Gearman (Default: Gearmand)
815
+
GEARMAN_MYSQL_DB=Gearmand
816
+
# Table to use by Gearman (Default: gearman_queue)
0 commit comments