We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 300f906 commit eb700dbCopy full SHA for eb700db
hbase-client/src/main/java/org/apache/hadoop/hbase/client/BufferedMutatorParams.java
@@ -70,6 +70,15 @@ public int getRpcTimeout() {
70
return rpcTimeout;
71
}
72
73
+ public BufferedMutatorParams operationTimeout(final int operationTimeout) {
74
+ this.operationTimeout = operationTimeout;
75
+ return this;
76
+ }
77
+
78
+ /**
79
+ * @deprecated Since 2.3.0, will be removed in 4.0.0. Use {@link #operationTimeout()}
80
+ */
81
+ @Deprecated
82
public BufferedMutatorParams opertationTimeout(final int operationTimeout) {
83
this.operationTimeout = operationTimeout;
84
return this;
0 commit comments