# 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.
# The configuration file needs to define the sources,
# the channels and the sinks.
# Sources, channels and sinks are defined per agent,
# in this case called 'agent'
a1.sources = r1
a1.channels =c1 c2
a1.sinks = k1 k2
a1.sources.r1.selector.type=replicating
# For each one of the sources, the type is defined
a1.sources.r1.type = avro
a1.sources.r1.bind =0.0.0.0
a1.sources.r1.port = 8888
# The channel can be defined as follows.
a1.sources.r1.channels = c1 c2
# Each sink's type must be defined
a1.sinks.k1.channel = c1
a1.sinks.k1.type = org.apache.flume.sink.kafka.KafkaSink
a1.sinks.k1.kafka.topic = webaccess
a1.sinks.k1.kafka.bootstrap.servers = :9092
a1.sinks.k1.kafka.flumeBatchSize = 20
a1.sinks.k1.kafka.producer.acks = 1
a1.sinks.k1.kafka.producer.linger.ms = 1
a1.sinks.k1.kafka.producer.compression.type = snappy
a1.sinks.k2.channel = c2
# Each sink's type must be defined
a1.sinks.k2.type = hdfs
a1.sinks.k2.hdfs.path =hdfs://mycluster/data_log/access/%y-%m-%d
a1.sinks.k2.hdfs.filePrefix = events-
#a1.sinks.k2.hdfs.round = true
#a1.sinks.k2.hdfs.roundValue = 10
#a1.sinks.k2.hdfs.roundUnit = minute
a1.sinks.k2.hdfs.filePrefix=web_access
#a1.sinks.k1.hdfs.fileSuffix=log
a1.sinks.k2.hdfs.fileType=DataStream
a1.sinks.k2.hdfs.useLocalTimeStamp=true
a1.sinks.k2.hdfs.rollInterval=0
a1.sinks.k2.hdfs.idleTimeout=600
a1.sinks.k2.hdfs.rollSize=0
a1.sinks.k2.hdfs.rollCount=0
#Specify the channel the sink should use
#a1.sinks.k1.channel = c1
# Each channel's type is defined.
a1.channels.c1.type = memory
a1.channels.c1.capacity = 1000
a1.channels.c1.transactionCapacity=100
a1.channels.c2.type = file
a1.channels.c2.capacity = 1000
a1.channels.c2.transactionCapacity=100