Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
########################################################################
################## SINK CONFIGURATION ##################################
########################################################################

# The name of the flume agent here is datastream

# FQCN (Fully-qualified class name) component type for the type
octopusdatastream.sinks.solr1.type = org.apache.flume.sink.solr.SolrSink

# Channel for this sink
octopusdatastream.sinks.solr1.channel = c1

octopusdatastream.sinks.solr1.serverUrl = http://localhost:8983/solr/flume

# Number of events to be written per transaction
octopusdatastream.sinks.solr1.batchSize = 500

# The number of background worker threads used by ConcurrentUpdateSolrServer to empty the queue
octopusdatastream.sinks.solr1.threadCount = 2

# Serializes the headers and body of an event into SolrInputDocuments that are sent to Apache Solr
octopusdatastream.sinks.solr1.serializer = org.apache.flume.sink.solr.SolrBasicEventSerializer

# A comma-delimited list of headers allowed.
# These must also be valid field names in the schema for this index
octopusdatastream.sinks.solr1.serializer.validHeaderFields = loglevel,timestamp,hostname

# The name of the field in the schema used for the event body. 'body' by default.
octopusdatastream.sinks.solr1.serializer.bodyFieldname = body


...