热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

clouderasearch1.0.0环境搭建(2):利用flume-ng的MorphlineSolrSink实现近实时(NRT)搜索

要实现近实时搜索,就必须有一种机制来实时的处理数据然后生成到solr的索引中去,flume-ng刚好提供了这样一种机制,它可以实时收集数据,然后通过MorphlineSolrSink对数据进行ETL,

要实现近实时搜索,就必须有一种机制来实时的处理数据然后生成到solr的索引中去,flume-ng刚好提供了这样一种机制,它可以实时收集数据,然后通过MorphlineSolrSink对数据进行ETL,最后写入到solr的索引中,这样就能在solr搜索引擎中近实时的查询到新进来的数据了。

搭建步骤:

1 我们这里只做演示效果,所以新建了一个文件file01来保存了两条数据,后面将通过flume-ng avro-client -H localhost -p 44444 -F file01将这两条数据提交给flume agent。

这两条数据如下:

{"id": "1234567890", "user_friends_count": 111, "user_location": "Palo Alto", "user_description": "desc1", "user_statuses_count": 11111, "user_followers_count": 111, "user_name": "name1", "user_screen_name": "fake_user1", "created_at": "1985-09-04T18:01:01Z", "text": "sample tweet one", "retweet_count": 0, "retweeted": false, "in_reply_to_user_id": 0, "source": "href=\"http:\/\/sample.com\"", "in_reply_to_status_id": 0, "media_url_https": null, "expanded_url": null}
{"id": "2345678901", "user_friends_count": 222, "user_location": "San Francisco", "user_description": "desc2", "user_statuses_count": 222222, "user_followers_count": 222, "user_name": "name2", "user_screen_name": "fake_user2", "created_at": "1985-09-04T19:14:34Z", "text": "sample tweet two", "retweet_count": 0, "retweeted": false, "in_reply_to_user_id": 0, "source": "href=\"http:\/\/sample.com\"", "in_reply_to_status_id": 0, "media_url_https": null, "expanded_url": null}

是两条JSON数据,后面我们会用morphlines来对json数据进行ETL抽取指定的几个字段。

2 在CM中flume的配置中配置Flume-NG Solr 接收器,如下图:

morphlines配置文件如下:

[plain] view plain copy 在CODE上查看代码片派生到我的代码片
  1. # Specify server locations in a SOLR_LOCATOR variable; used later in   
  2. # variable substitutions:  
  3. SOLR_LOCATOR : {  
  4.   # Name of solr collection  
  5.   collection : collection1  
  6.     
  7.   # ZooKeeper ensemble  
  8.   zkHost : "master68:2181,slave69:2181,slave76:2181/solr"    
  9. }  
  10.   
  11. # Specify an array of one or more morphlines, each of which defines an ETL   
  12. # transformation chain. A morphline consists of one or more potentially   
  13. # nested commands. A morphline is a way to consume records such as Flume events,   
  14. # HDFS files or blocks, turn them into a stream of records, and pipe the stream   
  15. # of records through a set of easily configurable transformations on its way to   
  16. # Solr.  
  17. morphlines : [  
  18.   {  
  19.     # Name used to identify a morphline. For example, used if there are multiple   
  20.     # morphlines in a morphline config file.  
  21.     id : morphline1   
  22.       
  23.     # Import all morphline commands in these java packages and their subpackages.  
  24.     # Other commands that may be present on the classpath are not visible to this  
  25.     # morphline.  
  26.     importCommands : ["org.kitesdk.**", "org.apache.solr.**"]  
  27.       
  28.     commands : [                      
  29.       {  
  30.         readJson {}  
  31.       }  
  32.       {   
  33.         extractJsonPaths {  
  34.           flatten : false  
  35.           paths : {   
  36.             id : /id              
  37.             user_name : /user_screen_name  
  38.             created_at : /created_at  
  39.             text : /text        
  40.           }  
  41.         }  
  42.       }  
  43.         
  44.       # Consume the output record of the previous command and pipe another  
  45.       # record downstream.  
  46.       #  
  47.       # convert timestamp field to native Solr timestamp format  
  48.       # such as 2012-09-06T07:14:34Z to 2012-09-06T07:14:34.000Z  
  49.       {  
  50.         convertTimestamp {  
  51.           field : created_at  
  52.           inputFormats : ["yyyy-MM-dd'T'HH:mm:ss'Z'", "yyyy-MM-dd"]  
  53.           inputTimezone : America/Los_Angeles  
  54.           outputFormat : "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"                                   
  55.           outputTimezone : UTC  
  56.         }  
  57.       }  
  58.         
  59.       # Consume the output record of the previous command and pipe another  
  60.       # record downstream.  
  61.       #  
  62.       # This command deletes record fields that are unknown to Solr   
  63.       # schema.xml.  
  64.       #  
  65.       # Recall that Solr throws an exception on any attempt to load a document   
  66.       # that contains a field that is not specified in schema.xml.  
  67.       {  
  68.         sanitizeUnknownSolrFields {  
  69.           # Location from which to fetch Solr schema  
  70.           solrLocator : ${SOLR_LOCATOR}  
  71.         }  
  72.       }    
  73.               
  74.       # log the record at DEBUG level to SLF4J  
  75.       { logDebug { format : "output record: {}", args : ["@{}"] } }      
  76.         
  77.       # load the record into a Solr server or MapReduce Reducer  
  78.       {   
  79.         loadSolr {  
  80.           solrLocator : ${SOLR_LOCATOR}  
  81.         }  
  82.       }  
  83.     ]  
  84.   }  
  85. ]  

简单解释一下这个morphlines配置文件,首先执行了一个readJson命令,将读入的event的内容转换成了一个json对象,然后使用extractJsonPaths命令抽取json对象的具体字段值并重新赋值给另一个字段(例如user_name : /user_screen_name 是读取user_screen_name的值并赋值给user_name ),然后使用convertTimestamp对create_at字段进行格式化,最后执行sanitizeUnknownSolrFields命令舍弃solr的schema中没有配置的field字段,即通过ETL之后record最终只保留solr中已配置的字段。然后通过loadSolr指令将最终的record提交到solr。

3 接下来就是flume agent的配置:

[plain] view plain copy 在CODE上查看代码片派生到我的代码片
  1. tier1.sources=source1  
  2. tier1.channels=channel1  
  3. tier1.sinks=sink1  
  4.   
  5. tier1.sources.source1.type = avro  
  6. tier1.sources.source1.bind = 0.0.0.0  
  7. tier1.sources.source1.port = 44444  
  8. tier1.sources.source1.channels=channel1  
  9.   
  10. tier1.channels.channel1.type=memory  
  11. tier1.channels.channel1.capacity=10000  
  12.   
  13. tier1.sinks.sink1.type = org.apache.flume.sink.solr.morphline.MorphlineSolrSink  
  14. tier1.sinks.sink1.channel = channel1  
  15. tier1.sinks.sink1.morphlineFile = morphlines.conf  
  16. tier1.sinks.sink1.morphlineId = morphline1  

这里一个注意点就是我们在CM中配置的Flume-NG Solr 接收器,所以morphlineFile直接写morphlines.conf就行了,否则需要写绝对路径,不然没法找到morphlines的配置文件。

4 上面三部准备好之后,启动agent,然后在shell控制台执行 flume-ng avro-client -H localhost -p 44444 -F file01命令,将我们第一步创建的数据文件提交给agent。

5执行完后,如果没报错的话,可以去solr中通过http://slave77:8983/solr/collection1/select?q=*:*查询一下这两条数据是不是已经创建到搜索引擎的索引库中


如果看到如下图示的结果,恭喜你,你已经成功完成了本篇文章的NRT架构的搭建。


推荐阅读
  • 开机自启动的几种方式
    0x01快速自启动目录快速启动目录自启动方式源于Windows中的一个目录,这个目录一般叫启动或者Startup。位于该目录下的PE文件会在开机后进行自启动 ... [详细]
  • 本文介绍了几种常用的图像相似度对比方法,包括直方图方法、图像模板匹配、PSNR峰值信噪比、SSIM结构相似性和感知哈希算法。每种方法都有其优缺点,适用于不同的应用场景。 ... [详细]
  • 网站访问全流程解析
    本文详细介绍了从用户在浏览器中输入一个域名(如www.yy.com)到页面完全展示的整个过程,包括DNS解析、TCP连接、请求响应等多个步骤。 ... [详细]
  • 本文讨论了在进行 MySQL 数据迁移过程中遇到的所有 .frm 文件报错的问题,并提供了详细的解决方案和建议。 ... [详细]
  • 首先我们在taotao-search-interface工程中新建一个SearchService接口,并在接口中添加一个方法,如下图所示。接着,我们到taotao-search-s ... [详细]
  • solr倒排索引(转载)
    原文地址:http:blog.csdn.netchichengitarticledetails9235157http:blog.csdn.netnjpjsoftdevarticle ... [详细]
  • Flume 开源分布式日志收集系统
    为什么80%的码农都做不了架构师?Flume--开源分布式日志收集系统Flume是Cloudera提供的一个高可用的、高可靠的开源分布式海量日志收集系统 ... [详细]
  • 本文介绍如何在 Android 中自定义加载对话框 CustomProgressDialog,包括自定义 View 类和 XML 布局文件的详细步骤。 ... [详细]
  • 最详尽的4K技术科普
    什么是4K?4K是一个分辨率的范畴,即40962160的像素分辨率,一般用于专业设备居多,目前家庭用的设备,如 ... [详细]
  • 微信公众号推送模板40036问题
    返回码错误码描述说明40001invalidcredential不合法的调用凭证40002invalidgrant_type不合法的grant_type40003invalidop ... [详细]
  • [转]doc,ppt,xls文件格式转PDF格式http:blog.csdn.netlee353086articledetails7920355确实好用。需要注意的是#import ... [详细]
  • 本文介绍如何使用 Python 的 DOM 和 SAX 方法解析 XML 文件,并通过示例展示了如何动态创建数据库表和处理大量数据的实时插入。 ... [详细]
  • window下的python安装插件,Go语言社区,Golang程序员人脉社 ... [详细]
  • 部署solr建立nutch索引
    2019独角兽企业重金招聘Python工程师标准接着上篇nutch1.4的部署应用,我们来部署一下solr,solr是对lucene进行了封装的企 ... [详细]
  • Lucene 全文检索技术入门
    一、搜索引擎的历史萌芽:Archie、Gopher起步:Robot(网络机器人)的出现与spider(网络爬虫)发展:excite、galax ... [详细]
author-avatar
手机用户2502873453_987
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有