Package org.openstreetmap.osmosis.plugin.elasticsearch.service

Examples of org.openstreetmap.osmosis.plugin.elasticsearch.service.IndexAdminService.createIndex()


    Parameters params = new Parameters.Builder().loadResource("plugin.properties").build();
    IndexAdminService indexAdminService = new IndexAdminService(client());
    HashMap<String, String> mappings = new HashMap<String, String>();
    mappings.put(ESEntityType.NODE.getIndiceName(), params.getProperty(Parameters.INDEX_MAPPING_NODE));
    mappings.put(ESEntityType.WAY.getIndiceName(), params.getProperty(Parameters.INDEX_MAPPING_WAY));
    indexAdminService.createIndex(INDEX_NAME, 1, 0, mappings);
  }

  /* save */

  @Test
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.