Package org.apache.accumulo.core.client.mock.impl

Examples of org.apache.accumulo.core.client.mock.impl.MockTabletLocator


   * @since 1.6.0
   */
  public static TabletLocator getTabletLocator(Class<?> implementingClass, Configuration conf, String tableId) throws TableNotFoundException {
    String instanceType = conf.get(enumToConfKey(implementingClass, InstanceOpts.TYPE));
    if ("MockInstance".equals(instanceType))
      return new MockTabletLocator();
    Instance instance = getInstance(implementingClass, conf);
    return TabletLocator.getLocator(instance, new Text(tableId));
  }
View Full Code Here


   * @since 1.6.0
   */
  public static TabletLocator getTabletLocator(Class<?> implementingClass, Configuration conf, String tableId) throws TableNotFoundException {
    String instanceType = conf.get(enumToConfKey(implementingClass, InstanceOpts.TYPE));
    if ("MockInstance".equals(instanceType))
      return new MockTabletLocator();
    Instance instance = getInstance(implementingClass, conf);
    return TabletLocator.getLocator(instance, new Text(tableId));
  }
View Full Code Here

TOP

Related Classes of org.apache.accumulo.core.client.mock.impl.MockTabletLocator

Copyright © 2018 www.massapicom. 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.