美文网首页
ElasticSearch(ES) Kibana IK分词器 p

ElasticSearch(ES) Kibana IK分词器 p

作者: 南岩飞雪 | 来源:发表于2019-04-10 10:37 被阅读0次

    Elasticsearch Kibana ES插件插件版本需要一致

    Elasticsearch安装使用

    Kibana安装使用

    Restful Api 使用

    https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/index.html

    ES插件安装

    查看已安装的插件

    GET /_cat/plugins?v&s=component&h=name,component,version,description
    

    IK分词器

    https://github.com/medcl/elasticsearch-analysis-ik

    • 可以直接下载zip包安装
    • 也可以下载Code, mvn package 打zip包

    pinyin分词器

    https://github.com/medcl/elasticsearch-analysis-pinyin

    • 需要下载Code, mvn package 打zip包

    启动ES,如果报如下错误,可以修改插件配置

    ./bin/elasticsearch
    
    [2019-04-15T15:30:22,467][INFO ][o.e.e.NodeEnvironment    ] [abY7OM5] using [1] data paths, mounts [[/ (/dev/disk1s1)]], net usable_space [102.2gb], net total_space [233.5gb], types [apfs]
    [2019-04-15T15:30:22,470][INFO ][o.e.e.NodeEnvironment    ] [abY7OM5] heap size [989.8mb], compressed ordinary object pointers [true]
    [2019-04-15T15:30:22,526][INFO ][o.e.n.Node               ] [abY7OM5] node name derived from node ID [abY7OM5YSz-CEC3L7uuYbQ]; set [node.name] to override
    [2019-04-15T15:30:22,527][INFO ][o.e.n.Node               ] [abY7OM5] version[6.7.1], pid[79094], build[default/zip/2f32220/2019-04-02T15:59:27.961366Z], OS[Mac OS X/10.13.4/x86_64], JVM[Oracle Corporation/Java HotSpot(TM) 64-Bit Server VM/1.8.0_151/25.151-b12]
    [2019-04-15T15:30:22,527][INFO ][o.e.n.Node               ] [abY7OM5] JVM arguments [-Xms1g, -Xmx1g, -XX:+UseConcMarkSweepGC, -XX:CMSInitiatingOccupancyFraction=75, -XX:+UseCMSInitiatingOccupancyOnly, -Des.networkaddress.cache.ttl=60, -Des.networkaddress.cache.negative.ttl=10, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -XX:-OmitStackTraceInFastThrow, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Djava.io.tmpdir=/var/folders/d5/m1r21l7n1h71fz7mmhzndf580000gn/T/elasticsearch-6792284539929701682, -XX:+HeapDumpOnOutOfMemoryError, -XX:HeapDumpPath=data, -XX:ErrorFile=logs/hs_err_pid%p.log, -XX:+PrintGCDetails, -XX:+PrintGCDateStamps, -XX:+PrintTenuringDistribution, -XX:+PrintGCApplicationStoppedTime, -Xloggc:logs/gc.log, -XX:+UseGCLogFileRotation, -XX:NumberOfGCLogFiles=32, -XX:GCLogFileSize=64m, -Des.path.home=/Users/shao/es/elasticsearch-6.7.1, -Des.path.conf=/Users/shao/es/elasticsearch-6.7.1/config, -Des.distribution.flavor=default, -Des.distribution.type=zip]
    [2019-04-15T15:30:23,373][WARN ][o.e.x.w.Watcher          ] [abY7OM5] the [action.auto_create_index] setting is configured to be restrictive [.monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*].  for the next 6 months daily history indices are allowed to be created, but please make sure that any future history indices after 6 months with the pattern [.watcher-history-YYYY.MM.dd] are allowed to be created
    [2019-04-15T15:30:24,476][WARN ][o.e.b.ElasticsearchUncaughtExceptionHandler] [abY7OM5] uncaught exception in thread [main]
    org.elasticsearch.bootstrap.StartupException: java.lang.IllegalArgumentException: Plugin [analysis-pinyin] was built for Elasticsearch version 6.3.0 but version 6.7.1 is running
        at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:163) ~[elasticsearch-6.7.1.jar:6.7.1]
        at org.elasticsearch.bootstrap.Elasticsearch.execute(Elasticsearch.java:150) ~[elasticsearch-6.7.1.jar:6.7.1]
        at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86) ~[elasticsearch-6.7.1.jar:6.7.1]
        at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:124) ~[elasticsearch-cli-6.7.1.jar:6.7.1]
        at org.elasticsearch.cli.Command.main(Command.java:90) ~[elasticsearch-cli-6.7.1.jar:6.7.1]
        at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:116) ~[elasticsearch-6.7.1.jar:6.7.1]
        at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:93) ~[elasticsearch-6.7.1.jar:6.7.1]
    Caused by: java.lang.IllegalArgumentException: Plugin [analysis-pinyin] was built for Elasticsearch version 6.3.0 but version 6.7.1 is running
        at org.elasticsearch.plugins.PluginsService.verifyCompatibility(PluginsService.java:346) ~[elasticsearch-6.7.1.jar:6.7.1]
        at org.elasticsearch.plugins.PluginsService.loadBundle(PluginsService.java:531) ~[elasticsearch-6.7.1.jar:6.7.1]
        at org.elasticsearch.plugins.PluginsService.loadBundles(PluginsService.java:471) ~[elasticsearch-6.7.1.jar:6.7.1]
        at org.elasticsearch.plugins.PluginsService.<init>(PluginsService.java:163) ~[elasticsearch-6.7.1.jar:6.7.1]
        at org.elasticsearch.node.Node.<init>(Node.java:339) ~[elasticsearch-6.7.1.jar:6.7.1]
        at org.elasticsearch.node.Node.<init>(Node.java:266) ~[elasticsearch-6.7.1.jar:6.7.1]
        at org.elasticsearch.bootstrap.Bootstrap$5.<init>(Bootstrap.java:212) ~[elasticsearch-6.7.1.jar:6.7.1]
        at org.elasticsearch.bootstrap.Bootstrap.setup(Bootstrap.java:212) ~[elasticsearch-6.7.1.jar:6.7.1]
        at org.elasticsearch.bootstrap.Bootstrap.init(Bootstrap.java:333) ~[elasticsearch-6.7.1.jar:6.7.1]
        at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:159) ~[elasticsearch-6.7.1.jar:6.7.1]
    
    /elasticsearch-6.7.1/plugins/pinyin/plugin-descriptor.properties 
    
    # plugins with the incorrect elasticsearch.version.
    elasticsearch.version=当前ES版本号
    

    参考

    https://www.cnblogs.com/dashuaiguo/p/10014978.html

    相关文章

      网友评论

          本文标题:ElasticSearch(ES) Kibana IK分词器 p

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