相关文章
阿里云ECS部署ES
背景 最近越来越多的公司把业务搬迁到云上,公司也有这个计划,自己抽时间在阿里云和Azure上做了一些小的尝试,现在把阿里云上部署ES和kibana记录下来。为以后做一个参考,也希望对其他人有帮助。 这里以阿里云为例,由于测…
建站知识
2025/1/12 3:34:27
ES-08-ElasticSearch数据分片(shard)
说明
ElasticSearch数据分片(shard)创建多分片索引、更改多分片索引副本分片数量、路由计算和分片控制官方文档:https://www.elastic.co/cn/
核心概念
》什么是数据分片(shard)?
一个分片是一个底层的工…
建站知识
2024/10/29 22:16:55
ES-09-ElasticSearch分词器
说明
ElasticSearch分词器默认分词器(标准分词器)、ik分词器、ik分词器扩展字典自定义词语关键词:keyword、text、ik_max_word、ik_smart、词条、词典、倒排表官方文档:https://www.elastic.co/cn/ik分词器文档:https…
建站知识
2025/1/20 16:55:10
Elasticsearch8.0
Elastic 中国社区官方博客_CSDN博客-Elastic,Elasticsearch,Kibana领域博主Elastic 中国社区官方博客擅长Elastic,Elasticsearch,Kibana,等方面的知识https://elasticstack.blog.csdn.net/ ✅ 启动 elasticsearch # cd /usr/local/elastic/elasticsearch/ # ./bin/elasticsearc…
建站知识
2024/10/29 8:52:25
ES6/ES7/ES8/ES9/ES10
ES10
ES10 功能完全指南
好犯困啊 我来打打字 string.prototype.matchAll() ‘Hello’.match(‘l’) eg:判断字符串中存在几个某元素 yannanna’.match(/n/g).length 扁平化多维数组(想不出啥时候会用到) let array [1, 2, 3, 4, 5]; array.map(x &g…
建站知识
2024/12/13 21:44:35
ES7,ES8,ES10新特性
ES7
ES7在ES6的基础上增加了三项内容
求幂运算符 **
console.log(3 ** 2 ) // 9 Array.prototype.includes()方法
includes()的作用是查找一个值在不在数组中,接受两个参数:搜索值和搜索的开始索引。如果没有传递参数默认的索引是0
// 下面的这两种方…
建站知识
2024/10/13 1:28:35