This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.mycompany.elasticsearch.problem; | |
| public class MyType { | |
| private String oneProperty; | |
| private long otherProperty; | |
| public String getOneProperty() { | |
| return oneProperty; | |
| } | |
| public void setOneProperty(String oneProperty) { | |
| this.oneProperty = oneProperty; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class DocProperty { | |
| private String undesiredProperty; | |
| private long otherUndesiredProperty; | |
| private String name; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Map<String,String> settings = new HashMap<String,String>(); | |
| settings.put("node.client","true"); | |
| settings.put("cluster.name","mycluster"); | |
| final NodeBuilder nodeBuilder = NodeBuilder.nodeBuilder(); | |
| nodeBuilder.getSettings().put(settings); | |
| node = nodeBuilder.node(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [2012-01-25 09:26:35,733][WARN ][bootstrap ] jvm uses the client vm, make sure to run `java` with the server vm for best performance by adding `-server` to the command line | |
| [2012-01-25 09:26:35,735][INFO ][node ] [Aardwolf] {0.18.7}[6784]: initializing ... | |
| [2012-01-25 09:26:35,738][INFO ][plugins ] [Aardwolf] loaded [], sites [] | |
| [2012-01-25 09:26:36,940][INFO ][node ] [Aardwolf] {0.18.7}[6784]: initialized | |
| [2012-01-25 09:26:36,940][INFO ][node ] [Aardwolf] {0.18.7}[6784]: starting ... | |
| [2012-01-25 09:26:36,998][INFO ][transport ] [Aardwolf] bound_address {inet[/10.0.0.5:9300]}, publish_address {inet[/10.0.0.5:9300]} | |
| [2012-01-25 09:26:40,080][INFO ][cluster.service ] [Aardwolf] new_master [Aardwolf][FEuGnJuuScirVXqmtZ8NwA][inet[/10.0.0.5:9300]], reason: zen-disco-join (elected_as_master) | |
| [2012-01-25 09:26:40,190][INFO ][discovery ] [Aardwolf] mycluster/FEuGnJuuScirVXqmtZ8NwA | |
| [2012-0 |
NewerOlder