Skip to content

Instantly share code, notes, and snippets.

[2013-02-07 18:55:51,931][DEBUG][gateway.local ] [Valkyrie] [i14][28]: forcing allocating [[i14][28], node[null], [P], s[UNASSIGNED]] to [[Firepower][Mf9jtX8xQ-aGggLuOGqsiQ][inet[/10.5.124.110:9300]]] on primary allocation
[2013-02-07 18:55:51,934][DEBUG][gateway.local ] [Valkyrie] [i14][31]: forcing allocating [[i14][31], node[null], [P], s[UNASSIGNED]] to [[Firepower][Mf9jtX8xQ-aGggLuOGqsiQ][inet[/10.5.124.110:9300]]] on primary allocation
[2013-02-07 18:55:51,937][DEBUG][gateway.local ] [Valkyrie] [i15][0]: forcing allocating [[i15][0], node[null], [P], s[UNASSIGNED]] to [[Firepower][Mf9jtX8xQ-aGggLuOGqsiQ][inet[/10.5.124.110:9300]]] on primary allocation
[2013-02-07 18:55:51,940][DEBUG][gateway.local ] [Valkyrie] [i15][2]: forcing allocating [[i15][2], node[null], [P], s[UNASSIGNED]] to [[Grey, Nate][S-KBjvWvQneQesLO8zGRCw][inet[/10.5.120.45:9300]]] on primary allocation
[2013-02-07 18:55:51,943][DEBUG][gateway.local ] [Valkyrie] [i15][3]: forcing all
@artaa
artaa / hs_err_pid19177.log
Created February 8, 2013 05:10
elasticsearch 0.20.4
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00002aaaab6ec094, pid=19177, tid=1074166080
#
# JRE version: 7.0_13-b20
# Java VM: Java HotSpot(TM) 64-Bit Server VM (23.7-b01 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# J org.elasticsearch.common.trove.map.hash.TObjectIntHashMap.put(Ljava/lang/Object;I)I
#
@artaa
artaa / hs_err_pid12759.log
Created February 8, 2013 05:08
elasticsearch crash dump 0.20.4
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00002aaaab6b8f07, pid=12759, tid=1157581120
#
# JRE version: 7.0_13-b20
# Java VM: Java HotSpot(TM) 64-Bit Server VM (23.7-b01 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# J org.elasticsearch.common.trove.impl.hash.TObjectHash.insertKey(Ljava/lang/Object;)I
#
@artaa
artaa / gist:1502438
Created December 20, 2011 17:38
no search hits after disabling _all field
Came from: http://elasticsearch-users.115913.n3.nabble.com/Elastic-Search-Query-td3535843.html
$ curl -XDELETE 'http://localhost:9200/topic1/'
{"ok":true,"acknowledged":true}
$ curl -XPUT 'http://localhost:9200/topic1/'
{"ok":true,"acknowledged":true}
$ curl -XPUT 'http://localhost:9200/topic1/DefaultType/_mapping' -d '{ "DefaultType" : { "properties": { "content": { "type": "string" }, "time_modified": { "type": "date" } }, "_all": { "enabled": false }, "_source": { "compress": true } } }'
{"ok":true,"acknowledged":true}