使用netstat -lntp来看看有侦听在网络某端口的进程。当然,也可以使用 lsof。

在已有的index添加type

Elasticsearch | 作者 sweetpotato | 发布于2018年08月30日 | 阅读数:4380

 
请问这里加个type怎么加?
各位大神教教。使用post还是put?~~
TIM图片20180830173237.png
已邀请:

qw8613243

赞同来自:

就是修改字段属性 es支持修改字段属性呀
参考如下
# curl -XPUT http://127.0.0.1:9200/logstash ... pings -d '
{
"properties" : {
"syslogtag" : {
"type" : "keyword"
}
}
}'

zqc0512 - andy zhou

赞同来自:

Cerebro  web修改 
你CURL的话要写全的,覆盖模式。
 

laoyang360 - 《一本书讲透Elasticsearch》作者,Elastic认证工程师 [死磕Elasitcsearch]知识星球地址:http://t.cn/RmwM3N9;微信公众号:铭毅天下; 博客:https://elastic.blog.csdn.net

赞同来自:

使用put更新字段,
举例:
PUT twitter/_mapping/_doc 
{
"properties": {
"email": {
"type": "keyword"
}
}
}
https://www.elastic.co/guide/e ... .html

要回复问题请先登录注册