Elasticsearch 主分片丢失后大量INITIALIZING_SHARDS堆积如何恢复
Elasticsearch • weizijun 回复了问题 • 5 人关注 • 1 个回复 • 9986 次浏览 • 2016-10-14 13:39
elasticsearch-analysis-pinyin更新至es2.4.1和5.0.0-rc1
Elasticsearch • medcl 发表了文章 • 3 个评论 • 4381 次浏览 • 2016-10-13 21:49
新增若干特性,支持多种选项配置,支持 pinyin 的切分,比之前需要结合 ngram 的方式更加准确,
如:liudehuaalibaba13zhuanghan->liu,de,hua,a,li,ba,ba,13,zhuang,han,
具体配置参加文档:
https://github.com/medcl/elast ... inyin
下载:
https://github.com/medcl/elast ... eases
欢迎测试:
curl -XPUT http://localhost:9200/medcl/ -d'
{
"index" : {
"analysis" : {
"analyzer" : {
"pinyin_analyzer" : {
"tokenizer" : "my_pinyin"
}
},
"tokenizer" : {
"my_pinyin" : {
"type" : "pinyin",
"keep_separate_first_letter" : false,
"keep_full_pinyin" : true,
"keep_original" : false,
"limit_first_letter_length" : 16,
"lowercase" : true
}
}
}
}
}'
curl http://localhost:9200/medcl/_a ... lyzer
{
"tokens" : [ {
"token" : "liu",
"start_offset" : 0,
"end_offset" : 1,
"type" : "word",
"position" : 0
}, {
"token" : "de",
"start_offset" : 1,
"end_offset" : 2,
"type" : "word",
"position" : 1
}, {
"token" : "hua",
"start_offset" : 2,
"end_offset" : 3,
"type" : "word",
"position" : 2
}, {
"token" : "a",
"start_offset" : 2,
"end_offset" : 31,
"type" : "word",
"position" : 3
}, {
"token" : "b",
"start_offset" : 2,
"end_offset" : 31,
"type" : "word",
"position" : 4
}, {
"token" : "c",
"start_offset" : 2,
"end_offset" : 31,
"type" : "word",
"position" : 5
}, {
"token" : "d",
"start_offset" : 2,
"end_offset" : 31,
"type" : "word",
"position" : 6
}, {
"token" : "liu",
"start_offset" : 2,
"end_offset" : 31,
"type" : "word",
"position" : 7
}, {
"token" : "de",
"start_offset" : 2,
"end_offset" : 31,
"type" : "word",
"position" : 8
}, {
"token" : "hua",
"start_offset" : 2,
"end_offset" : 31,
"type" : "word",
"position" : 9
}, {
"token" : "wo",
"start_offset" : 2,
"end_offset" : 31,
"type" : "word",
"position" : 10
}, {
"token" : "bu",
"start_offset" : 2,
"end_offset" : 31,
"type" : "word",
"position" : 11
}, {
"token" : "zhi",
"start_offset" : 2,
"end_offset" : 31,
"type" : "word",
"position" : 12
}, {
"token" : "dao",
"start_offset" : 2,
"end_offset" : 31,
"type" : "word",
"position" : 13
}, {
"token" : "shi",
"start_offset" : 2,
"end_offset" : 31,
"type" : "word",
"position" : 14
}, {
"token" : "shui",
"start_offset" : 2,
"end_offset" : 31,
"type" : "word",
"position" : 15
}, {
"token" : "ldhabcdliudehuaw",
"start_offset" : 0,
"end_offset" : 16,
"type" : "word",
"position" : 16
} ]
}
关于logstash插件logstash-filter-elasticsearch的问题
Logstash • leighton_buaa 回复了问题 • 2 人关注 • 1 个回复 • 4145 次浏览 • 2016-10-14 10:12
elasticsearch-sql 时间的range查询
回复Elasticsearch • wx7614140 发起了问题 • 1 人关注 • 0 个回复 • 5843 次浏览 • 2016-10-13 11:20
elasticsearch去重的问题
Elasticsearch • pqy 回复了问题 • 6 人关注 • 4 个回复 • 13125 次浏览 • 2017-05-03 11:26
java client 和 http restful 底层实现是一样的么?哪个更好一些呢
Elasticsearch • flowaters 回复了问题 • 7 人关注 • 6 个回复 • 6928 次浏览 • 2016-10-15 10:54
IK分词后对搜索英文、数字的影响,搜索不出来?
Elasticsearch • martindu 回复了问题 • 2 人关注 • 1 个回复 • 16328 次浏览 • 2016-10-13 17:48
不分词建好了索引,上亿条数据,我现在想加入分词,是不是只能重新建?
Elasticsearch • martindu 回复了问题 • 2 人关注 • 1 个回复 • 4560 次浏览 • 2016-10-12 17:26
用elasticsearch搭建的上亿的数据,分词了不能精确查询,不分词不能模糊查询,系统就是这样吗?
Elasticsearch • pingyuan 回复了问题 • 2 人关注 • 3 个回复 • 10914 次浏览 • 2016-11-14 20:03
java连接ElasticSearch 问题
回复Elasticsearch • xiaohei 发起了问题 • 1 人关注 • 0 个回复 • 5755 次浏览 • 2016-10-12 10:29
BulkProcessor 无响应
Elasticsearch • medcl 回复了问题 • 2 人关注 • 1 个回复 • 6039 次浏览 • 2016-10-21 22:56
省市区分块排序要怎么查?展示结果是:本省本市的、本省外市的、全国的,而且都是按照倒序排,本省本市的排前面,这个要怎么弄???
Elasticsearch • martindu 回复了问题 • 3 人关注 • 2 个回复 • 5673 次浏览 • 2016-10-12 17:01
elasticsearch-jdbc 访问外网mysql数据库
回复Elasticsearch • twinboss 发起了问题 • 1 人关注 • 0 个回复 • 4503 次浏览 • 2016-10-11 12:47
elasticsearch2.2 ,屏蔽_index,_type,_score的显示
回复Elasticsearch • gfswsry 发起了问题 • 1 人关注 • 0 个回复 • 4755 次浏览 • 2016-10-10 20:31