Tabnine Logo
ClusterStatusProtos$RegionLoad$Builder.setCompleteSequenceId
Code IndexAdd Tabnine to your IDE (free)

How to use
setCompleteSequenceId
method
in
org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterStatusProtos$RegionLoad$Builder

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

origin: apache/hbase

RegionLoad.Builder setCompleteSequenceId(RegionLoad.Builder regionLoadBldr) {
 long lastFlushOpSeqIdLocal = this.lastFlushOpSeqId;
 byte[] encodedRegionName = this.getRegionInfo().getEncodedNameAsBytes();
 regionLoadBldr.clearStoreCompleteSequenceId();
 for (byte[] familyName : this.stores.keySet()) {
  long earliest = this.wal.getEarliestMemStoreSeqNum(encodedRegionName, familyName);
  // Subtract - 1 to go earlier than the current oldest, unflushed edit in memstore; this will
  // give us a sequence id that is for sure flushed. We want edit replay to start after this
  // sequence id in this region. If NO_SEQNUM, use the regions maximum flush id.
  long csid = (earliest == HConstants.NO_SEQNUM)? lastFlushOpSeqIdLocal: earliest - 1;
  regionLoadBldr.addStoreCompleteSequenceId(StoreSequenceId.newBuilder()
    .setFamilyName(UnsafeByteOperations.unsafeWrap(familyName)).setSequenceId(csid).build());
 }
 return regionLoadBldr.setCompleteSequenceId(getMaxFlushedSeqId());
}
origin: apache/hbase

setCompleteSequenceId(other.getCompleteSequenceId());
origin: org.apache.hbase/hbase-protocol-shaded

setCompleteSequenceId(other.getCompleteSequenceId());
origin: com.aliyun.hbase/alihbase-client

.setCurrentCompactedKVs(regionMetrics.getCompactedCellCount())
.setTotalCompactingKVs(regionMetrics.getCompactingCellCount())
.setCompleteSequenceId(regionMetrics.getCompletedSequenceId())
.setDataLocality(regionMetrics.getDataLocality())
.setFilteredReadRequestsCount(regionMetrics.getFilteredReadRequestCount())
origin: org.apache.hbase/hbase-client

.setCurrentCompactedKVs(regionMetrics.getCompactedCellCount())
.setTotalCompactingKVs(regionMetrics.getCompactingCellCount())
.setCompleteSequenceId(regionMetrics.getCompletedSequenceId())
.setDataLocality(regionMetrics.getDataLocality())
.setFilteredReadRequestsCount(regionMetrics.getFilteredReadRequestCount())
origin: apache/hbase

.setCurrentCompactedKVs(regionMetrics.getCompactedCellCount())
.setTotalCompactingKVs(regionMetrics.getCompactingCellCount())
.setCompleteSequenceId(regionMetrics.getCompletedSequenceId())
.setDataLocality(regionMetrics.getDataLocality())
.setFilteredReadRequestsCount(regionMetrics.getFilteredReadRequestCount())
org.apache.hadoop.hbase.shaded.protobuf.generatedClusterStatusProtos$RegionLoad$BuildersetCompleteSequenceId

Javadoc

 
the most recent sequence Id from cache flush  
optional uint64 complete_sequence_id = 15;

Popular methods of ClusterStatusProtos$RegionLoad$Builder

  • build
  • setFilteredReadRequestsCount
    the current total filtered read requests made to region optional uint64 filtered_read_requests
  • setReadRequestsCount
    the current total read requests made to region optional uint64 read_requests_count = 8;
  • setRootIndexSizeKB
    The current total size of root-level indexes for the region, in KB. optional uint32 root_index
  • setStoreUncompressedSizeMB
    the total size of the store files for the region, uncompressed, in MB optional uint32 store_un
  • setStorefileIndexSizeKB
    The current total size of root-level store file indexes for the region, in KB. The same as {@link
  • setStorefileSizeMB
    the current total size of the store files for the region, in MB optional uint32 storefile_size
  • setStorefiles
    the number of storefiles for the region optional uint32 storefiles = 3;
  • setStores
    the number of stores for the region optional uint32 stores = 2;
  • setWriteRequestsCount
    the current total write requests made to region optional uint64 write_requests_count = 9;
  • setCpRequestsCount
    the current total coprocessor requests made to region optional uint64 cp_requests_count = 20;
  • setCurrentCompactedKVs
    the completed count of key values in currently running compaction optional uint64 current_comp
  • setCpRequestsCount,
  • setCurrentCompactedKVs,
  • setDataLocality,
  • setLastMajorCompactionTs,
  • setMemStoreSizeMB,
  • setRegionSpecifier,
  • setTotalCompactingKVs,
  • setTotalStaticBloomSizeKB,
  • setTotalStaticIndexSizeKB

Popular in Java

  • Finding current android device location
  • getExternalFilesDir (Context)
  • setContentView (Activity)
  • getSystemService (Context)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • JFrame (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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