zoukankan      html  css  js  c++  java
  • elasticsearch索引目录设置

    path.data and path.logs

    If you are using the .zip or .tar.gz archives, the data and logs directories are sub-folders of $ES_HOME. If these important folders are left in their default locations, there is a high risk of them being deleted while upgrading Elasticsearch to a new version.

    In production use, you will almost certainly want to change the locations of the data and log folder:

    path:
      logs: /var/log/elasticsearch
      data: /var/data/elasticsearch

    The RPM and Debian distributions already use custom paths for data and logs.

    The path.data settings can be set to multiple paths, in which case all paths will be used to store data (although the files belonging to a single shard will all be stored on the same data path):

    path:
      data:
        - /mnt/elasticsearch_1
        - /mnt/elasticsearch_2
        - /mnt/elasticsearch_3
  • 相关阅读:
    线程
    GridView 1 分页 全选 编辑 删除 更新
    抓取淘宝分类
    ruwnumber自定义分页
    XML随笔
    二进制图片相互转换
    7表单1
    HTML代码1
    6表格
    5图像
  • 原文地址:https://www.cnblogs.com/a-du/p/9076726.html
Copyright © 2011-2022 走看看