ElasticSearch插件demo

环境:

操作系统:win7

elasticsearch版本:5.4.4

java:1.8


参考文章:

1、Elasticsearch权威指南(中文版)

2、Elasticsearch笔记五之java操作es

3、java操作ElasticSearch(es)进行增删查改操作

4、ElasticSearch入门-增删改查(CRUD)

5、elasticsearch——Java API的使用

6、elasticsearch源码分析之plugin的开发

7、Elasticsearch 5.X下JAVA API使用指南

——————————————————————————————————————

8、elasticsearch5.2.2 插件开发(一)

9、elasticsearch5.2.2 插件开发(二) 第一个有实际功能的插件 - CSDN博客

10、elasticsearch5.2.2 插件开发(三)ScriptPlugin 的实现 - CSDN博客

——————————————————————————————————————

11、Maven通俗讲解

12、如何添加本地JAR文件到Maven项目中 - CSDN博客

13、Maven Repository: weka

14、maven系列--maven添加第三方、本地依赖 - CSDN博客

15、Maven配置项目依赖使用本地仓库的方法汇总 - EasonJim - 博客园


有关打包部分的视频在我的百度网盘 

链接:https://pan.baidu.com/s/1DuIWN2uDtcA8guP_Ny91Vw 密码:tj65


第一部分:代码

一、创建maven项目

首先创建一个maven项目,填写Group Id为com.plugin和Artifact Id为esPlugin。其中Artifact Id是项目名,Group Id是项目中包的名字。

ElasticSearch插件demo_第1张图片


二、修改pom.xml配置文件

修改pom.xml文件,然后右键项目名->maven->update maven。会发现在Maven Dependencies文件夹下多了很多包(见下图),这些都是pom.xml文件添加进去的依赖,省去了手动导包的麻烦。(包全是在maven的中央仓库下载到本地的,pom.xml代码见页面底部。)

ElasticSearch插件demo_第2张图片


三、核心代码实现

代码目录如下(用的是之前的项目的截图,忽略顶部的包名),在文后的链接中下载项目,会有这么多包,真正用到的和需要修改的类是TasteEventRestAction.java,这里面包括注册URL,以及执行对应的操作。

ElasticSearch插件demo_第3张图片

[java]  view plain  copy
  1. package com.taste.elasticsearch_taste.rest;  
  2.   
  3. import static com.taste.elasticsearch_taste.action.LoggerUtils.emitErrorResponse;  
  4. import static org.elasticsearch.rest.RestRequest.Method.POST;  
  5.   
  6. import java.io.File;  
  7. import java.io.IOException;  
  8.   
  9. import org.elasticsearch.action.ActionListener;  
  10. import org.elasticsearch.action.search.SearchRequest;  
  11. import org.elasticsearch.action.search.SearchRequestBuilder;  
  12. import org.elasticsearch.action.search.SearchResponse;  
  13. import org.elasticsearch.client.node.NodeClient;  
  14. import org.elasticsearch.common.inject.Inject;  
  15. import org.elasticsearch.common.settings.Settings;  
  16. import org.elasticsearch.common.xcontent.ToXContent;  
  17. import org.elasticsearch.common.xcontent.XContentBuilder;  
  18. import org.elasticsearch.index.query.QueryBuilders;  
  19. import org.elasticsearch.rest.BaseRestHandler;  
  20. import org.elasticsearch.rest.BytesRestResponse;  
  21. import org.elasticsearch.rest.RestController;  
  22. import org.elasticsearch.rest.RestRequest;  
  23. import org.elasticsearch.rest.RestStatus;  
  24. import org.elasticsearch.rest.action.search.RestSearchAction;  
  25. import org.elasticsearch.search.SearchHits;  
  26.   
  27. import com.pligin.esPlugin.action.TasteEventAction;  
  28. import com.pligin.esPlugin.common.TasteEventRequestBuilder;  
  29. import com.pligin.esPlugin.common.TasteEventResponse;  
  30.   
  31. //我项目中的类  
  32. //import ding.util.ESUtil.ActionParameter;  
  33. //import ding.util.WEKAUtil.MeachineLearningBuilder;  
  34.   
  35.   
  36. public class TasteEventRestAction extends BaseRestHandler{  
  37.     public ActionParameter parameter;  
  38.       
  39.     @Inject  
  40.     public TasteEventRestAction(final Settings settings,final RestController restController) {  
  41.         super(settings);  
  42.         restController.registerHandler(RestRequest.Method.GET, "/_taste/{action}"this); // 注册URL1,该URL中最后的字符串赋给变量action  
  43.         restController.registerHandler(RestRequest.Method.GET, "/_taste"this); // 注册URL2  
  44.     }  
  45.       
  46.     @Override  
  47.     protected RestChannelConsumer prepareRequest(RestRequest request, NodeClient client) throws IOException {  
  48.         if (request.method() == POST && !request.hasContent()) {  
  49.             return channel -> emitErrorResponse(channel, logger, new IllegalArgumentException("Request body was expected for a POST request."));  
  50.         }  
  51.         String action = request.param("action");  
  52.           
  53.         // 遇到URL1,执行createDoSomethingResponse  
  54.         if (action != null) {   
  55.             logger.info("do something action -- ESData & MeachineLearning");  
  56.             return createDoSomethingResponse(request, client);  
  57.           
  58.         // 遇到URL2,执行createMessageResponse  
  59.         } else {  
  60.             logger.info("do Message action -- do anything without parameter");  
  61.             return createMessageResponse(request);    
  62.         }  
  63.     }  
  64.       
  65.     // 一、对应URL为 /_taste/{action}  
  66.     private RestChannelConsumer createDoSomethingResponse(RestRequest request, NodeClient client){  
  67.         /*这里request存放的是URL,使用request.param("action")可以获得URL中的action变量值(可作为参数使用) 
  68.         我这里对action做了一个解析,我的参数规格是 
  69.         http://127.0.0.1:9200/_taste/index=logstash-20180323&from=0&size=100&clfName=J48&classifyAttributeName=tes_tims 
  70.         可以通过 parameter.Index, parameter.From, parameter.Size获得action中的参数 
  71.         然后通过前几个包里面的TasteEventRequestBuilder等类,在es里面进行查询,得到输出myresponse 
  72.         最后使用异步编程,即return channel,可以对es传出来的数据进行处理,处理结果作为String,加入builder里面,由channel返回 
  73.         */  
  74.         String action = request.param("action");  
  75.         this.parameter= new ActionParameter(action);  
  76.           
  77.         // 1、通过parameter进行数据查询,构造自定义的request请求  
  78.         final TasteEventRequestBuilder actionBuilder=new TasteEventRequestBuilder(client);  
  79.         SearchRequestBuilder requestBuilder = client.prepareSearch(parameter.Index).setQuery(QueryBuilders.matchAllQuery()).setFrom(parameter.From).setSize(parameter.Size).setExplain(true);  
  80.         SearchRequest searchRequest=new SearchRequest();  
  81.         try {  
  82.             RestSearchAction.parseSearchRequest(searchRequest, request, null);  
  83.         } catch (IOException e1) {  
  84.             logger.debug("Failed to emit response.", e1);  
  85.             e1.printStackTrace();  
  86.         }  
  87.         actionBuilder.setSearchRequest(requestBuilder);  
  88.         return channel -> client.execute(TasteEventAction.INSTANSE, actionBuilder.request(),new ActionListener() {  
  89.             @Override  
  90.             public void onResponse(TasteEventResponse response) {  
  91.                 try{  
  92.                     // 2、获得查询数据  
  93.                     SearchResponse myresponse=response.getSearchResponse();  
  94.                     SearchHits ESHits = myresponse.getHits();  
  95.                       
  96.                     // 3、调用机器学习功能  
  97.                     String res = new MeachineLearningBuilder().getOutput(ESHits, parameter);  
  98.                       
  99.                     //将response转换成json类型,不过这个未转化成功  
  100.                     XContentBuilder builder = channel.newBuilder();  
  101.                     builder.startObject();  
  102.                     builder.field("res", res);  
  103.                     //response.toXContent(builder, request); // 此处可以写个覆盖函数  
  104.                     builder.endObject();  
  105.                     channel.sendResponse( new BytesRestResponse(RestStatus.OK, builder));  
  106.                 }catch(Exception e){  
  107.                     logger.debug("Failed to emit response.", e);  
  108.                     onFailure(e);  
  109.                 }  
  110.             }  
  111.               
  112.             @Override  
  113.             public void onFailure(Exception e) {  
  114.                 emitErrorResponse(channel, logger, e);  
  115.             }  
  116.         });  
  117.     }  
  118.       
  119.       
  120.       
  121.       
  122.     // 2、对应URL为 /_taste  
  123.     private RestChannelConsumer createMessageResponse(RestRequest request) {    
  124.         // 也可以像这里面一样,不使用es里面的通信,直接对builder进行处理,然后在builder里面写入自定义的一些东西,最后可以输出在网页上  
  125.           
  126.         return channel -> {    
  127.             Message message = new Message();  
  128.             XContentBuilder builder = channel.newBuilder();    
  129.             builder.startObject();  
  130.             message.toXContent(builder, request);  
  131.             builder.endObject();    
  132.             channel.sendResponse(new BytesRestResponse(RestStatus.OK, builder));    
  133.         };    
  134.     }  
  135.       
  136.     class Message implements ToXContent {    
  137.         @Override    
  138.         public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {    
  139.             return builder.field("message""This is my first plugin      Run without error");    
  140.         }    
  141.     }  


四、插件打包与安装

在./src/main下创建 resources 文件夹,在文件夹中创建 plugin-descriptor.properties 文件,

[java]  view plain  copy
  1. description=elasticsearch-esPlugin-5.4.0.1 for Elasticsearch #随便写  
  2. version=5.4.1 #es的版本  
  3. name=esPlugin #写项目名  
  4. site=${elasticsearch.plugin.site}  
  5. jvm=true  
  6. classname=com.plugin.esPlugin.plugin.TastePlugin #根据自己的TastePlugin的目录修改  
  7. java.version=1.8  
  8. elasticsearch.version=5.4.1  
  9. isolated=${elasticsearch.plugin.isolated}  
打包,在pom.xml所在目录,进入cmd,输入目录 mvn clean install,会 在打包后在target目录下将看到新生成的jar包。 然后新建一个文件夹,文件夹名字为elasticsearch,将这个jar包放入这个文件夹,并将之前写的plugin-descriptor.properties文件复制一份放入这个文件夹(注意文件夹的名字一定为elasticsearch,不能为其他名字!!)

    最后将这个文件夹压缩为zip,压缩后文件的名字可以随便起,这里起为elasticseach_taste_5.4.1.zip,然后在那个最开始下载的软件版的elasticsearch5.4.1的bin目录下执行elasticsearch-plugin install file:F:/java_programming/elasticsearch_taste1/target/elasticseach_taste_5.4.1.zip操作安装插件,安装好可以在plugins文件夹下看到自定义的插件,将这个插件复制一份到源码的core中的plugins文件夹下也可以。


五、demo的实验效果

ElasticSearch插件demo_第4张图片



第二部分、超简洁的命令介绍

—————————————————————————————————

1、使用该命令对插件(maven项目)进行打包

mvn clean install 

—————————————————————————————————

2、删除之前安装的插件(不删除的话会重复占用URL报错)

elasticsearch-plugin remove esmlplugin2 

elasticsearch-plugin remove taste

3、安装新的插件(已经压缩为F盘下的taste-5.4.0.1.zip)
elasticsearch-plugin install file:F:/esmlplugin2-5.4.0.1.zip
elasticsearch-plugin install file:F:/taste-5.4.0.1.zip


这个命令效果如下图所示,完成之后,会在 elasticsearch5.4.4/plugin 目录下生成名为taste的文件夹(文件夹名字根据.property中的name确定),可以直接将此文件夹复制到源码中 /core/plugin 目录下,在源码中运行。

ElasticSearch插件demo_第5张图片

—————————————————————————————————

4、启动
elasticsearch.bat

第三部分:测试类介绍

测试类在com.taste.elasticsearch_taste包下,核心代码是TasteEventRestTest类。该类功能是发出http的get请求,获取数据。代码如下:

[java]  view plain  copy
  1. package com.taste.elasticsearch_taste;  
  2.   
  3. import java.net.InetSocketAddress;  
  4.   
  5. import org.apache.http.HttpResponse;  
  6.   
  7. import org.apache.http.client.methods.HttpGet;  
  8.   
  9. import org.apache.http.impl.client.CloseableHttpClient;  
  10. import org.apache.http.impl.client.HttpClientBuilder;  
  11. import org.apache.http.util.EntityUtils;  
  12. import org.elasticsearch.common.network.NetworkAddress;  
  13.   
  14. //import org.elasticsearch.common.xcontent.XContentType;  
  15.   
  16. public class TasteEventRestTest extends TastePluginTest {  
  17.     public void test_recommended_items_from_user() throws Exception {  
  18. //      final String index = "blog";  
  19. //      XContentType type = randomFrom(XContentType.values());  
  20.         try (CloseableHttpClient httpClient = HttpClientBuilder.create().build()) {  
  21.             InetSocketAddress[] endpoint = cluster().httpAddresses();  
  22.             this.restBaseUrl = "http://" + NetworkAddress.format(endpoint[0]);  
  23.               
  24.             String s1 = "/_taste/parameter?index=blog&from=0&size=10&clfName=RandomForest&classifyAttributeName=classify";  
  25. //          String s2 = "/_taste";  
  26.             HttpGet get=new HttpGet(restBaseUrl + s1);  
  27.             System.out.println("post请求已发送11111111111");  
  28.             HttpResponse response = httpClient.execute(get);  
  29.             System.out.println("post请求已发送");  
  30.               
  31.             System.out.println("得到返回值:");  
  32.             if(response.getStatusLine().getStatusCode()==200){//如果状态码为200,就是正常返回  
  33.                 String result=EntityUtils.toString(response.getEntity());  
  34.                 //得到返回的字符串  
  35.                 System.out.println(result);  
  36.             }  
  37.               
  38.         }  
  39.    }  
  40. }  

在测试类中开启的es里是没有任何数据的,需要在HttpGet get=new HttpGet(restBaseUrl + s1);这里加上断点,debug到这句话,然后使用git想es里面输入数据,下面给出一个数据样例。然后继续debug,会执行项目第一部分中的核心代码。

[java]  view plain  copy
  1. curl -XPUT http://127.0.0.1:9200/blog  
  2. curl -XPUT http://127.0.0.1:9200/blog/es/1 -d '{"a":"1","b":"3","c":"4","d":"6","e":"8","path":"xxx","classify":"a"}'  
  3. curl -XPUT http://127.0.0.1:9200/blog/es/2 -d '{"a":"4","b":"1","c":"7","d":"7","e":"7","path":"yyy","classify":"a"}'  
  4. curl -XPUT http://127.0.0.1:9200/blog/es/3 -d '{"a":"0","b":"0","c":"1","d":"3","e":"8","path":"zzz","classify":"b"}'  
  5. curl -XPUT http://127.0.0.1:9200/blog/es/4 -d '{"a":"4","b":"3","c":"6","d":"1","e":"4","path":"eee","classify":"a"}'  
  6. curl -XPUT http://127.0.0.1:9200/blog/es/5 -d '{"a":"1","b":"7","c":"5","d":"3","e":"1","path":"fff","classify":"b"}'  
  7. curl -XPUT http://127.0.0.1:9200/blog/es/6 -d '{"a":"4","b":"0","c":"4","d":"9","e":"6","path":"ggg","classify":"a"}'  
  8. curl -XPUT http://127.0.0.1:9200/blog/es/7 -d '{"a":"1","b":"3","c":"0","d":"1","e":"3","path":"hhh","classify":"b"}'  
  9. curl -XPUT http://127.0.0.1:9200/blog/es/8 -d '{"a":"4","b":"2","c":"1","d":"0","e":"3","path":"iii","classify":"b"}'  
  10. curl -XPUT http://127.0.0.1:9200/blog/es/9 -d '{"a":"1","b":"1","c":"3","d":"0","e":"9","path":"jjj","classify":"b"}'  
  11. curl -XPUT http://127.0.0.1:9200/blog/es/10 -d '{"a":"1","b":"0","c":"9","d":"9","e":"5","path":"kkk","classify":"a"}'  


这是正确运行的结果:

ElasticSearch插件demo_第6张图片





项目链接:

链接:https://pan.baidu.com/s/1Wi3ywvjCFVOOxUNdP_ND7w 密码:uqn7


下面给出pom.xml文件

[java]  view plain  copy
  1. "http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  2.   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  
  3.   4.0.0  
  4.   
  5.   com.taste  
  6.   elasticsearch-taste  
  7.   0.0.1-SNAPSHOT  
  8.   jar  
  9.     
  10.   elasticsearch-taste  
  11.   http://maven.apache.org  
  12.   
  13.     
  14.     UTF-8  
  15.     1.8  
  16.     1.8  
  17.     
  18.   
  19.     
  20.     
  21.   
  22.     nz.ac.waikato.cms.moa  
  23.     moa  
  24.     2017.06  
  25.   
  26.   
  27.           
  28.      
  29.       org.carrot2  
  30.       carrot2-mini  
  31.       3.15.1  
  32.       compile  
  33.         
  34.           
  35.           *  
  36.           *  
  37.           
  38.         
  39.       
  40.       
  41.       org.simpleframework  
  42.       simple-xml  
  43.       2.7.1  
  44.       compile  
  45.         
  46.           
  47.           *  
  48.           *  
  49.           
  50.         
  51.       
  52.       
  53.       com.carrotsearch  
  54.       hppc  
  55.       0.7.1  
  56.       compile  
  57.         
  58.           
  59.           *  
  60.           *  
  61.           
  62.         
  63.       
  64.       
  65.       org.carrot2.attributes  
  66.       attributes-binder  
  67.       1.3.1  
  68.       compile  
  69.         
  70.           
  71.           *  
  72.           *  
  73.           
  74.         
  75.       
  76.       
  77.       org.carrot2.shaded  
  78.       carrot2-guava  
  79.       18.0  
  80.       compile  
  81.         
  82.           
  83.           *  
  84.           *  
  85.           
  86.         
  87.       
  88.       
  89.       commons-lang  
  90.       commons-lang  
  91.       2.6  
  92.       compile  
  93.         
  94.           
  95.           *  
  96.           *  
  97.           
  98.         
  99.       
  100.       
  101.       com.fasterxml.jackson.core  
  102.       jackson-core  
  103.       2.8.6  
  104.       compile  
  105.         
  106.           
  107.           *  
  108.           *  
  109.           
  110.         
  111.       
  112.       
  113.       com.fasterxml.jackson.core  
  114.       jackson-annotations  
  115.       2.8.6  
  116.       compile  
  117.         
  118.           
  119.           *  
  120.           *  
  121.           
  122.         
  123.       
  124.       
  125.       com.fasterxml.jackson.core  
  126.       jackson-databind  
  127.       2.8.6  
  128.       compile  
  129.         
  130.           
  131.           *  
  132.           *  
  133.           
  134.         
  135.       
  136.       
  137.       org.slf4j  
  138.       slf4j-api  
  139.       1.7.13  
  140.       compile  
  141.         
  142.           
  143.           *  
  144.           *  
  145.           
  146.         
  147.       
  148.       
  149.       org.slf4j  
  150.       slf4j-log4j12  
  151.       1.7.13  
  152.       compile  
  153.         
  154.           
  155.           *  
  156.           *  
  157.           
  158.         
  159.       
  160.       
  161.       org.carrot2  
  162.       morfologik-stemming  
  163.       2.1.1  
  164.       compile  
  165.         
  166.           
  167.           *  
  168.           *  
  169.           
  170.         
  171.       
  172.       
  173.       org.carrot2  
  174.       morfologik-fsa  
  175.       2.1.1  
  176.       compile  
  177.         
  178.           
  179.           *  
  180.           *  
  181.           
  182.         
  183.       
  184.       
  185.       org.elasticsearch  
  186.       elasticsearch  
  187.       5.4.1  
  188.       provided  
  189.       
  190.       
  191.       org.locationtech.spatial4j  
  192.       spatial4j  
  193.       0.6  
  194.       provided  
  195.         
  196.           
  197.           *  
  198.           *  
  199.           
  200.         
  201.       
  202.       
  203.       com.vividsolutions  
  204.       jts  
  205.       1.13  
  206.       provided  
  207.         
  208.           
  209.           *  
  210.           *  
  211.           
  212.         
  213.       
  214.       
  215.       org.apache.logging.log4j  
  216.       log4j-api  
  217.       2.8.2  
  218.       provided  
  219.         
  220.           
  221.           *  
  222.           *  
  223.           
  224.         
  225.       
  226.       
  227.       org.apache.logging.log4j  
  228.       log4j-core  
  229.       2.8.2  
  230.       provided  
  231.         
  232.           
  233.           *  
  234.           *  
  235.           
  236.         
  237.       
  238.       
  239.       org.elasticsearch  
  240.       jna  
  241.       4.4.0  
  242.       provided  
  243.       
  244.       
  245.       org.elasticsearch.test  
  246.       framework  
  247.       5.4.1  
  248.       test  
  249.       
  250.       
  251.       org.assertj  
  252.       assertj-core  
  253.       2.1.0  
  254.       test  
  255.         
  256.           
  257.           *  
  258.           *  
  259.           
  260.         
  261.       
  262.       
  263.       org.json  
  264.       json  
  265.       20140107  
  266.       test  
  267.         
  268.           
  269.           *  
  270.           *  
  271.           
  272.         
  273.       
  274.       
  275.       org.elasticsearch.client  
  276.       transport  
  277.       5.4.1  
  278.       test  
  279.       
  280.   
  281.       
  282.     
  283.   

你可能感兴趣的:(elasticsearch)