*/
public static Map<String, Object> toMap(ToXContent toXContent) throws IOException {
XContentBuilder builder = XContentFactory.contentBuilder(XContentType.JSON);
toXContent.toXContent(builder, ToXContent.EMPTY_PARAMS);
return XContentFactory.xContent(XContentType.JSON).createParser(
builder.string()).mapOrderedAndClose();
}
/**
* Set up a second node and wait for green status
*/