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
  • 相关阅读:
    143. Reorder List
    圆圈中最后剩下的数
    求1+2+3+...+n
    不用加减乘除做加法
    构建乘积数组
    199. Binary Tree Right Side View
    把字符串转换成整数
    java stream
    物流运费的维护架构
    9、定义类与方法
  • 原文地址:https://www.cnblogs.com/a-du/p/9076726.html
Copyright © 2011-2022 走看看