Package com.aerospike.client.command

Source Code of com.aerospike.client.command.BatchNode$BatchNamespace

/*
* Aerospike Client - Java Library
*
* Copyright 2012 by Aerospike, Inc. All rights reserved.
*
* Availability of this source code to partners and customers includes
* redistribution rights covered by individual contract. Please check your
* contract for exact rights and responsibilities.
*/
package com.aerospike.client.command;

import java.util.ArrayList;
import java.util.List;

import com.aerospike.client.AerospikeException;
import com.aerospike.client.Key;
import com.aerospike.client.cluster.Cluster;
import com.aerospike.client.cluster.Node;
import com.aerospike.client.cluster.Partition;

public final class BatchNode {
 
  public static List<BatchNode> generateList(Cluster cluster, Key[] keys) throws AerospikeException {
       
    int nodeCount = cluster.getNodes().length;
    int keysPerNode = keys.length / nodeCount + 10;

    // Split keys by server node.
    List<BatchNode> batchNodes = new ArrayList<BatchNode>(nodeCount+1);
       
    for (int i = 0; i < keys.length; i++) {
      Key key = keys[i];
      Partition partition = new Partition(key);     
      BatchNode batchNode;
     
      Node node = cluster.getNode(partition);
      batchNode = findBatchNode(batchNodes, node);
     
      if (batchNode == null) {
        batchNodes.add(new BatchNode(node, keysPerNode, key));
      }
      else {
        batchNode.addKey(key);
      }
    }
    return batchNodes;
  }

  public final Node node;
  public final List<BatchNamespace> batchNamespaces;
  public final int keyCapacity;

  public BatchNode(Node node, int keyCapacity, Key key) {
    this.node = node;
    this.keyCapacity = keyCapacity;
    batchNamespaces = new ArrayList<BatchNamespace>(4);
    batchNamespaces.add(new BatchNamespace(key.namespace, keyCapacity, key));
  }
 
  public void addKey(Key key) {
    BatchNamespace batchNamespace = findNamespace(key.namespace);
   
    if (batchNamespace == null) {
      batchNamespaces.add(new BatchNamespace(key.namespace, keyCapacity, key));
    }
    else {
      batchNamespace.keys.add(key);
    }
  }
 
  private BatchNamespace findNamespace(String ns) {
    for (BatchNamespace batchNamespace : batchNamespaces) {
      // Note: use both pointer equality and equals.
      if (batchNamespace.namespace == ns || batchNamespace.namespace.equals(ns)) {
        return batchNamespace;
      }
    }
    return null;
  }

  private static BatchNode findBatchNode(List<BatchNode> nodes, Node node) {
    for (BatchNode batchNode : nodes) {
      // Note: using pointer equality for performance.
      if (batchNode.node == node) {
        return batchNode;
      }
    }
    return null;
  }

  public static final class BatchNamespace {
    public final String namespace;
    public final ArrayList<Key> keys;

    public BatchNamespace(String namespace, int capacity, Key key) {
      this.namespace = namespace;
      keys = new ArrayList<Key>(capacity);
      keys.add(key);
    }
  } 
}
TOP

Related Classes of com.aerospike.client.command.BatchNode$BatchNamespace

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.