congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
WALProtos$BulkLoadDescriptor$Builder.setTableName
Code IndexAdd Tabnine to your IDE (free)

How to use
setTableName
method
in
org.apache.hadoop.hbase.shaded.protobuf.generated.WALProtos$BulkLoadDescriptor$Builder

Best Java code snippets using org.apache.hadoop.hbase.shaded.protobuf.generated.WALProtos$BulkLoadDescriptor$Builder.setTableName (Showing top 6 results out of 315)

origin: apache/hbase

BulkLoadDescriptor.Builder desc =
  BulkLoadDescriptor.newBuilder()
  .setTableName(ProtobufUtil.toProtoTableName(tableName))
  .setEncodedRegionName(encodedRegionName).setBulkloadSeqNum(bulkloadSeqId);
origin: apache/hbase

BulkLoadDescriptor.newBuilder().setTableName(bld.getTableName())
  .setEncodedRegionName(bld.getEncodedRegionName())
  .setBulkloadSeqNum(bld.getBulkloadSeqNum());
origin: org.apache.hbase/hbase-client

BulkLoadDescriptor.Builder desc =
  BulkLoadDescriptor.newBuilder()
  .setTableName(ProtobufUtil.toProtoTableName(tableName))
  .setEncodedRegionName(encodedRegionName).setBulkloadSeqNum(bulkloadSeqId);
origin: com.aliyun.hbase/alihbase-client

BulkLoadDescriptor.Builder desc =
  BulkLoadDescriptor.newBuilder()
  .setTableName(ProtobufUtil.toProtoTableName(tableName))
  .setEncodedRegionName(encodedRegionName).setBulkloadSeqNum(bulkloadSeqId);
origin: org.apache.hbase/hbase-server

@Test
public void testReplayingBulkLoadEventWithFileAlreadyDeleted() throws IOException {
 // tests replaying bulk load event marker, but the bulk load files have already been compacted
 // from primary and also deleted from the archive directory
 secondaryRegion.replayWALBulkLoadEventMarker(BulkLoadDescriptor.newBuilder()
  .setTableName(ProtobufUtil.toProtoTableName(primaryRegion.getTableDescriptor().getTableName()))
  .setEncodedRegionName(
    UnsafeByteOperations.unsafeWrap(primaryRegion.getRegionInfo().getEncodedNameAsBytes()))
  .setBulkloadSeqNum(Long.MAX_VALUE)
  .addStores(StoreDescriptor.newBuilder()
   .setFamilyName(UnsafeByteOperations.unsafeWrap(families[0]))
   .setStoreHomeDir("/store_home_dir")
   .addStoreFile("/123")
   .build())
  .build());
}
origin: apache/hbase

@Test
public void testReplayingBulkLoadEventWithFileAlreadyDeleted() throws IOException {
 // tests replaying bulk load event marker, but the bulk load files have already been compacted
 // from primary and also deleted from the archive directory
 secondaryRegion.replayWALBulkLoadEventMarker(BulkLoadDescriptor.newBuilder()
  .setTableName(ProtobufUtil.toProtoTableName(primaryRegion.getTableDescriptor().getTableName()))
  .setEncodedRegionName(
    UnsafeByteOperations.unsafeWrap(primaryRegion.getRegionInfo().getEncodedNameAsBytes()))
  .setBulkloadSeqNum(Long.MAX_VALUE)
  .addStores(StoreDescriptor.newBuilder()
   .setFamilyName(UnsafeByteOperations.unsafeWrap(families[0]))
   .setStoreHomeDir("/store_home_dir")
   .addStoreFile("/123")
   .build())
  .build());
}
org.apache.hadoop.hbase.shaded.protobuf.generatedWALProtos$BulkLoadDescriptor$BuildersetTableName

Javadoc

required .hbase.pb.TableName table_name = 1;

Popular methods of WALProtos$BulkLoadDescriptor$Builder

  • setBulkloadSeqNum
    required int64 bulkload_seq_num = 4;
  • setEncodedRegionName
    required bytes encoded_region_name = 2;
  • build
  • addStores
    repeated .hbase.pb.StoreDescriptor stores = 3;
  • <init>
  • addAllStores
    repeated .hbase.pb.StoreDescriptor stores = 3;
  • buildPartial
  • ensureStoresIsMutable
  • getParentForChildren
  • getStores
    repeated .hbase.pb.StoreDescriptor stores = 3;
  • getStoresCount
    repeated .hbase.pb.StoreDescriptor stores = 3;
  • getStoresFieldBuilder
  • getStoresCount,
  • getStoresFieldBuilder,
  • getTableName,
  • getTableNameFieldBuilder,
  • hasBulkloadSeqNum,
  • hasEncodedRegionName,
  • hasTableName,
  • isClean,
  • maybeForceBuilderInitialization

Popular in Java

  • Creating JSON documents from java classes using gson
  • addToBackStack (FragmentTransaction)
  • findViewById (Activity)
  • setRequestProperty (URLConnection)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now