Skip to content

Flume interceptor that create new headers from other headers by regular expressions.

License

Notifications You must be signed in to change notification settings

go1dshtein/flume-regexp-interceptor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

travis-ci.org status

flume-regexp-interceptor

Flume interceptor that create new headers from other headers by regular expressions.

Example

E.g. there are too tables in hadoop - first and second. Flume watches spool directory and uploads files to hdfs to destination first and second respectively. Interceptor helps you determine table name.

Config example:

agent.sources = src
agent.sources.src.type = spooldir
agent.sources.src.channels = channel
agent.sources.src.spoolDir = /var/spool/flume
agent.sources.src.fileHeader = true
agent.sources.src.basenameHeader = true
agent.sources.src.deletePolicy = immediate
agent.sources.src.interceptors = table_detector
agent.sources.src.interceptors.table_detector.type = org.apache.hadoop.flume.interceptor.HeaderRegexInterceptor$Builder
agent.sources.src.interceptors.table_detector.header = basename
agent.sources.src.interceptors.table_detector.regex = ^(?<table>[a-zA-Z\-]+)_.*$
agent.sources.src.interceptors.table_detector.group.table = tablename

Interceptor get value of header basename and try to parse it with regex. Then it adds new header tablename with value of named group table.

About

Flume interceptor that create new headers from other headers by regular expressions.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages