Flume
2035 단어 Flume
http://www.iteblog.com/archives/908
http://www.iteblog.com/archives/1034
In flume-ng's HBase sink,
HbaseEventSerializer
implementation is responsible for generating row keys. The default implementation org.apache.flume.sink.hbase.SimpleHbaseEventSerializer
already supports generating timestamp row keys in the format prefix + current timestamp
, to use it just modify your flume configuration accordinly. hbase-agent.sinks.sink1.type = org.apache.flume.sink.hbase.HBaseSink
hbase-agent.sinks.sink1.channel = ch1
hbase-agent.sinks.sink1.table = demo
hbase-agent.sinks.sink1.columnFamily = cf
hbase-agent.sinks.sink1.serializer = org.apache.flume.sink.hbase.SimpleHbaseEventSerializer
hbase-agent.sinks.sink1.serializer.payloadColumn = col1
hbase-agent.sinks.sink1.serializer.keyType = timestamp
If the provided timestamp based key generation method is not what you are after then you'll need to provide a custom
HbaseEventSerializer
implementation to flume, which will require you to: org.apache.flume.sink.hbase.SimpleRowKeyGenerator
) HbaseEventSerializer
interface (default implementation is org.apache.flume.sink.hbase.SimpleHbaseEventSerializer
) which will use the custom row key generator you created in first step HbaseEventSerializer
implementation. http://www.kankanews.com/ICkengine/archives/67816.shtml
http://search-hadoop.com/?q=prefix+salt+key+hotspot&fc_project=HBase
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Flume Processorsactive 상태 프로세스가 죽어야 다른 작업이 바뀔 수 있습니다.그 많은sink가 도대체 누가 먼저 일을 하는지, 권중에 따라 누구의 권중이 높은지, 누가 먼저 일을 하는지, 일반적인 고장 전이를 하면 2개sink...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.