elasticsearch 查询索引和清理索引命令

查询

curl --silent 'http://127.0.0.1:9200/_cat/indices'

删除

curl -X DELETE "localhost:9200/wifilock_prepro_subscribe_std_lock_status?pretty"

设置es可写

curl -XPUT -H "Content-Type: application/json" http://127.0.0.1:9200/_all/_settings -d '{"index.blocks.read_only_allow_delete": null}'

条件范围查询

POST uplus_data_log_pro/_search
{
    "query" : {
        "bool" : {
            "must" : {
                "match" : {
                    "uPlusdeviceid" : "SD8M9GQ17SD078420963E4645"
                }
            },
            "filter" : {
                "range" : {
                    "eventTime" : {"gte":1611590400000,"lte":1611676800000}
                }
            }
        }
    }
}

相关文章

TCP/IP套接字登录方法是MySQL在一切服务平台都提供的一种登录...
easy-rule规则引擎最佳落地
Elasticsearch 是一个分布式、高扩展、高实时的搜索与数据分...
最近壹哥的一个学生,在利用spring-data-elasticsearch访问E...
java 操作elasticsearch详细总结
原文链接:http://www.ruanyifeng.com/blog/2017/08/elastic...