Created
July 14, 2015 20:25
-
-
Save milimetric/9ba2e9e54d8903e99b84 to your computer and use it in GitHub Desktop.
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
druid.host=localhost | |
druid.service=broker | |
druid.port=8000 | |
druid.zk.service.host=localhost | |
# Change these to make Druid faster | |
druid.processing.buffer.sizeBytes=100000000 | |
druid.processing.numThreads=1 |
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
druid.host=localhost | |
druid.service=coordinator | |
druid.port=8000 | |
druid.zk.service.host=localhost | |
druid.db.connector.connectURI=jdbc\:mysql\://localhost\:3306/druid | |
druid.db.connector.user=druid | |
druid.db.connector.password=diurd | |
druid.coordinator.startDelay=PT70s |
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
druid.host=localhost | |
druid.service=historical | |
druid.port=8000 | |
druid.zk.service.host=localhost | |
druid.extensions.coordinates=["io.druid.extensions:druid-s3-extensions:0.8.0-rc2-SNAPSHOT"] | |
# Dummy read only AWS account (used to download example data) | |
#druid.s3.secretKey=QyyfVZ7llSiRg6Qcrql1eEUG7buFpAK6T6engr1b | |
#druid.s3.accessKey=AKIAIMKECRUYKDQGR6YQ | |
druid.server.maxSize=10000000000 | |
# Change these to make Druid faster | |
druid.processing.buffer.sizeBytes=100000000 | |
druid.processing.numThreads=1 | |
druid.segmentCache.locations=[{"path": "/tmp/druid/indexCache", "maxSize"\: 10000000000}] |
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
druid.host=localhost | |
druid.port=9087 | |
druid.service=overlord | |
druid.zk.service.host=localhost | |
druid.extensions.coordinates=["io.druid.extensions:druid-kafka-seven:0.8.0-rc2-SNAPSHOT"] | |
druid.db.connector.connectURI=jdbc:mysql://localhost:3306/druid | |
druid.db.connector.user=druid | |
druid.db.connector.password=diurd | |
druid.selectors.indexing.serviceName=overlord | |
druid.indexer.queue.startDelay=PT0M | |
druid.indexer.runner.javaOpts="-server -Xmx256m" | |
druid.indexer.runner.startPort=8000 | |
druid.indexer.fork.property.druid.processing.numThreads=1 | |
druid.indexer.fork.property.druid.computation.buffer.size=100000000 |
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
Ddruid.extensions.coordinates=["io.druid.extensions:druid-kafka-seven"] | |
Druid.indexer.runner.javaOpts="-server -Xmx1g" | |
Duser.timezone=UTC | |
Dfile.encoding=UTF-8 | |
Ddruid.indexer.queue.startDelay=PT0M | |
Ddruid.indexer.runner.javaOpts="-server -Xmx1g" | |
Ddruid.indexer.fork.property.druid.processing.numThreads=1 | |
Ddruid.indexer.fork.property.druid.computation.buffer.size=100000000 |
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
druid.host=localhost | |
druid.service=realtime | |
druid.port=8000 | |
druid.zk.service.host=localhost | |
druid.extensions.coordinates=["io.druid.extensions:druid-examples:0.8.0-rc2-SNAPSHOT","io.druid.extensions:druid-kafka-seven:0.8.0-rc2-SNAPSHOT","io.druid.extensions:druid-rabbitmq:0.8.0-rc2-SNAPSHOT"] | |
# Change this config to db to hand off to the rest of the Druid cluster | |
#druid.publish.type=noop | |
# These configs are only required for real hand off | |
druid.db.connector.connectURI=jdbc\:mysql\://localhost\:3306/druid | |
druid.db.connector.user=druid | |
druid.db.connector.password=diurd | |
druid.processing.buffer.sizeBytes=100000000 | |
druid.processing.numThreads=1 | |
druid.monitoring.monitors=["io.druid.segment.realtime.RealtimeMetricsMonitor"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment