2015-01-30 23:36:38 -05:00
|
|
|
#
|
|
|
|
# Druid - a distributed column store.
|
|
|
|
# Copyright 2012 - 2015 Metamarkets Group Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
|
2015-03-09 19:14:52 -04:00
|
|
|
# Extensions (no deep storage model is listed - using local fs for deep storage - not recommended for production)
|
2015-02-17 23:26:58 -05:00
|
|
|
druid.extensions.coordinates=["io.druid.extensions:druid-examples","io.druid.extensions:druid-kafka-eight","io.druid.extensions:mysql-metadata-storage"]
|
2014-06-09 18:59:44 -04:00
|
|
|
|
|
|
|
# Zookeeper
|
|
|
|
druid.zk.service.host=localhost
|
|
|
|
|
2015-02-17 18:21:16 -05:00
|
|
|
# Metadata Storage (mysql)
|
2014-10-31 15:03:04 -04:00
|
|
|
druid.metadata.storage.type=mysql
|
|
|
|
druid.metadata.storage.connector.connectURI=jdbc\:mysql\://localhost\:3306/druid
|
|
|
|
druid.metadata.storage.connector.user=druid
|
|
|
|
druid.metadata.storage.connector.password=diurd
|
2014-06-09 18:59:44 -04:00
|
|
|
|
2015-02-17 18:21:16 -05:00
|
|
|
# Deep storage (local filesystem for examples - don't use this in production)
|
2014-06-09 18:59:44 -04:00
|
|
|
druid.storage.type=local
|
2015-04-01 01:54:38 -04:00
|
|
|
druid.storage.storageDirectory=/tmp/druid/localStorage
|
2014-06-09 18:59:44 -04:00
|
|
|
|
2015-02-17 18:21:16 -05:00
|
|
|
# Query Cache (we use a simple 10mb heap-based local cache on the broker)
|
|
|
|
druid.cache.type=local
|
|
|
|
druid.cache.sizeInBytes=10000000
|
2014-11-24 17:54:11 -05:00
|
|
|
|
2014-06-09 18:59:44 -04:00
|
|
|
# Indexing service discovery
|
|
|
|
druid.selectors.indexing.serviceName=overlord
|
|
|
|
|
2015-03-09 19:14:52 -04:00
|
|
|
# Monitoring (disabled for examples, if you enable SysMonitor, make sure to include sigar jar in your cp)
|
2014-06-09 18:59:44 -04:00
|
|
|
# druid.monitoring.monitors=["com.metamx.metrics.SysMonitor","com.metamx.metrics.JvmMonitor"]
|
|
|
|
|
2015-03-09 19:14:52 -04:00
|
|
|
# Metrics logging (disabled for examples - change this to logging or http in production)
|
2014-08-12 17:00:21 -04:00
|
|
|
druid.emitter=noop
|