使用假脱机目录写入水槽如何重命名文件

时间:2016-05-30 17:29:46

标签: hadoop flume flume-ng

我正在使用flume假脱机目录写入hdfs。这是我的代码

 #initialize agent's source, channel and sink
agent.sources = test
agent.channels = memoryChannel
agent.sinks = flumeHDFS

# Setting the source to spool directory where the file exists
agent.sources.test.type = spooldir
agent.sources.test.spoolDir = /johir
agent.sources.test.fileHeader = false
agent.sources.test.fileSuffix = .COMPLETED

# Setting the channel to memory
agent.channels.memoryChannel.type = memory
# Max number of events stored in the memory channel
agent.channels.memoryChannel.capacity = 10000
# agent.channels.memoryChannel.batchSize = 15000
agent.channels.memoryChannel.transactioncapacity = 1000000

# Setting the sink to HDFS
agent.sinks.flumeHDFS.type = hdfs
agent.sinks.flumeHDFS.hdfs.path =/user/root/
agent.sinks.flumeHDFS.hdfs.fileType = DataStream

# Write format can be text or writable
agent.sinks.flumeHDFS.hdfs.writeFormat = Text

# use a single csv file at a time
agent.sinks.flumeHDFS.hdfs.maxOpenFiles = 1

# rollover file based on maximum size of 10 MB
agent.sinks.flumeHDFS.hdfs.rollCount=0
agent.sinks.flumeHDFS.hdfs.rollInterval=0
agent.sinks.flumeHDFS.hdfs.rollSize = 1000000
agent.sinks.flumeHDFS.hdfs.batchSize =1000

# never rollover based on the number of events
agent.sinks.flumeHDFS.hdfs.rollCount = 0

# rollover file based on max time of 1 min
#agent.sinks.flumeHDFS.hdfs.rollInterval = 0
# agent.sinks.flumeHDFS.hdfs.idleTimeout = 600

# Connect source and sink with channel
agent.sources.test.channels = memoryChannel
agent.sinks.flumeHDFS.channel = memoryChannel

但他的问题是写入文件的数据被重命名为一些随机的tmp名称。如何将hdfs中的文件重命名为源目录中的原始文件名。例如,我有文件day1.txt,day2.txt,day3.txt。这些是两天不同的数据。我希望将它们保存在hdfs中,如day1.txt,day2.txt,day3.txt。但这三个文件合并并存储在hdfs中作为FlumeData.1464629158164.tmp文件。有没有办法做到这一点?

1 个答案:

答案 0 :(得分:0)

如果要保留原始文件名,则应将文件名作为标题附加到每个事件。

  1. basenameHeader 属性设置为true。这将使用 basename 键创建标头,除非使用 basenameHeaderKey 属性设置为其他内容。
  2. 使用 hdfs.filePrefix 属性使用 basenameHeader 值设置文件名。
  3. 将以下属性添加到配置文件中。

    #source properties
    agent.sources.test.basenameHeader = true
    
    #sink properties
    agent.sinks.flumeHDFS.type = hdfs
    agent.sinks.flumeHDFS.hdfs.filePrefix = %{basename}
    
相关问题