Created
January 19, 2014 22:25
-
-
Save tamale/8511841 to your computer and use it in GitHub Desktop.
kairosdb conf
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
| kairosdb.telnetserver.port=4242 | |
| kairosdb.service.telnet=org.kairosdb.core.telnet.TelnetServerModule | |
| kairosdb.service.http=org.kairosdb.core.http.WebServletModule | |
| kairosdb.service.reporter=org.kairosdb.core.reporting.MetricReportingModule | |
| #=============================================================================== | |
| # Uses Quartz Cron syntax - default is to run every minute | |
| kairosdb.reporter.schedule=0 */1 * * * ? | |
| #=============================================================================== | |
| # Set to 0 to turn off HTTP port | |
| kairosdb.jetty.port=8079 | |
| kairosdb.jetty.static_web_root=webroot | |
| #=============================================================================== | |
| kairosdb.datastore.concurrentQueryThreads=5 | |
| kairosdb.service.datastore=org.kairosdb.datastore.cassandra.CassandraModule | |
| #=============================================================================== | |
| #Cassandra properties | |
| kairosdb.datastore.cassandra.host_list=stats1:9160,stats2:9160,stats3:9160,stats4:9160 | |
| kairosdb.datastore.cassandra.replication_factor=2 | |
| kairosdb.datastore.cassandra.write_delay=1000 | |
| kairosdb.datastore.cassandra.write_buffer_max_size=500000 | |
| #When reading one row read in 10k | |
| kairosdb.datastore.cassandra.single_row_read_size=10240 | |
| #The number of rows to read when doing a multi get | |
| kairosdb.datastore.cassandra.multi_row_size=1000 | |
| #The amount of data to read from each row when doing a multi get | |
| kairosdb.datastore.cassandra.multi_row_read_size=1024 | |
| # Uses Quartz Cron syntax - default is to run every five minutes | |
| kairosdb.datastore.cassandra.increase_buffer_size_schedule=0 */5 * * * ? | |
| #=============================================================================== | |
| # Cache file cleaning schedule. Uses Quartz Cron syntax | |
| kairosdb.query_cache.cache_file_cleaner_schedule=0 0 12 ? * SUN * |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment