美文网首页
【es】es配置文件elasticsearch.yml

【es】es配置文件elasticsearch.yml

作者: Bogon | 来源:发表于2021-10-21 00:01 被阅读0次

    # cat  elasticsearch.yml

    ##########################################################

    cluster.name: test

    node.name: 172.16.6.204

    bootstrap.memory_lock: true

    bootstrap.system_call_filter: false

    thread_pool.bulk.queue_size: 2000

    network.host: 0.0.0.0

    network.publish_host: 172.16.6.204

    http.port: 9200

    transport.tcp.port: 9300

    http.cors.enabled: true

    http.cors.allow-origin: '*'

    discovery.zen.ping.unicast.hosts: ['172.16.6.223:9300', '172.16.6.125:9300', '172.16.6.204:9300']

    ###################################################################

    如果没有在配置文件中显式声明es节点角色,默认同时是mdi(master/data/ingest) 三种角色。

    相关文章

      网友评论

          本文标题:【es】es配置文件elasticsearch.yml

          本文链接:https://www.haomeiwen.com/subject/mfgjwltx.html