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
  • 相关阅读:
    07周总结
    06周总结
    05周总结
    04周总结
    03周总结
    02周总结
    python数据特征预处理
    LeetCode Hard: 23. Merge k Sorted Lists
    LeetCode Hard: 4. Median of Two Sorted Arrays
    LeetCode Medium: 49. Group Anagrams
  • 原文地址:https://www.cnblogs.com/a-du/p/9076726.html
Copyright © 2011-2022 走看看