当我使用Apache Flume时,会收到一毫秒的时间戳,然后是第二个时间戳。这是我的水槽配置文件:
# Name the components on this agent a1.sources = r1 a1.sinks = k1 a1.channels = c1 # Describe/configure the source a1.sources.r1.type = org.apache.flume.source.http.HTTPSource a1.sources.r1.port = 44444 # Describe the sink a1.sinks.k1.type = hdfs a1.sinks.k1.hdfs.path = flume/ads/%y-%m-%d/%H a1.sinks.k1.hdfs.fileType = DataStream # Use a channel which buffers events in memory a1.channels.c1.type = memory a1.channels.c1.capacity = 10000 # Bind the source and sink to the channel a1.sources.r1.channels = c1 a1.sinks.k1.channel = c1
Flume创建文件夹flume / ads / 70-01-17 / 02。该文件夹包含文件“ FlumeData.timestamp”,该时间戳有十二位数字。
我得到一个错误的文件夹名称。
我能做什么?