Code Monkey home page Code Monkey logo

Comments (3)

ernestas-poskus avatar ernestas-poskus commented on May 29, 2024
  {
    discovery: {
      seed_hosts: es7_unicast_masters
    },
    cluster: {
      # Cluster needs at least 1 initial master when bootstrapping for
      # the first time
      initial_master_nodes: es7_unicast_masters(join: false).first
    }
  }

you can leave the config, in cases of complete cluster shutdown you will need it again. The trick here is to discover master using chef search(:) API, then sort the hosts and select first one for initial_master_nodes. Thats it.

from elasticsearch.

craffop avatar craffop commented on May 29, 2024

Thank you

  {
    discovery: {
      seed_hosts: es7_unicast_masters
    },
    cluster: {
      # Cluster needs at least 1 initial master when bootstrapping for
      # the first time
      initial_master_nodes: es7_unicast_masters(join: false).first
    }
  }

you can leave the config, in cases of complete cluster shutdown you will need it again. The trick here is to discover master using chef search(:) API, then sort the hosts and select first one for initial_master_nodes. Thats it.

Thank you,

However, I think I unserstand what you are getting at, I just seem to have a bit of a gap in understanding as to what you are doing.
I have worked with some basic chef search, but mainly through knife.

Here is a snippet of my recipe to deploy the config:
configuration( 'action.auto_create_index' => '.security,.security-6,.watches,.triggered_watches,.watcher-history-*,.monitoring-*', 'action.destructive_requires_name' => true, 'cluster.name' => node['sc-smartsearch']['clustername'], 'cluster.initial_master_nodes' => node['sc-smartsearch']['hosts'].split(','), 'discovery.seed_hosts' => node['sc-smartsearch']['hosts'].split(','),

I tried to narrow this down by doing some node searches but did not get anything back. so not trying to get free chef help or anything but would appreciate a bit more information on how to do this :)
Can not tell if you added this to a role or running this in the recipe.

from elasticsearch.

ernestas-poskus avatar ernestas-poskus commented on May 29, 2024

I tried to narrow this down by doing some node searches but did not get anything back.

use chef search API to find all masters, map found masters into array and sort them ["master1:9200", "master2:9200", "master3:9200"]

assign above array to seed_hosts and set initial_master_nodes to first element from array of masters.

from elasticsearch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.