Created
December 2, 2018 17:02
-
-
Save duanebester/57ad1f44bf5d0bd983e8c54621f103f7 to your computer and use it in GitHub Desktop.
conf file for kafka akka
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
akka { | |
kafka { | |
producer { | |
parallelism = 10 | |
close-timeout = 60s | |
use-dispatcher = "akka.kafka.default-dispatcher" | |
eos-commit-interval = 100ms | |
kafka-clients { | |
bootstrap.servers = "localhost:9092" | |
} | |
} | |
consumer { | |
kafka-clients { | |
enable.auto.commit = true | |
bootstrap.servers = "localhost:9092" | |
group.id = "group1" | |
auto.offset.reset = "earliest" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment