Class LoadIncrementalHFiles.LoadQueueItem

java.lang.Object
org.apache.hadoop.hbase.tool.BulkLoadHFiles.LoadQueueItem
org.apache.hadoop.hbase.tool.LoadIncrementalHFiles.LoadQueueItem
Direct Known Subclasses:
LoadIncrementalHFiles.LoadQueueItem
Enclosing class:
LoadIncrementalHFiles

Deprecated.
since 2.2.0 and will be removed in 3.0.0. Use BulkLoadHFiles instead.
Represents an HFile waiting to be loaded. An queue is used in this class in order to support the case where a region has split during the process of the load. When this happens, the HFile is split into two physical parts across the new region boundary, and each part is added back into the queue. The import process finishes when the queue is empty.
See Also:
  • Constructor Details

    • LoadQueueItem

      public LoadQueueItem(byte[] family, org.apache.hadoop.fs.Path hfilePath)
      Deprecated.