Examples of AsyncIface


Examples of org.apache.blur.thrift.generated.Blur.AsyncIface

      int count = 0;
      int max = 1000;
      long start = System.currentTimeMillis();
      final String table = "test1";
      AsyncClientPool pool = new AsyncClientPool();
      AsyncIface client = pool.getClient(Blur.AsyncIface.class, args[0]);
      for (int i = 0; i < numberRows; i++) {
        if (count >= max) {
          double seconds = (System.currentTimeMillis() - start) / 1000.0;
          double rate = i / seconds;
          System.out.println("Rows indexed [" + i + "] at [" + rate + "/s]");
          count = 0;
        }
        client.mutate(getRowMutation(i, table, wal, numberRecordsPerRow, numberOfColumns, numberOfFamilies, numberOfWords),
            new AsyncMethodCallback<Blur.AsyncClient.mutate_call>() {
              @Override
              public void onError(Exception exception) {
                exception.printStackTrace();
              }
View Full Code Here

Examples of org.apache.blur.thrift.generated.Blur.AsyncIface

    int count = 0;
    int max = 100;
    long start = System.currentTimeMillis();
    final String table = "test-table";
    AsyncClientPool pool = new AsyncClientPool();
    AsyncIface client = pool.getClient(Blur.AsyncIface.class, args[0]);
    for (int i = 0; i < numberRows; i++) {
      if (count >= max) {
        double seconds = (System.currentTimeMillis() - start) / 1000.0;
        double rate = i / seconds;
        System.out.println("Rows indexed [" + i + "] at [" + rate + "/s]");
        count = 0;
      }
      client.mutate(getRowMutation(table, wal, numberRecordsPerRow, numberOfColumns, numberOfFamilies, numberOfWords), new AsyncMethodCallback<Blur.AsyncClient.mutate_call>() {
        @Override
        public void onError(Exception exception) {

        }
View Full Code Here

Examples of org.apache.blur.thrift.generated.Blur.AsyncIface

    String tableName = args[1];
    String queryStr = args[2];

    AsyncClientPool pool = new AsyncClientPool(10, 30000);

    AsyncIface asyncIface = pool.getClient(Blur.AsyncIface.class, connectionStr);

    final BlurQuery blurQuery = new BlurQuery();
    Query query = new Query();
    query.setQuery(queryStr);
    blurQuery.setQuery(query);

    asyncIface.query(tableName, blurQuery, new AsyncMethodCallback<Blur.AsyncClient.query_call>() {
      @Override
      public void onError(Exception exception) {
        exception.printStackTrace();
      }
View Full Code Here

Examples of org.apache.blur.thrift.generated.Blur.AsyncIface

      int count = 0;
      int max = 1000;
      long start = System.currentTimeMillis();
      final String table = "test1";
      AsyncClientPool pool = new AsyncClientPool();
      AsyncIface client = pool.getClient(Blur.AsyncIface.class, args[0]);
      for (int i = 0; i < numberRows; i++) {
        if (count >= max) {
          double seconds = (System.currentTimeMillis() - start) / 1000.0;
          double rate = i / seconds;
          System.out.println("Rows indexed [" + i + "] at [" + rate + "/s]");
          count = 0;
        }
        client.mutate(getRowMutation(i, table, wal, numberRecordsPerRow, numberOfColumns, numberOfFamilies, numberOfWords),
            new AsyncMethodCallback<Blur.AsyncClient.mutate_call>() {
              @Override
              public void onError(Exception exception) {
                exception.printStackTrace();
              }
View Full Code Here

Examples of org.apache.blur.thrift.generated.Blur.AsyncIface

    int count = 0;
    int max = 1000;
    long start = System.currentTimeMillis();
    final String table = "test";
    AsyncClientPool pool = new AsyncClientPool();
    AsyncIface client = pool.getClient(Blur.AsyncIface.class, args[0]);
    for (int i = 0; i < numberRows; i++) {
      if (count >= max) {
        double seconds = (System.currentTimeMillis() - start) / 1000.0;
        double rate = i / seconds;
        System.out.println("Rows indexed [" + i + "] at [" + rate + "/s]");
        count = 0;
      }
      client.enqueueMutate(
          getRowMutation(table, numberRecordsPerRow, numberOfColumns, numberOfFamilies, numberOfWords),
          new AsyncMethodCallback<Blur.AsyncClient.enqueueMutate_call>() {
            @Override
            public void onError(Exception exception) {
View Full Code Here

Examples of org.apache.blur.thrift.generated.Blur.AsyncIface

    int count = 0;
    int max = 100;
    long start = System.currentTimeMillis();
    final String table = "test-table";
    AsyncClientPool pool = new AsyncClientPool();
    AsyncIface client = pool.getClient(Blur.AsyncIface.class, args[0]);
    for (int i = 0; i < numberRows; i++) {
      if (count >= max) {
        double seconds = (System.currentTimeMillis() - start) / 1000.0;
        double rate = i / seconds;
        System.out.println("Rows indexed [" + i + "] at [" + rate + "/s]");
        count = 0;
      }
      client.mutate(getRowMutation(table, numberRecordsPerRow, numberOfColumns, numberOfFamilies, numberOfWords), new AsyncMethodCallback<Blur.AsyncClient.mutate_call>() {
        @Override
        public void onError(Exception exception) {

        }
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.