Parth6288

elasticsearch.yml

Apr 6th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. # ------------------------------------ Node ------------------------------------
  2. #
  3. # Use a descriptive name for the node:
  4. #
  5. #node.name: node-1
  6. #
  7. # Add custom attributes to the node:
  8. #
  9. #node.attr.rack: r1
  10. #
  11. # ----------------------------------- Paths ------------------------------------
  12. #
  13. # Path to directory where to store the data (separate multiple locations by comma):
  14. #
  15. path.data: /var/lib/elasticsearch
  16. #
  17. # Path to log files:
  18. #
  19. path.logs: /var/log/elasticsearch
  20. #
  21. # ----------------------------------- Memory -----------------------------------
  22. #
  23. # Lock the memory on startup:
  24. #
  25. #bootstrap.memory_lock: true
  26. #
  27. # Make sure that the heap size is set to about half the memory available
  28. # on the system and that the owner of the process is allowed to use this
  29. # limit.
  30. #
  31. # Elasticsearch performs poorly when the system is swapping the memory.
  32. #
  33. # ---------------------------------- Network -----------------------------------
  34. #
  35. # Set the bind address to a specific IP (IPv4 or IPv6):
  36. #
  37. network.host: localhost
  38. #
  39. # Set a custom port for HTTP:
  40. #
  41. #http.port: 9200
  42. #
  43. # For more information, consult the network module documentation.
  44. #
  45. # --------------------------------- Discovery ----------------------------------
Add Comment
Please, Sign In to add comment