搜索引擎共16篇
Elasticsearch二进制部署实战:集群搭建、systemd管理与堆内存调优-AI运维探索者

Elasticsearch二进制部署实战:集群搭建、systemd管理与堆内存调优

一、单点部署 1、下载ES软件包 地址链接:https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.17.5-linux-x86_64.tar.gz <img src="https://bucketbucket1.oss-cn-...
头像3年前
03715
Elasticsearch文档与Mapping实战:CRUD、自定义类型与字段设计-AI运维探索者

Elasticsearch文档与Mapping实战:CRUD、自定义类型与字段设计

一、管理文档的API 1.1 文档的创建 1.1 创建文档时不指定文档ID 1、填写POST请求http://192.168.1.121:9200/es1-num/\_doc,创建文档es1-num(不指定ID) <img src="https://bucketbucket1...
头像3年前
05215
Elasticsearch索引管理实战:创建、修改、别名与索引规范-AI运维探索者

Elasticsearch索引管理实战:创建、修改、别名与索引规范

一、查看索引 1.1 查看所有的索引 **Postman界面操作** 1、新建目录【01-索引管理】 <img src="https://bucketbucket1.oss-cn-beijing.aliyuncs.com/imag/image23.png" style=&quo...
头像3年前
0378
Elasticsearch运维API实战:health、settings、allocation与reroute-AI运维探索者

Elasticsearch运维API实战:health、settings、allocation与reroute

一、ES集群健康状态API(health) 1、安装jq工具 2、测试取数据 (1)取全部数据 相关数据说明: 参数
头像3年前
04513
Elasticsearch运维进阶:多实例、Head、Postman与故障排查-AI运维探索者

Elasticsearch运维进阶:多实例、Head、Postman与故障排查

一、ES集群的多实例部署 1、在elk121节点上配置集群免密登录及同步脚本 在elk121节点上修改主机列表 在elk121节点上生成密钥对 | \[root@elk121 ~\]ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa -...
头像3年前
0555
ECK入门与核心资源:Elasticsearch、Kibana和Logstash配置详解-AI运维探索者

ECK入门与核心资源:Elasticsearch、Kibana和Logstash配置详解

一、云原生日志框架ECK介绍 官网链接:[Elastic Cloud on Kubernetes | Elastic Docs](https://www.elastic.co/docs/deploy-manage/deploy/cloud-on-k8s) Elastic Cloud on Kubernetes(CCK)是El...
头像3年前
03814
Elasticsearch集群原理:倒排索引、节点角色与读写流程-AI运维探索者

Elasticsearch集群原理:倒排索引、节点角色与读写流程

一、倒排索引 面试题: 分片底层时如何工作的? 答: 分片底层对应的是一个Lucene库,而Lucene底层使用倒排索引技术实现。 **正排索引(正向索引):** 我们MySQL为例,用id字段存储博客文章的编号,...
头像3年前
0355
EFK 部署实战:Elasticsearch 与 Kibana 在 K8S 中落地-AI运维探索者

EFK 部署实战:Elasticsearch 与 Kibana 在 K8S 中落地

一、前言 Kubernetes 中比较流行的日志收集解决方案是Elasticsearch、Fluentd 和 Kibana (EFK)技术栈,也是官方现在比较推荐的一种方案。 1.1 主要组件功能 1、Elasticsearch(ES): - 强大的...
头像3年前
03714
Elasticsearch集群迁移实战:_reindex与Logstash跨集群同步-AI运维探索者

Elasticsearch集群迁移实战:_reindex与Logstash跨集群同步

一、部署ES6分布式集群 1、 2、结果验证 二、基于_reindex的API迁移 2.1 环境准备 1、搭建好两套多实例集群 2、在ES6环境创建文档 **注意:在Postman执行时需要单个单个执行,上面只是为了方便...
头像3年前
0326
Elasticsearch API入门:RESTful、JSON与核心术语-AI运维探索者

Elasticsearch API入门:RESTful、JSON与核心术语

一、Restful及JSON格式 1.1 数据类型 | 数据类型 | 描述 | 举例 | |----------|----------------------------------------------------------------------|------------------------------| | ...
头像3年前
0307