HBASE-22603 Javadoc Warnings related to @link tag
Signed-off-by: Jan Hentschel <jan.hentschel@ultratendency.com>
This commit is contained in:
parent
78edb1e17f
commit
6a46e071c5
|
@ -787,9 +787,8 @@ public class TestHFileOutputFormat2 {
|
|||
}
|
||||
|
||||
/**
|
||||
* 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
|
||||
|
@ -859,9 +858,8 @@ public class TestHFileOutputFormat2 {
|
|||
|
||||
|
||||
/**
|
||||
* 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
|
||||
|
@ -930,9 +928,8 @@ public class TestHFileOutputFormat2 {
|
|||
}
|
||||
|
||||
/**
|
||||
* 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
|
||||
|
@ -1007,9 +1004,8 @@ public class TestHFileOutputFormat2 {
|
|||
}
|
||||
|
||||
/**
|
||||
* 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
|
||||
|
|
|
@ -28,7 +28,6 @@ import org.apache.hadoop.hbase.client.TableDescriptor;
|
|||
import org.apache.hadoop.hbase.executor.EventHandler;
|
||||
import org.apache.hadoop.hbase.executor.EventType;
|
||||
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;
|
||||
|
@ -221,7 +220,8 @@ public class OpenRegionHandler extends EventHandler {
|
|||
|
||||
/**
|
||||
* 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;
|
||||
|
|
|
@ -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'};
|
||||
|
|
Loading…
Reference in New Issue