当前位置: 首页 > news >正文

郑州淘宝网站建设阿图什网站

郑州淘宝网站建设,阿图什网站,做网站的联系方式,wordpress积分阅读目录 基本概念 一、架构设计 二、核心原理 三、关键特性 四、应用意义 部署步骤 ‌一、环境准备‌ ‌二、安装 Elasticsearch‌ ‌三、关键配置#xff08;elasticsearch.yml#xff09;‌ ‌四、启动与验证‌ ‌五、集群扩展#xff08;新增节点#xff09;‌ …目录 基本概念 一、架构设计 二、核心原理 三、关键特性 四、应用意义 部署步骤 ‌一、环境准备‌ ‌二、安装 Elasticsearch‌ ‌三、关键配置elasticsearch.yml‌ ‌四、启动与验证‌ ‌五、集群扩展新增节点‌ ‌六、安全加固生产必做‌ ‌常见问题解决‌ 常用命令解析 ‌一、索引管理命令‌ ‌二、文档操作命令‌ ‌三、查询命令‌ ‌四、聚合分析命令‌ ‌五、集群管理命令‌ ‌六、实用技巧‌ ‌命令设计原理‌ 基本概念 一、架构设计 ‌节点类型‌ ‌Master节点‌负责集群管理索引创建/删除、分片分配和元数据维护通过Zen Discovery机制选举产生。‌Data节点‌处理数据读写和检索请求承载主要计算负载。‌协调节点‌Client节点路由请求并聚合结果减轻主节点压力。 ‌分片与副本‌ ‌分片Shard‌索引被水平拆分为多个分片分布在集群节点上实现分布式存储。‌副本Replica‌每个主分片可有多个副本提供高可用性和读负载均衡。 ‌分层结构‌ ‌数据层‌由Lucene引擎实现倒排索引和段文件Segment管理。‌服务层‌通过RESTful API提供搜索、聚合和分析能力。 二、核心原理 ‌倒排索引‌ 将文档内容分词为词项Term建立“词项→文档ID”映射实现毫秒级全文检索。 ‌近实时NRT机制‌ 数据写入后经内存缓冲Refresh1秒内可查定期刷盘Flush确保持久化。 ‌分布式查询‌ 查询请求被广播到相关分片协调节点合并结果并按相关性评分排序。 三、关键特性 ‌高性能与扩展性‌ 支持PB级数据横向扩展分片自动再平衡。 ‌多数据类型支持‌ 处理结构化、非结构化文本、数字及地理空间数据。 ‌分析能力‌ 提供聚合Bucket/Metric/Pipeline实现复杂数据分析。 ‌生态系统集成‌ 与Kibana可视化、Logstash/Beats数据采集构成完整解决方案。 四、应用意义 ‌运维监控‌ 集中管理日志和指标快速定位故障如通过Transaction ID追踪请求链路。 ‌业务智能‌ 分析用户行为点击流、搜索关键词优化产品体验。 ‌安全合规‌ SIEM方案实现威胁检测如异常登录分析和审计日志管理。 ‌成本效益‌ 开源降低许可成本ILM策略自动优化冷热数据存储。 Elasticsearch通过分布式架构和倒排索引技术成为实时搜索与分析领域的标杆工具广泛应用于运维、安全和业务分析场景。 部署步骤 ‌一、环境准备‌ ‌系统配置‌ # 禁用交换分区永久生效需写入 /etc/fstab sudo swapoff -a # 修改文件描述符限制 echo elasticsearch soft nofile 65535 | sudo tee -a /etc/security/limits.conf echo elasticsearch hard nofile 65535 | sudo tee -a /etc/security/limits.conf # 调整虚拟内存映射数 echo vm.max_map_count262144 | sudo tee -a /etc/sysctl.conf sudo sysctl -p ‌安装 JDK 17‌ sudo apt install openjdk-17-jdk # Ubuntu/Debian java -version # 验证版本 ‌二、安装 Elasticsearch‌ ‌下载并解压以 8.13.4 为例‌ wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.13.4-linux-x86_64.tar.gz tar -zxvf elasticsearch-8.13.4-linux-x86_64.tar.gz mv elasticsearch-8.13.4 /usr/local/elasticsearch ‌创建专用用户‌ sudo useradd elasticsearch sudo chown -R elasticsearch:elasticsearch /usr/local/elasticsearch ‌三、关键配置elasticsearch.yml‌ cluster.name: my-production-cluster # 集群名称需唯一:ml-citation{ref3,8 datacitationList} node.name: node-1 # 节点唯一标识 path.data: /data/elasticsearch # 数据存储目录需提前创建:ml-citation{ref2,8 datacitationList} path.logs: /var/log/elasticsearch # 日志目录 network.host: 0.0.0.0 # 监听所有网络接口 http.port: 9200 # REST API 端口 discovery.seed_hosts: [192.168.1.101, 192.168.1.102] # 集群节点IP:ml-citation{ref9 datacitationList} cluster.initial_master_nodes: [node-1, node-2] # 初始主节点列表:ml-citation{ref9 datacitationList} ‌四、启动与验证‌ ‌启动服务‌ sudo -u elasticsearch /usr/local/elasticsearch/bin/elasticsearch -d ‌检查状态‌ curl http://localhost:9200 预期输出包含集群名、节点名及版本号如 name: node-1 ‌五、集群扩展新增节点‌ ‌同步安装包到新节点‌ scp -r /usr/local/elasticsearch rootnew-node-ip:/usr/local/ ‌修改新节点配置‌ node.name: node-2 # 新节点名称 discovery.seed_hosts: [主节点IP] # 指向已有集群节点 ‌启动新节点‌ sudo -u elasticsearch /usr/local/elasticsearch/bin/elasticsearch -d ‌六、安全加固生产必做‌ ‌启用 TLS 加密‌ bin/elasticsearch-certutil ca # 生成CA bin/elasticsearch-certutil cert --ca elastic-stack-ca.p12 # 签发证书 ‌配置 elasticsearch.yml‌ xpack.security.enabled: true xpack.security.transport.ssl.enabled: true ‌常见问题解决‌ 问题现象解决方案启动报错 max_map_count确认 sysctl vm.max_map_count ≥262144节点无法加入集群检查 discovery.seed_hosts IP 及防火墙磁盘空间不足配置 ILM 策略自动清理旧索引 ‌部署方式对比‌ ‌单机测试‌直接解压启动需关闭安全模块‌生产集群‌必须配置 TLS、节点角色分离、ILM 策略 ‌关键提示‌ 禁止使用 root 用户运行 ES数据目录需独占磁盘避免 IO 争抢集群节点需时间同步NTP 服务 常用命令解析 ‌一、索引管理命令‌ ‌创建索引‌ PUT /products # 创建名为products的索引:ml-citation{ref2,10 datacitationList} {settings: {number_of_shards: 3, # 主分片数数据分布单元:ml-citation{ref1,10 datacitationList}number_of_replicas: 1 # 每个主分片的副本数高可用:ml-citation{ref10 datacitationList}},mappings: { # 定义字段类型:ml-citation{ref10 datacitationList}properties: {name: { type: text },price: { type: double}}} } ‌删除索引‌ DELETE /products # 删除索引及其所有数据:ml-citation{ref8,10 datacitationList} ‌二、文档操作命令‌ ‌插入文档‌ POST /products/_doc/1 # 指定ID为1插入文档:ml-citation{ref2,14 datacitationList} {name: Laptop,price: 999.99,tags: [electronics, tech] } ‌批量操作‌ POST /_bulk # 批量插入/更新文档:ml-citation{ref14 datacitationList} { index: { _index: products, _id: 2 } } { name: Phone, price: 599.99 } { delete: { _index: products, _id: 1 } } # 批量删除:ml-citation{ref14 datacitationList} ‌三、查询命令‌ ‌简单查询‌ GET /products/_search # 查询所有文档:ml-citation{ref2,7 datacitationList} { query: { match: { name: laptop } # 文本分词匹配:ml-citation{ref4,5 datacitationList} }, sort: [ { price: desc } ], # 按价格降序:ml-citation{ref14 datacitationList} from: 0, # 分页起始位置:ml-citation{ref14 datacitationList} size: 10 # 返回条数:ml-citation{ref14 datacitationList} } ‌复合查询‌ GET /products/_search {query: {bool: { # 布尔组合查询:ml-citation{ref4 datacitationList}must: [ # AND条件{ term: { tags: tech } } # 精确匹配不分词:ml-citation{ref4 datacitationList}],filter: [ # 过滤条件不计算相关性:ml-citation{ref4 datacitationList}{ range: { price: { gte: 500 } }}]}} } ‌四、聚合分析命令‌ GET /products/_search {aggs: {avg_price: { avg: { field: price } }, # 计算均价:ml-citation{ref3,5 datacitationList}tags_count: {terms: { field: tags.keyword } # 按标签分组计数:ml-citation{ref5 datacitationList}}},size: 0 # 不返回原始文档:ml-citation{ref5 datacitationList} } ‌五、集群管理命令‌ ‌查看健康状态‌ GET /_cat/health?v # 显示集群健康状态绿/黄/红:ml-citation{ref7,8 datacitationList} ‌节点信息‌ GET /_cat/nodes?v # 列出所有节点及角色:ml-citation{ref7,9 datacitationList} ‌六、实用技巧‌ ‌高亮搜索结果‌ GET /products/_search {query: { match: { name: laptop } },highlight: { # 高亮匹配词:ml-citation{ref14 datacitationList}fields: { name: {} }} } ‌索引别名‌ POST /_aliases # 创建别名实现无缝切换:ml-citation{ref10 datacitationList} {actions: [{ add: { index: products_v1, alias: products } }] } ‌命令设计原理‌ ‌RESTful风格‌所有操作通过HTTP方法GET/POST/PUT/DELETE实现‌JSON数据交互‌请求体与响应均为JSON格式支持结构化查询‌近实时性‌文档插入后1秒内可查由refresh_interval控制 注实际使用时需替换localhost:9200为ES服务地址并添加-u username:password参数若启用安全认证
http://www.hkea.cn/news/14404580/

相关文章:

  • 厦门北京网站建设公司关于室内设计的网站有哪些
  • 新营销平台电商网站邢台网站建设服务
  • 企业销售网站seo搜索引擎优化视频
  • 做网站 万户中小企业网络设计论文
  • 网站设计验收青海城乡建设部网站首页
  • 做效果图兼职的网站有哪些信阳市住房建设局网站
  • 网站默认主页名推广策略英文
  • wordpress站点地址无法更改重庆建设施工安全信息网官网
  • 做众筹网站怎么赚钱吗为网站吸引流量的方法
  • 微信公众号 做不了微网站建筑设计有哪些专业
  • 怎么做免费域名网站抖音服务商平台
  • 威海哪里可以建设企业网站关于网站开发的请示
  • 网页设计软件应用西安官网seo价格
  • 网站定制开发多久时间设计网站设计
  • 淘宝客怎么做直播网站吗网站建设 pdf
  • 钉钉网站建设服务协议返利网站开发一般要多少钱
  • 上传网站再备案网站开发常用单词
  • 东莞网站建设都找菲凡网络网站动态页面
  • wordpress 网站搬家wordpress 网站主题
  • 泉州企业自助建站响应式网站搭建百度小程序
  • 境外网站做网站涉黄怎么进入公司网站
  • 做的好的家装网站网站三要素
  • 工作室 网站上海发布公众号
  • 常州网站建设常州建站工具模板
  • php网站成品成都微信网站建设
  • 有建设网站的软件吗erp管理系统的作用
  • 网站右键禁止世代网络高端企业网站建设设计功能公司
  • 外贸公司取名字大全长沙seo排名公司
  • 广州 网站设计公司排名如何自己写一个网站
  • 建网站的大公司湖北网站设计