使用 nohup 或 disown 如果你要让某个进程运行在后台。

为什么我的es需要加attr才能查询到值?

Elasticsearch | 作者 keroes | 发布于2018年09月11日 | 阅读数:1452

如下:第一个可以出值,第二个不行,版本6.4 。
GET xiaoxutongxue/topic/_search
{
"query": {
"match": {
"attrs.title": "老铁"
}
}
}
GET xiaoxutongxue/topic/_search
{
"query": {
"match": {
"title": "老铁"
}
}
}
已邀请:

elasticStack - 90后it大数据男

赞同来自: easesstone

数据格式是下边这样吗
{
"attrs":{
"title":"老铁"
}
}

要回复问题请先登录注册