This is an automated email from the ASF dual-hosted git repository.

guluo2016 pushed a commit to branch branch-3
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-3 by this push:
     new b21a632da9a HBASE-30235 Fix Javadoc syntax errors (#8376)
b21a632da9a is described below

commit b21a632da9aa4f4f94c331f0a5b04ac775b497e6
Author: Gianmarco <[email protected]>
AuthorDate: Thu Jun 25 13:55:43 2026 +0200

    HBASE-30235 Fix Javadoc syntax errors (#8376)
    
    Signed-off-by: Dávid Paksy <[email protected]>
    Signed-off-by: Pankaj Kumar <[email protected]>
    Reviewed-by: Liu Xiao <[email protected]>
    Signed-off-by: Peng Lu <[email protected]>
---
 .../apache/hadoop/hbase/mapreduce/RoundRobinTableInputFormat.java | 4 +++-
 .../org/apache/hadoop/hbase/io/hfile/LruAdaptiveBlockCache.java   | 6 +++---
 .../main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java | 6 +++---
 .../java/org/apache/hadoop/hbase/regionserver/MemStoreSizing.java | 8 ++++----
 4 files changed, 13 insertions(+), 11 deletions(-)

diff --git 
a/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/RoundRobinTableInputFormat.java
 
b/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/RoundRobinTableInputFormat.java
index 81eacb44099..51a02b63722 100644
--- 
a/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/RoundRobinTableInputFormat.java
+++ 
b/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/RoundRobinTableInputFormat.java
@@ -43,7 +43,9 @@ import org.apache.yetus.audience.InterfaceAudience;
  * host few or none. This class does a pass over the return from the 
super-class to better spread
  * the load. See the below helpful Flipkart blog post for a description and 
from where the base of
  * this code comes from (with permission).
- * @see 
https://tech.flipkart.com/is-data-locality-always-out-of-the-box-in-hadoop-not-really-2ae9c95163cb
+ * @see <a href=
+ *      
"https://tech.flipkart.com/is-data-locality-always-out-of-the-box-in-hadoop-not-really-2ae9c95163cb";>
+ *      Is data locality always out of the box in Hadoop? Not really</a>
  */
 @InterfaceAudience.Public
 public class RoundRobinTableInputFormat extends TableInputFormat {
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruAdaptiveBlockCache.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruAdaptiveBlockCache.java
index 87932074bff..8ec402d7fc0 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruAdaptiveBlockCache.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruAdaptiveBlockCache.java
@@ -147,7 +147,7 @@ public class LruAdaptiveBlockCache implements 
FirstLevelBlockCache {
   private static final String LRU_MIN_FACTOR_CONFIG_NAME = 
"hbase.lru.blockcache.min.factor";
 
   /**
-   * Acceptable size of cache (no evictions if size < acceptable)
+   * Acceptable size of cache (no evictions if {@code size < acceptable})
    */
   private static final String LRU_ACCEPTABLE_FACTOR_CONFIG_NAME =
     "hbase.lru.blockcache.acceptable.factor";
@@ -264,10 +264,10 @@ public class LruAdaptiveBlockCache implements 
FirstLevelBlockCache {
   /** Approximate block size */
   private final long blockSize;
 
-  /** Acceptable size of cache (no evictions if size < acceptable) */
+  /** Acceptable size of cache (no evictions if {@code size < acceptable}) */
   private final float acceptableFactor;
 
-  /** Minimum threshold of cache (when evicting, evict until size < min) */
+  /** Minimum threshold of cache (when evicting, evict until {@code size < 
min}) */
   private final float minFactor;
 
   /** Single access bucket size */
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java
index 1e6205c58e5..66c0f2fd74a 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java
@@ -98,7 +98,7 @@ public class LruBlockCache implements FirstLevelBlockCache {
   private static final String LRU_MIN_FACTOR_CONFIG_NAME = 
"hbase.lru.blockcache.min.factor";
 
   /**
-   * Acceptable size of cache (no evictions if size < acceptable)
+   * Acceptable size of cache (no evictions if {@code size < acceptable})
    */
   private static final String LRU_ACCEPTABLE_FACTOR_CONFIG_NAME =
     "hbase.lru.blockcache.acceptable.factor";
@@ -213,10 +213,10 @@ public class LruBlockCache implements 
FirstLevelBlockCache {
   /** Approximate block size */
   private long blockSize;
 
-  /** Acceptable size of cache (no evictions if size < acceptable) */
+  /** Acceptable size of cache (no evictions if {@code size < acceptable}) */
   private float acceptableFactor;
 
-  /** Minimum threshold of cache (when evicting, evict until size < min) */
+  /** Minimum threshold of cache (when evicting, evict until {@code size < 
min}) */
   private float minFactor;
 
   /** Single access bucket size */
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreSizing.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreSizing.java
index 3d05fc942ee..74d2f7cf058 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreSizing.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MemStoreSizing.java
@@ -32,17 +32,17 @@ import org.apache.yetus.audience.InterfaceAudience;
  * 3 examples to illustrate their usage:
  * <p>
  * Consider a store with 100MB of key-values allocated on-heap and 20MB of 
metadata allocated
- * on-heap. The counters are <100MB, 120MB, 0>, respectively.
+ * on-heap. The counters are {@code <100MB, 120MB, 0>}, respectively.
  * </p>
  * <p>
  * Consider a store with 100MB of key-values allocated off-heap and 20MB of 
metadata allocated
- * on-heap (e.g, CAM index). The counters are <100MB, 20MB, 100MB>, 
respectively.
+ * on-heap (e.g, CAM index). The counters are {@code <100MB, 20MB, 100MB>}, 
respectively.
  * </p>
  * <p>
  * Consider a store with 100MB of key-values from which 95MB are allocated 
off-heap and 5MB are
  * allocated on-heap (e.g., due to upserts) and 20MB of metadata from which 
15MB allocated off-heap
- * (e.g, CCM index) and 5MB allocated on-heap (e.g, CSLM index in active). The 
counters are <100MB,
- * 10MB, 110MB>, respectively.
+ * (e.g, CCM index) and 5MB allocated on-heap (e.g, CSLM index in active). The 
counters are
+ * {@code <100MB, 10MB, 110MB>}, respectively.
  * </p>
  * Like {@link TimeRangeTracker}, it has thread-safe and non-thread-safe 
implementations.
  */

Reply via email to