blob: cd0b30f98d3b5b4cd228b9fcc771bf4f64ec1302 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one or more contributor license
# agreements. See the NOTICE file distributed with this work for additional information regarding
# copyright ownership. The ASF licenses this file to you 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.
########################
# Application properties
########################
# NOTE - All properties that have a default are set with it. Uncomment
# a property if you want to use a value different than the default.
# Properties that have no default are uncommented and must be set by
# the user.
## Application properties
## ----------------------
## Specifies an observer provider. This should be the name of a class that
## implements org.apache.fluo.api.observer.ObserverProvider.
fluo.observer.provider=com.foo.FooObserverProvider
## Observer jars in this directory are stored away in HDFS during initialization
fluo.observer.init.dir=/path/to/observer/foo/
## Properties with a prefix of fluo.app.* are stored in zookeeper at
## initialization time and can easily be retrieved by a Fluo application running
## on any node in the cluster.
fluo.app.key1=val1
## DFS properties
## ---------------
## Fluo DFS root path. Should be prefixed with 'fs.defaultFS' property in Hadoop's core-site.xml
fluo.dfs.root=hdfs://myhost:10000
## Accumulo properties
## -------------------
## Accumulo instance to connect to
fluo.accumulo.instance=myInstance
## Accumulo table to initialize
fluo.accumulo.table=\${fluo.connection.application.name}
## Accumulo user
fluo.accumulo.user=testUser
## Accumulo password
fluo.accumulo.password=testPass
## Accumulo zookeepers
fluo.accumulo.zookeepers=myhost
# Transaction properties
# ----------------------
# Amount of time (in milliseconds) clients wait before rolling back transaction
#fluo.tx.rollback.time=300000
## Worker properties
## -----------------
# Number of threads in each worker instance
#fluo.worker.num.threads=10
## Loader properties
## -----------------
## Number of threads each loader runs. Can set to zero for no threads, thread
## adding Loader will execute. Must also set fluo.loader.queue.size to zero
## when setting this to zero.
#fluo.loader.num.threads=10
## Queue size of loader
#fluo.loader.queue.size=10
## Metrics
## -------
## Configure reporters for metrics. The frequency for each type of reporter is in seconds.
#fluo.metrics.reporter.console.enable=false
#fluo.metrics.reporter.console.target=stdout
#fluo.metrics.reporter.console.rateUnit=seconds
#fluo.metrics.reporter.console.durationUnit=milliseconds
#fluo.metrics.reporter.console.frequency=60
#fluo.metrics.reporter.csv.enable=false
#fluo.metrics.reporter.csv.dir=/tmp/
#fluo.metrics.reporter.csv.rateUnit=seconds
#fluo.metrics.reporter.csv.durationUnit=milliseconds
#fluo.metrics.reporter.csv.frequency=60
#fluo.metrics.reporter.graphite.enable=false
#fluo.metrics.reporter.graphite.host=carbon.server.com
#fluo.metrics.reporter.graphite.port=8080
#fluo.metrics.reporter.graphite.rateUnit=seconds
#fluo.metrics.reporter.graphite.durationUnit=milliseconds
#fluo.metrics.reporter.graphite.frequency=60
#fluo.metrics.reporter.graphite.prefix=
#fluo.metrics.reporter.jmx.enable=false
#fluo.metrics.reporter.jmx.rateUnit=seconds
#fluo.metrics.reporter.jmx.durationUnit=milliseconds
#fluo.metrics.reporter.slf4j.enable=false
#fluo.metrics.reporter.slf4j.logger=metrics
#fluo.metrics.reporter.slf4j.rateUnit=seconds
#fluo.metrics.reporter.slf4j.durationUnit=milliseconds