Flume-ng-extends的应用

Flume-ng-extends的应用

目的:  这个可以tail dir 文件,监听文件目录写入事件,只要往这个目录写入文件就能触发

首先需要flume-ng-extends:从获取源代码   https://github.com/jinoos/flume-ng-extends,maven编译打包

将flume-ng-extends-0.0.1-SNAPSHOT.jar,另外还要下载commons-vfs2-2.0.jar这个jar包(这个不然可能会报错)一起放到flume的lib下

2,agent配置

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. hadoop@stormspark:~/bigdata/flume-1.4.0-bin/dirTailTest$ cat ../conf/flume-ng-extend.properties   
  2. a.sources = sources  
  3. a.sinks = sinks  
  4. a.channels = c  
  5.   
  6. #configure sources  
  7. a.sources.sources.type = com.jinoos.flume.DirectoryTailSource  
  8. a.sources.sources.dirs = s0 s1  
  9. a.sources.sources.dirs.s0.path = /home/hadoop/bigdata/flume-1.4.0-bin/dirTailTest/s0in  
  10. a.sources.sources.dirs.s1.path = /home/hadoop/bigdata/flume-1.4.0-bin/dirTailTest/s1in  
  11. #congfigure sinks  
  12. a.sinks.sinks.type = logger  
  13. #configure channals  
  14. a.channels.c.type = memory  
  15. #bind channel  
  16. a.sources.sources.channels = c  
启动这个agent

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. bin/flume-ng agent --conf conf  --conf-file conf/flume-ng-extend.properties --name a -Dflume.root.logger=INFO,console  
然后往s0in,s1in目录丢进去一些文件

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. cp ../conf/*.properties  ./s1in/  

可以看到已经触发了

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. 2014-01-17 20:29:35,774 (lifecycleSupervisor-1-4) [INFO - org.apache.flume.instrumentation.MonitoredCounterGroup.register(MonitoredCounterGroup.java:110)] Monitoried counter group for type: SOURCE, name: sources, registered successfully.  
  2. 2014-01-17 20:29:35,774 (lifecycleSupervisor-1-4) [INFO - org.apache.flume.instrumentation.MonitoredCounterGroup.start(MonitoredCounterGroup.java:94)] Component type: SOURCE, name: sources started  
  3. 2014-01-17 20:29:53,314 (pool-3-thread-2) [WARN - com.jinoos.flume.DirectoryTailSource$WorkerRunnable.fileChanged(DirectoryTailSource.java:417)] /home/hadoop/bigdata/flume-1.4.0-bin/dirTailTest/s1in/flume-ng-extend.propertiesis not in monitoring list.  
  4. 2014-01-17 20:29:53,812 (pool-3-thread-5) [WARN - com.jinoos.flume.DirectoryTailSource$WorkerRunnable.fileCreated(DirectoryTailSource.java:341)] Occurred create event from un-indexed directory. ///home/hadoop/bigdata/flume-1.4.0-bin/dirTailTest/s1in  
  5. 2014-01-17 20:29:53,812 (pool-3-thread-4) [WARN - com.jinoos.flume.DirectoryTailSource$WorkerRunnable.fileCreated(DirectoryTailSource.java:341)] Occurred create event from un-indexed directory. ///home/hadoop/bigdata/flume-1.4.0-bin/dirTailTest/s1in  
  6. 2014-01-17 20:29:53,812 (pool-3-thread-6) [WARN - com.jinoos.flume.DirectoryTailSource$WorkerRunnable.fileCreated(DirectoryTailSource.java:341)] Occurred create event from un-indexed directory. ///home/hadoop/bigdata/flume-1.4.0-bin/dirTailTest/s1in  
  7. 2014-01-17 20:29:53,812 (pool-3-thread-3) [WARN - com.jinoos.flume.DirectoryTailSource$WorkerRunnable.fileCreated(DirectoryTailSource.java:341)] Occurred create event from un-indexed directory. ///home/hadoop/bigdata/flume-1.4.0-bin/dirTailTest/s1in  
  8. 2014-01-17 20:29:53,812 (pool-3-thread-7) [WARN - com.jinoos.flume.DirectoryTailSource$WorkerRunnable.fileCreated(DirectoryTailSource.java:341)] Occurred create event from un-indexed directory. ///home/hadoop/bigdata/flume-1.4.0-bin/dirTailTest/s1in  


内容概要:本文详细阐述了DeepSeek大模型在服装行业的应用方案,旨在通过人工智能技术提升服装企业的运营效率和市场竞争力。文章首先介绍了服装行业的现状与挑战,指出传统模式难以应对复杂的市场变化。DeepSeek大模型凭借其强大的数据分析和模式识别能力,能够精准预测市场趋势、优化供应链管理、提升产品设计效率,并实现个性化推荐。具体应用场景包括设计灵感生成、自动化设计、虚拟试衣、需求预测、生产流程优化、精准营销、智能客服、用户体验提升等。此外,文章还探讨了数据安全与隐私保护的重要性,以及技术实施与集成的具体步骤。最后,文章展望了未来市场扩展和技术升级的方向,强调了持续优化和合作的重要性。 适用人群:服装行业的企业管理层、技术负责人、市场和销售团队、供应链管理人员。 使用场景及目标:①通过市场趋势预测和用户偏好分析,提升设计效率和产品创新;②优化供应链管理,减少库存积压和生产浪费;③实现精准营销,提高客户满意度和转化率;④通过智能客服和虚拟试衣技术,提升用户体验;⑤确保数据安全和隐私保护,建立用户信任。 阅读建议:此资源不仅涵盖技术实现的细节,还涉及业务流程的优化和管理策略的调整,建议读者结合实际业务需求,重点关注与自身工作相关的部分,并逐步推进技术的应用和创新。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值