windows系统下执行es的curl
2022/8/16 5:24:27
本文主要是介绍windows系统下执行es的curl,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
windows系统下执行curl:
注意:windows下不能用单引号,必须用双引号,英文双引号,双引号!!!
查看es状态
curl http://localhost:9200/_cat/health
查看特定索引
curl "http://localhost:9200/_cat/indices/testindex"
删除索引
curl -X DELETE "http://localhost:9200/testindex"
新建索引
curl -H "Content-Type: application/Json" -X PUT "http://localhost:9200/testindex" -d "{\"mappings\" : {\"market_api\" : {\"properties\" : {\"prop_1\" : {\"type\" : \"keyword\"},\"prop_2\" : {\"type\" : \"double\"},\"prop_3\" : {\"type\" : \"keyword\"},\"prop_4\" : {\"type\" : \"integer\"}}}}}"
新增嵌套字段
curl -XPOST "http://localhost:9200/testindex/_mapping/testbundlesku" -H "Content-Type: application/Json" -d "{"""properties""":{"""platformSkuList2""":{"""type""":"""nested""","""properties""":{"""id""":{"""type""":"""keyword"""},"""created""":{"""type""":"""date"""}}}}}"
curl -X POST "http://localhost:9200/testindex/_mapping/testbundlesku" -H "Content-Type: application/Json" -d "{\"properties\":{\"platformSkuList3\":{\"type\":\"nested\",\"properties\":{\"id\":{\"type\":\"keyword\"},\"created\":{\"type\": \"date\"}}}}}"
删除数据
curl -X DELETE "http://localhost:9200/testindex/testbundlesku/410c4e4e-768d-4c82-abf8-57d3123df956"
新增或修改数据
curl -H "Content-Type: application/Json" -XPUT "http://localhost:9200/testindex/testbundlesku/13BA72ED-26DF-4D03-8A5B-BEC1D3129B28" -d" {\"id\":\"13BA72ED-26DF-4D03-8A5B-BEC1D3129B28\",\"code\":\"asdfadf\",\"newProductPlatformInfoList\":[{\"platformType\":0,\"audited\":\"2022-08-15\"},{\"platformType\":1,\"audited\":\"2022-08-01\"}]}"
查询数据
curl -H "Content-Type: application/Json" -X GET "http://localhost:9200/testindex/_search" -d "{\"from\":0,\"size\":2}"
这篇关于windows系统下执行es的curl的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享