Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ public static long estimatedHeapSizeOf(final Cell cell) {
* @param length
* @return iterator for the tags
* @deprecated As of 2.0.0 and will be removed in 3.0.0
* Instead use {@link #tagsIterator(Cell)}
* Instead use {@link PrivateCellUtil#tagsIterator(Cell)}
*/
@Deprecated
public static Iterator<Tag> tagsIterator(final byte[] tags, final int offset, final int length) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -800,9 +800,8 @@ private void runIncrementalPELoad(Configuration conf, List<HFileOutputFormat2.Ta
}

/**
* Test for {@link HFileOutputFormat2#configureCompression(Configuration, HTableDescriptor)} and
* {@link HFileOutputFormat2#createFamilyCompressionMap(Configuration)}.
* Tests that the compression map is correctly serialized into
* Test for {@link HFileOutputFormat2#createFamilyCompressionMap(Configuration)}.
* Tests that the family compression map is correctly serialized into
* and deserialized from configuration
*
* @throws IOException
Expand Down Expand Up @@ -872,9 +871,8 @@ private void setupMockColumnFamiliesForCompression(Table table,


/**
* Test for {@link HFileOutputFormat2#configureBloomType(HTableDescriptor, Configuration)} and
* {@link HFileOutputFormat2#createFamilyBloomTypeMap(Configuration)}.
* Tests that the compression map is correctly serialized into
* Test for {@link HFileOutputFormat2#createFamilyBloomTypeMap(Configuration)}.
* Tests that the family bloom type map is correctly serialized into
* and deserialized from configuration
*
* @throws IOException
Expand Down Expand Up @@ -943,9 +941,8 @@ private void setupMockColumnFamiliesForBloomType(Table table,
}

/**
* Test for {@link HFileOutputFormat2#configureBlockSize(HTableDescriptor, Configuration)} and
* {@link HFileOutputFormat2#createFamilyBlockSizeMap(Configuration)}.
* Tests that the compression map is correctly serialized into
* Test for {@link HFileOutputFormat2#createFamilyBlockSizeMap(Configuration)}.
* Tests that the family block size map is correctly serialized into
* and deserialized from configuration
*
* @throws IOException
Expand Down Expand Up @@ -1020,9 +1017,8 @@ private void setupMockColumnFamiliesForBlockSize(Table table,
}

/**
* Test for {@link HFileOutputFormat2#configureDataBlockEncoding(HTableDescriptor, Configuration)}
* and {@link HFileOutputFormat2#createFamilyDataBlockEncodingMap(Configuration)}.
* Tests that the compression map is correctly serialized into
* Test for {@link HFileOutputFormat2#createFamilyDataBlockEncodingMap(Configuration)}.
* Tests that the family data block encoding map is correctly serialized into
* and deserialized from configuration
*
* @throws IOException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
import org.apache.hadoop.hbase.executor.EventType;
import org.apache.hadoop.hbase.procedure2.Procedure;
import org.apache.hadoop.hbase.regionserver.HRegion;
import org.apache.hadoop.hbase.regionserver.Region;
import org.apache.hadoop.hbase.regionserver.RegionServerServices;
import org.apache.hadoop.hbase.regionserver.RegionServerServices.PostOpenDeployContext;
import org.apache.hadoop.hbase.regionserver.RegionServerServices.RegionStateTransitionContext;
Expand Down Expand Up @@ -224,7 +223,8 @@ private boolean updateMeta(final HRegion r, long masterSystemTime) {

/**
* Thread to run region post open tasks. Call {@link #getException()} after the thread finishes
* to check for exceptions running {@link RegionServerServices#postOpenDeployTasks(Region)}.
* to check for exceptions running
* {@link RegionServerServices#postOpenDeployTasks(PostOpenDeployContext)}
*/
static class PostOpenDeployTasksThread extends Thread {
private Throwable exception = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,8 @@ public class TestStoreScanner {
/**
* From here on down, we have a bunch of defines and specific CELL_GRID of Cells. The
* CELL_GRID then has a Scanner that can fake out 'block' transitions. All this elaborate
* setup is for tests that ensure we don't overread, and that the
* {@link StoreScanner#optimize(org.apache.hadoop.hbase.regionserver.querymatcher.ScanQueryMatcher.MatchCode,
* Cell)} is not overly enthusiastic.
* setup is for tests that ensure we don't overread, and that the {@link StoreScanner} is not
* overly enthusiastic.
*/
private static final byte[] ZERO = new byte[] {'0'};
private static final byte[] ZERO_POINT_ZERO = new byte[] {'0', '.', '0'};
Expand Down