PART Ⅰ : 容器云OPENSHIFT
- 安装
- 数据持久化
- 集群管理
- 数据持久化
- 管理
- 网络
- 安全审计
- 工具应用部署
PART Ⅱ:容器云 KUBERNETES
- 基础
- 原理
- 系统应用/网络CNI/TRaefik
- 安装
- 集群管理
- 用户认证ServiceAccount与授权策略RBAC
- K8S应用管理工具Helm
- 问题
- 辅助工具
- Doing:K8S 多集群管理与网络互联
- VM On K8S
PART Ⅲ:持续集成与持续部署
- CICD优化总结
- Jenkins
- Gitlab
- Drone
- Nexus
- 配置
- 使用OrientDB Console在DB层面修改配置
- [设置SMTP邮件服务](https://www.wenjiangs.com/doc/krrcu7ebin9hh
- 仓库管理
- 数据备份恢复
- API
- Jenkins相关插件
- 配置
- SonarQube静态代码扫描分析
- LDAP
- Apollo
- 项目管理工具
- Jira
- Redmine
- Harbor
- Vault
- Alfred
- Web IDE: VSCode
- DolphinScheduler
PART Ⅴ:日志/监控/告警
- Logging
- Kafka/Zookeeper
- Filebeat
- Metrics
- Tracing
- Sentry日志聚合告警平台
PART Ⅵ:基础
- Docker
- Shell脚本
- Mave
- git
- 正则表达式
- SSL/TLS
- Ceph
- 性能压力测试
- PXE+Kickstart
- netboot.xyz
- Tool
- Windows
- MacOS小技巧
- Linux
- Linux排错优化
- iptables详解
- MySQL
- Redis
- 负载均衡与代理
- 代理服务器
- Nginx
- GitBook
- Telegram机器人
- OpenVPN Server
- iDRAC
- vSphere
- Raspberry Pi树莓派
- 钉钉机器人
- Aliyun CLI
- 音、视频处理工具:fffmpeg
- 图片处理工具:Imagemagick
- PDF处理工具:Ghostscript
- Nvidia
- Virtualbox 虚拟机管理
- 阿里云产品使用总结
- RustDesk:可自建远程控制软件
- Poste:自建邮件服务器
- 使用 Jlink构建最小化依赖的 JRE 环境
- Aria2
- Asuswrt-Merlin
- Trap:Shell脚本信号跟踪
- 零散知识汇总
- BarkServer通知
- Synology
PART Ⅶ:数据存储、处理
PART VIII:CODE
- Python学习笔记
- 基础语法
- statik 将静态资源文件打包到二进制文件中
- HTML/CSS 学习笔记
- JavaScript学习笔记
PART X:HACKINTOSH
PART XI:安全
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
index
数据定义语言:Data Definition Language
1. 创建索引
PUT /index_name?pretty
========================================================
curl -sk -u username:userpassword -XPUT "http://localhost:9200/index_name?pretty"
创建索引时设置参数
curl -sk -u username:userpassword -XPUT "http://localhost:9200/index_name?pretty" \
-H 'Content-Type: application/json' -d'
{
"settings" : {
"number_of_replicas" : 0
}
}'
2. 删除Index
DELET /index_name
========================================================
curl -sk -u username:userpassword -XDELETE "http://127.0.0.1:9200/index_name"
数据控制语言:Data Control Language
1. 查看索引的设置
GET /index_name/_settings
========================================================
curl -sk -u username:userpassword "http://127.0.0.1:9200/index_name/_settings"
2. 查看索引的Mapping
GET /index_name/_mapping
========================================================
curl -sk -u username:userpassword "http://127.0.0.1:9200/index_name/_mapping"
3. 设置索引Mapping
PUT /index_name
{
"mappings": {
"index_name": {
"dynamic":"false",
"properties": {
"id": {
"type": "long"
},
"prd_id": {
"type": "long"
},
"mer_id": {
"type": "long"
},
"data_status": {
"type": "text"
},
"datachange_createtime": {
"type": "date",
"format": "strict_date_optional_time||epoch_millis"
},
"datachange_lasttime": {
"type": "date",
"format": "strict_date_optional_time||epoch_millis"
}
}
}
}
}
========================================================
curl -sk -u username:userpassword -XPUT "http://127.0.0.1:9200/index_name" -H 'Content-Type: application/json' -d'
{
"mappings": {
"index_name": {
"dynamic":"false",
"properties": {
"id": {
"type": "long"
},
"prd_id": {
"type": "long"
},
"mer_id": {
"type": "long"
},
"data_status": {
"type": "text"
},
"datachange_createtime": {
"type": "date",
"format": "strict_date_optional_time||epoch_millis"
},
"datachange_lasttime": {
"type": "date",
"format": "strict_date_optional_time||epoch_millis"
}
}
}
}
}'
数据操作语言:Data Manipulation Language
1. 向索引中插入一个文档
向索引中插入一个ID为1的文档
PUT /index_name/_doc/1
{
"name": "test"
}
========================================================
curl -sk -u username:userpassword \
-XPUT "http://localhost:9200/index_name/_doc/1" \
-H 'Content-Type: application/json' \
-d'{ "name": "test" }'
2. 向索引中批量插入文档
3. 更新指定文档
PUT /index_name/_doc/1?pretty
{
"doc": {"name": "test1"}
}
========================================================
curl -sk -u username:userpassword \
-XPUT "http://localhost:9200/index_name/_doc/1" \
-H 'Content-Type: application/json' \
-d '
{
"doc": {"name": "test1"}
}
'
4. 指定文档新增字段
PUT /index_name/_doc/1?pretty
{
"doc": {"name": "test1","new_field": "testN"}
}
========================================================
curl -sk -u username:userpassword \
-XPUT "http://localhost:9200/index_name/_doc/1" \
-H 'Content-Type: application/json' \
-d '
{
"doc": {"name": "test1","new_field": "testN"}
}
'
5. 删除文档
curl -sk -u username:userpassword \
-XPOST "http://localhost:9200/index_name/_delete_by_query" \
-H 'Content-Type: application/json' \
-d '
{
"query":{
"term":{
"name" : "test1"
}
}
}'
数据查询语言:Data Query Language
1. 查询索引中的所有文档
只显示前十条
GET /index_name/_search?pretty
========================================================
curl -sk -u username:userpassword "http://localhost:9200/index_name/_search?pretty"
2. 查询_id为1的文档
GET /index_name/_doc/1?pretty
========================================================
curl -sk -u username:userpassword "http://localhost:9200/index_name/_doc/1?pretty"
3. 查询_id为1的文档的元数据
GET index_name/_doc/1/_source
========================================================
curl -sk -u username:userpassword "http://localhost:9200/index_name/_doc/1/_source?pretty"
4. 查询符合指定条件的文档
GET /index_name/_search?q=name:test1
========================================================
curl -sk -u username:userpassword "http://localhost:9200/index_name/_search?q=name:test1"
5. 复杂查询
GET /employee/_doc/_search
{
"query" : {
"bool": {
"must": {
"match" : {
"last_name" : "smith"
}
},
"filter": {
"range" : {
"age" : { "gt" : 30 }
}
}
}
}
}
#这条语句翻译成sql:select * from employee where last_name='smith' and age > 40
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论