elasticsearch 색인 생성 스크립트 예제
Elastic/Elasticsearch 2013. 1. 16. 14:54그냥 예제 입니다. ㅎㅎ
생성 시 적용된 내용은
- replica 설정
- shards 설정
- refresh interval 설정
- term index interval 설정
- field store 시 compression 설정
- analyzer 설정
- synonym 설정
- routing 설정
- _all disable(?) 설정
# index 삭제
curl -XDELETE 'http://localhost:9200/index0/'
# index 생성
curl -XPUT 'http://localhost:9200/index0' -d '{
"settings" : {
"number_of_shards" : 50,
"number_of_replicas" : 1,
"index" : {
"refresh_interval" : "60s",
"term_index_interval" : "1",
"store" : {
"compress" : {
"stored" : true,
"tv" : true
}
},
"analysis" : {
"analyzer" : {
"kr_analyzer" : {
"type" : "custom",
"tokenizer" : "kr_tokenizer",
"filter" : ["trim", "kr_filter", "kr_synonym"]
},
"kr_analyzer" : {
"type" : "custom",
"tokenizer" : "kr_tokenizer",
"filter" : ["trim", "kr_filter", "kr_synonym"]
}
},
"filter" : {
"kr_synonym" : {
"type" : "synonym",
"synonyms_path" : "analysis/synonym.txt"
}
}
}
},
"routing" : {
"required" : true,
"path" : "indexType.user_uniq_id"
}
},
"mappings" : {
"indexType" : {
"properties" : {
"docid" : { "type" : "string", "store" : "yes", "index" : "not_analyzed", "include_in_all" : false },
"rm_seq" : { "type" : "long", "store" : "yes", "index" : "no", "include_in_all" : false },
"rm_join_seq" : { "type" : "long", "store" : "yes", "index" : "no", "include_in_all" : false },
"rm_title" : { "type" : "string", "store" : "yes", "index" : "analyzed", "term_vector" : "yes", "analyzer" : "kr_analyzer", "include_in_all" : false },
"user_uniq_id" : { "type" : "string", "store" : "yes", "index" : "not_analyzed", "include_in_all" : false },
"mb_nm" : { "type" : "string", "store" : "yes", "index" : "analyzed", "term_vector" : "yes", "analyzer" : "kr_analyzer", "include_in_all" : false },
"mb_count" : { "type" : "integer", "store" : "yes", "index" : "no", "include_in_all" : false },
"rm_ymdt" : { "type" : "date", "format" : "yyyyMMddHHmmss", "store" : "yes", "index" : "not_analyzed", "include_in_all" : false },
"data_size" : { "type" : "long", "store" : "yes", "index" : "no", "include_in_all" : false },
"msgs" : {
"properties" : {
"msg_seq" : { "type" : "long", "store" : "no", "index" : "no", "include_in_all" : false },
"msg" : { "type" : "string", "store" : "yes", "index" : "analyzed", "term_vector" : "yes", "analyzer" : "kr_analyzer", "include_in_all" : false },
"send_user_uniq_id" : { "type" : "string", "store" : "yes", "index" : "not_analyzed", "include_in_all" : false },
"send_user_nick_nm" : { "type" : "string", "store" : "yes", "index" : "not_analyzed", "term_vector" : "yes", "analyzer" : "kr_analyzer", "include_in_all" : false },
"recv_ymdt" : { "type" : "date", "format" : "yyyyMMddHHmmss", "store" : "yes", "index" : "not_analyzed", "include_in_all" : false },
"cfn_yn" : { "type" : "string", "store" : "no", "index" : "no", "include_in_all" : false },
"send_yn" : { "type" : "string", "store" : "yes", "index" : "not_analyzed", "include_in_all" : false },
"msg_type" : { "type" : "integer", "store" : "yes", "index" : "not_analyzed", "include_in_all" : false }
}
}
}
}
}
}'