Package com.orientechnologies.orient.test.database

Source Code of com.orientechnologies.orient.test.database.TestOrientBulkInsert

package com.orientechnologies.orient.test.database;

import com.orientechnologies.orient.core.config.OGlobalConfiguration;
import com.orientechnologies.orient.core.db.document.ODatabaseDocumentTx;
import com.orientechnologies.orient.core.intent.OIntentMassiveInsert;
import com.orientechnologies.orient.core.metadata.schema.OClass;
import com.orientechnologies.orient.core.metadata.schema.OClass.INDEX_TYPE;
import com.orientechnologies.orient.core.metadata.schema.OProperty;
import com.orientechnologies.orient.core.metadata.schema.OSchema;
import com.orientechnologies.orient.core.metadata.schema.OType;
import com.orientechnologies.orient.core.record.impl.ODocument;
import org.testng.annotations.Test;

import java.util.HashMap;
import java.util.Map;
import java.util.Random;

public class TestOrientBulkInsert {

  private static int NUM_INSERTLOOPS = 30000;

  @Test
  public static void main(String[] args) throws Exception {
    new TestOrientBulkInsert();
  }

  public TestOrientBulkInsert() throws InterruptedException {
    // FIXME Eric_08.05.2013
    // Mit der 1.3 von Orientdb gab es Memory Leak probleme beim inserten der Photos
    // Mit den folgenden Parametern und dem Aufruf von
    // this.dbWrapper.setMassiveInserts();
    // wurde es besser aber immer noch nicht 100%
    //
    OGlobalConfiguration.CACHE_LOCAL_ENABLED.setValue(false); // Turn off cache

    OGlobalConfiguration.INDEX_AUTO_LAZY_UPDATES.setValue(0); // Turn off cache
    OGlobalConfiguration.INDEX_MANUAL_LAZY_UPDATES.setValue(0);

    OGlobalConfiguration.TX_USE_LOG.setValue(false);

    Map defaultsMap = new HashMap<String, Object>();
    defaultsMap.put("mvrbtree.lazyUpdates", 1);
    defaultsMap.put("index.auto.lazyUpdates", 1);
    defaultsMap.put("index.manual.lazyUpdates", 1);
    defaultsMap.put("index.auto.rebuildAfterNotSoftClose", false);

    OGlobalConfiguration.setConfiguration(defaultsMap);

    ODatabaseDocumentTx database = new ODatabaseDocumentTx("plocal:/temp/databases/bulktest");
    if (database.exists())
      database.open("admin", "admin").drop();

    database.create();

    OSchema schema = database.getMetadata().getSchema();

    OClass cBulk = schema.createClass("classBulk", database.addCluster("cluster_bulk"));

    // Declare some fields
    for (int i = 1; i < 10; i++) {
      cBulk.createProperty("fieldString" + i, OType.STRING).setMandatory(true);
    }
    OProperty p2 = cBulk.createProperty("fieldBinary1", OType.BINARY).setMandatory(false);

    // Declare some Indexes
    cBulk.createIndex("indexField1", INDEX_TYPE.NOTUNIQUE, "fieldString1");
    cBulk.createIndex("indexField2", INDEX_TYPE.UNIQUE, "fieldString2");
    cBulk.createIndex("indexField3", INDEX_TYPE.DICTIONARY, "fieldString3");

    database.declareIntent(new OIntentMassiveInsert());

    for (int i = 0; i < NUM_INSERTLOOPS; i++) {
      database.save(createRandomDocument());

      if (i % 1000 == 0) {
        System.out.println("Instert document:" + i);
      }

      // Slow duration of test down to 5 Minutes
      // Comment next line for faster execution
      // Thread.sleep(1000*60*5 / NUM_INSERTLOOPS);
    }

    database.close();

    do {
      // gives us time to analyse....
      System.gc();
      Thread.sleep(10000);
    } while (true);
  }

  private ODocument createRandomDocument() {
    ODocument document = new ODocument("classBulk");

    for (int i = 1; i < 10; i++) {
      document.field("fieldString" + i, getRandomText(50));
    }
    document.field("fieldBinary1", new byte[1024]);
    return document;
  }

  static final String AB      = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  static Random       rnd     = new Random();
  static int          counter = 0;

  private String getRandomText(int len) {

    StringBuilder sb = new StringBuilder(len);
    for (int i = 0; i < len; i++) {
      sb.append(AB.charAt(rnd.nextInt(AB.length())));
    }
    String s = sb.toString() + " - " + (++counter);
    return s;
  }

}
TOP

Related Classes of com.orientechnologies.orient.test.database.TestOrientBulkInsert

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.