简单直接spring boot 集成 flume


pom依赖
<dependency>
<groupId>org.apache.flume</groupId>
<artifactId>flume-ng-sdk</artifactId>
<version>1.8.0</version>
</dependency>

demo
public static void main(String [] args) throws EventDeliveryException {
String ip ="XX.XX.XX.X";
int port = 44446;

RpcClient client = RpcClientFactory.getDefaultInstance(ip, port);
Event event = EventBuilder.withBody("hello word", Charset.forName("UTF-8"));
client.append(event);
client.close();
}
具体封装自己整就行


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM