我有一个具有以下默认配置的弹性搜索节点
index :
analysis :
analyzer :
default_index :
type : custom
tokenizer : whitespace
filter :
- lowercase
- asciifolding
- stop
- my_ngram
char_filter : html_strip
default_search:
type : custom
tokenizer : whitespace
filter:
- lowercase
- asciifolding
- stop
char_filter : html_strip
filter:
my_ngram:
type: nGram
max_gram: 50
然后我创建一个索引“测试”
curl -XPUT localhost:9200/test -d '{
"settings": {
"index": {
"number_of_shards": 1,
"number_of_replicas": 0
}
}
}'
我已经发布
curl -XPOST localhost:9200/test/sub -d '{"n1" : "so?:me"}'
搜索为
curl -XPOST 'localhost:9200/test/sub/_search?pretty&q=\?'
我得到了上面显示的正确结果,但是当我这样做时
curl -XPOST localhost:9200/test/sub/_search -d '{
"query": {
"query_string": {
"query": "\?"
}
}
}'
我得到一个例外如下
{
"error": "SearchPhaseExecutionException[Failed to execute phase [query_fetch], total failure;
shardFailures {[1fLLfu79Qou8RbdrI6y8qw][test][0]:
SearchParseException[[test][0]: from[-1],size[-1]:
Parse Failure [Failed to parse source [
{
"query": {
"query_string": {
"query": "\\?"
}
}
}
]]];
nested: QueryParsingException[[test] Failed to parse];
nested: JsonParseException[Unrecognized character escape '?' (code 63)\n at [Source: [B@1601cda; line: 1, column: 45]]; }]",
"status": 500
}
我不确定我在这里缺少什么?
更多细节,我发现它更令人困惑。
如果我发布
curl -XPOST localhost:9200/test/sub/_search -d '{
"query": {
"query_string": {
"query": "\\?"
}
}
}'
我正确地得到了结果,看起来 JSON 转义字符必须自己转义。但后来我发布
curl -XPOST localhost:9200/test/sub -d '{"n1" : "oi\\me"}'
现在如果我发布
curl -XPOST localhost:9200/test/sub/_search?pretty -d '{
"query": {
"query_string": {
"query": "\\\\"
}
}
}'
我得到了结果,假设我之前发现的内容仅代表答案中的第一个“\”,它非常理想地显示
curl -XPOST localhost:9200/test/sub/_search?pretty -d '{
"query": {
"query_string": {
"query": "\\\\\\\\"
}
}
}'
应该工作,但它没有。所以很困惑。