Examples of recreateIndex()


Examples of de.komoot.photon.importer.elasticsearch.Server.recreateIndex()

    esServer.start();

    Client esNodeClient = esServer.getClient();

    if(args.isDeleteIndex()) {
      esServer.recreateIndex();
      log.info("deleted photon index and created an empty new one.");
      return;
    }

    if(args.isNominatimImport()) {
View Full Code Here

Examples of de.komoot.photon.importer.elasticsearch.Server.recreateIndex()

      log.info("deleted photon index and created an empty new one.");
      return;
    }

    if(args.isNominatimImport()) {
      esServer.recreateIndex(); // dump previous data
      Importer importer = new Importer(esNodeClient);
      NominatimConnector nominatimConnector = new NominatimConnector(args.getHost(), args.getPort(), args.getDatabase(), args.getUser(), args.getPassword());
      nominatimConnector.setImporter(importer);
      nominatimConnector.readEntireDatabase();
      log.info("imported data from nominatim to photon.");
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.