forked from usdot-jpo-ode/asn1_codec
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaem.properties
33 lines (24 loc) · 1.02 KB
/
aem.properties
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
33
# Kafka group.
group.id=AsnEncode
# ACM operation type specification; default is decode if left out.
acm.type=encode
# Path (relative or absolute) to the ACM error reporting XML template.
acm.error.template=/asn1_codec/config/Output.error.xml
# Kafka topics for ASN.1 Parsing
asn1.topic.consumer=topic.Asn1EncoderInput
asn1.topic.producer=topic.Asn1EncoderOutput
# Amount of time to wait when no message is available (milliseconds)
# This is a Kafka configuration parameter that we are using for the
# intended purpose.
asn1.consumer.timeout.ms=5000
# max number of bytes per topic+partition to request from brokers
# defaults to 1 MiB, here we set it to 20 MiB
max.partition.fetch.bytes=20971520
# For testing purposes, use one partition.
# asn1.kafka.partition=0
# The host ip address for the Broker.
# metadata.broker.list=localhost:9092
# specify the compression codec for all data generated: none, gzip, snappy, lz4, zstd
compression.type=zstd
# after offset reset, start consuming from the earliest offset
auto.offset.reset=smallest