Skip to content

Instantly share code, notes, and snippets.

Created November 22, 2011 10:43
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save anonymous/1385395 to your computer and use it in GitHub Desktop.
bad recovery after cluster restart
[2011-11-22 11:54:03,494][INFO ][node ] [Grasshopper I&II] {elasticsearch/0.17.6}[30927]: initializing ...
[2011-11-22 11:54:03,508][INFO ][plugins ] [Grasshopper I&II] loaded [], sites []
[2011-11-22 11:54:05,886][INFO ][node ] [Grasshopper I&II] {elasticsearch/0.17.6}[30927]: initialized
[2011-11-22 11:54:05,887][INFO ][node ] [Grasshopper I&II] {elasticsearch/0.17.6}[30927]: starting ...
[2011-11-22 11:54:05,973][INFO ][transport ] [Grasshopper I&II] bound_address {inet[/0:0:0:0:0:0:0:0:9301]}, publish_address {inet[/10.117.202.47:9301]}
[2011-11-22 11:54:09,015][INFO ][cluster.service ] [Grasshopper I&II] new_master [Grasshopper I&II][fKDL-rikT4q-ePDOVFsPsA][inet[/10.117.202.47:9301]], reason: zen-disco-join (elected_as_master)
[2011-11-22 11:54:09,022][INFO ][discovery ] [Grasshopper I&II] deltaA/fKDL-rikT4q-ePDOVFsPsA
[2011-11-22 11:54:09,030][INFO ][http ] [Grasshopper I&II] bound_address {inet[/0:0:0:0:0:0:0:0:9201]}, publish_address {inet[/10.117.202.47:9201]}
[2011-11-22 11:54:09,030][INFO ][node ] [Grasshopper I&II] {elasticsearch/0.17.6}[30927]: started
[2011-11-22 11:54:09,033][INFO ][gateway ] [Grasshopper I&II] recovered [0] indices into cluster_state
[2011-11-22 11:54:11,917][INFO ][cluster.service ] [Grasshopper I&II] added {[Ramsey, Doug][wbieYm-HRx2WAdzIeqdkzw][inet[/10.117.202.47:9300]],}, reason: zen-disco-receive(join from node[[Ramsey, Doug][wbieYm-HRx2WAdzIeqdkzw][inet[/10.117.202.47:9300]]])
[2011-11-22 12:23:17,115][INFO ][cluster.service ] [Grasshopper I&II] added {[Isis][-Aft9clbQQ6LA9e4fvNxKQ][inet[/10.117.202.46:9300]],}, reason: zen-disco-receive(join from node[[Isis][-Aft9clbQQ6LA9e4fvNxKQ][inet[/10.117.202.46:9300]]])
[2011-11-22 12:23:25,042][INFO ][cluster.service ] [Grasshopper I&II] added {[Stonecutter][HHdf1o_DTkuK63MUBj42Dw][inet[/10.117.202.46:9301]],}, reason: zen-disco-receive(join from node[[Stonecutter][HHdf1o_DTkuK63MUBj42Dw][inet[/10.117.202.46:9301]]])
# Cluster Settings
cluster:
name: deltaA
# Gateway Settings
gateway:
type: fs
fs:
location: /elasticsearch/index/work
# recover_after_nodes: 1
# recover_after_time: 1m
# expected_nodes: 2
# Path Settings
path:
data: /elasticsearch/index/data
work: /elasticsearch/index/work
logs: /elasticsearch/index/logs
# Controls the minimum number of master eligible nodes this node should "see"
# in order to operate within the cluster.
# Set this to a higher value (2-4) when running more than 2 nodes in the cluster
discovery.zen.minimum_master_nodes: 2
# Force all memory to be locked, forcing JVM to never swap
# (make sure to set MIN and MAX mem to the same value)
#bootstrap:
# mlockall: true
# Unicast Discovery (disable multicast)
#discovery:
# zen:
# multicast.enabled: false
# unicast.hosts: ["host1", "host2"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment