프로그래밍/검색
-
elasticsearch 2.3.2 에 한국어 형태소 (은전한닢) 사용하기프로그래밍/검색 2016. 10. 8. 12:30
elasticsearch 를 새로 설치하면서 한국어 형태소 open plugin 은전한닢도 같이 설치하였다. 은전한닢 프로젝트는 검색에 사용할 만한 오픈소스 한국어 분석기를 만드는 프로젝트로 형태소 분석과 사용자 사전등의 기능을 제공하고 있다. 은전한닢 프로젝트 홈페이지 바로가기 elasticsearch 사용버전: 2.3.2은전한닢 plugin 버전: 2.3.2.1 https://bitbucket.org/eunjeon/seunjeon/src/ad2e2655ac940d2a6cc8d002c1dad1b5f807a01c/elasticsearch/?at=es-2.3.3.0 아래는 형태소 분석기 옵션이다. index_poses 옵션에서는 추출할 품사를 선택할 수 있는데 아래는 선택 가능한 품사 리스트이다.
-
elasticsearch - shard 개수와 replica 개수 정하기프로그래밍/검색 2016. 8. 5. 21:11
엘라스틱 서치 권장 사항 저장용 https://www.elastic.co/guide/en/elasticsearch/guide/current/scale.html https://www.elastic.co/guide/en/elasticsearch/guide/current/shard-scale.html https://www.elastic.co/guide/en/elasticsearch/guide/current/overallocation.html PUT /my_index { "settings": { "number_of_shards": 2, "number_of_replicas": 0 } } This time, when we add a second node, Elasticsearch will automatically ..
-
elasticsearch 2.3 - server ip 주소에 Connection refused 에러프로그래밍/검색 2016. 8. 3. 23:33
localhost:port에는 접속이 되면서 ip address:port로는 접속이 되지 않는 이슈 발생 # curl real_IP_Address:9200curl: (7) Failed to connect to real_IP_Address port 9200: Connection refused# curl localhost:9200{ "name" : "Wrath", "cluster_name" : "****", "version" : { "number" : "2.3.2", "build_hash" : "****", "build_timestamp" : "2016-04-21T16:03:47Z", "build_snapshot" : false, "lucene_version" : "5.5.0" }, "tagline" : "..