This is an automated email from the ASF dual-hosted git repository.
paksyd 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 4f62126a406 HBASE-29515 Add deprecation cycle for SimpleRpcServer
(#7221)
4f62126a406 is described below
commit 4f62126a406c576c98d102a04adc8613f5cab318
Author: Dávid Paksy <[email protected]>
AuthorDate: Mon Aug 18 09:42:23 2025 +0200
HBASE-29515 Add deprecation cycle for SimpleRpcServer (#7221)
Signed-off-by: Duo Zhang <[email protected]>
Signed-off-by: Chandra Kambham <[email protected]>
(cherry picked from commit 643b161c1d7b11945dd71674a774fddaabc06424)
---
.../src/main/java/org/apache/hadoop/hbase/ipc/SimpleRpcServer.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/SimpleRpcServer.java
b/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/SimpleRpcServer.java
index cb157a592a9..65e2b699347 100644
---
a/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/SimpleRpcServer.java
+++
b/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/SimpleRpcServer.java
@@ -68,8 +68,9 @@ import
org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFacto
* while the server is up. CallRunner#run executes the call. When done, asks
the included Call to
* put itself on new queue for Responder to pull from and return result to
client.
* @see BlockingRpcClient
+ * @deprecated Since 2.4.14, 2.5.0, will be removed in 4.0.0. Use {@link
NettyRpcServer} instead.
*/
-@Deprecated()
+@Deprecated
@InterfaceAudience.LimitedPrivate({ HBaseInterfaceAudience.CONFIG })
public class SimpleRpcServer extends RpcServer {