open-korean-text / elasticsearch-analysis-openkoreantext

Korean analysis plugin that integrates open-korean-text module into elasticsearch.
Apache License 2.0
127 stars 22 forks source link

6.2.2 버전 플러그인도 가능하신가요? #17

Open nurfgun opened 6 years ago

keepcosmos commented 6 years ago

넵~ 시간나는대로 작업해보겠습니다.

HIRANO-Satoshi commented 6 years ago

Hi, I'm using Elasticsearch 6.2.x and this plugin for 6.1 does work with an error.

We want to support Korean language. When would you provide a release for 6.2.x?

$ bin/elasticsearch-plugin install https://github.com/open-korean-text/elasticsearch-analysis-openkoreantext/releases/download/6.1.1/elasticsearch-analysis-openkoreantext-6.1.1.2-plugin.zip

Exception... plugin [elasticsearch-analysis-openkoreantext] is incompatible with version [6.1.2]; was designed for version [6.1.1]
Kottakji commented 5 years ago

저도 Satoshi씨랑 또같은 문제가 있습니다.

version: '2.2'
services:
  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:6.6.1
    container_name: elasticsearch
    environment:
      - cluster.name=docker-cluster
      - bootstrap.memory_lock=true
      - "ES_JAVA_OPTS=-Xms512m -Xmx512m"
    ulimits:
      memlock:
        soft: -1
        hard: -1
    volumes:
      - esdata1:/usr/share/elasticsearch/data
    ports:
      - 9200:9200
    networks:
      - esnet
  elasticsearch2:
    image: docker.elastic.co/elasticsearch/elasticsearch:6.6.1
    container_name: elasticsearch2
    environment:
      - cluster.name=docker-cluster
      - bootstrap.memory_lock=true
      - "ES_JAVA_OPTS=-Xms512m -Xmx512m"
      - "discovery.zen.ping.unicast.hosts=elasticsearch"
    ulimits:
      memlock:
        soft: -1
        hard: -1
    volumes:
      - esdata2:/usr/share/elasticsearch/data
    networks:
      - esnet

volumes:
  esdata1:
    driver: local
  esdata2:
    driver: local

networks:
  esnet:

그 다음에 이렇게 했습니다

docker exec -t elasticsearch bin/elasticsearch-plugin install https://github.com/open-korean-text/elasticsearch-analysis-openkoreantext/releases/download/6.1.1/elasticsearch-analysis-openkoreantext-6.1.1.2-plugin.zip

HIRANO-Satoshi commented 5 years ago

@JorisKok, here is a guide to an alternative.

https://www.elastic.co/guide/en/elasticsearch/plugins/master/analysis-nori.html

Kottakji commented 5 years ago

Thank you Satoshi-san, that is just what I need. I've managed to get this one working when using the latest available version though: image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.1.1