elasticsearch plugin(插件)开发

作者: 愚公300代 | 来源:发表于2016-11-03 09:26 被阅读563次

    插件开发参考:
    插件开发说明:https://www.elastic.co/blog/found-writing-a-plugin
    这个说明是比较老的说明,我要开发的是elasticsearch 2.1.1版本的插件,因此参考2.1.1版本插件的开发方法
    例如,可参考ik插件的v1.7.0版本,这个版本对应的是elasticsearch 2.1.1版本:https://github.com/medcl/elasticsearch-analysis-ik.git
    这里面主要参考其pom.xml结构,源代码结构,类地继承结构等。
    最终产生的项目:https://github.com/ggchangan/elasticsearch-example-plugin
    git clone git@github.com:ggchangan/elasticsearch-example-plugin.git

    插件安装:
    bin/plugin install file:///home/magneto/OpenSource/example-plugin/target/releases/example-plugin-1.0-SNAPSHOT.zip
    插件运行:
    curl localhost:9200/_hello
    curl localhost:9200/_hello?who=Elasticsearch

    相关文章

      网友评论

        本文标题:elasticsearch plugin(插件)开发

        本文链接:https://www.haomeiwen.com/subject/sgubuttx.html