forked from usdot-jpo-ode/asn1_codec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.env
More file actions
32 lines (23 loc) · 904 Bytes
/
sample.env
File metadata and controls
32 lines (23 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# The IP address of the machine running the kafka cluster.
DOCKER_HOST_IP=
# Whether or not to log to the console.
ACM_LOG_TO_CONSOLE=true
# Whether or not to log to a file.
ACM_LOG_TO_FILE=true
# The log level to use.
# Valid values are: "DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL", "OFF"
ACM_LOG_LEVEL=INFO
# If unset, a local kafka broker will be targeted.
# If set to "CONFLUENT", the application will target a Confluent Cloud cluster.
KAFKA_TYPE=
# Confluent Cloud Integration (if KAFKA_TYPE is set to "CONFLUENT")
CONFLUENT_KEY=
CONFLUENT_SECRET=
# Number of concurrent processes/consumers to start in Kafka mode
# Default of 1 starts one consumer per container
# Increase to run more consumers per container
ACM_NUMBER_OF_PROCESSES=1
# HTTP Server Port
ACM_HTTP_SERVER_PORT=9999
# Number of threads to use for HTTP Server
ACM_HTTP_SERVER_CONCURRENCY=4