This is an automated email from the ASF dual-hosted git repository.
yihua pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new 1ecc0401eef [HUDI-5623] Increase default time to wait between retries
by lock provider client (#7758)
1ecc0401eef is described below
commit 1ecc0401eef843ff7694b1f0f918b0317ed9a83c
Author: Y Ethan Guo <[email protected]>
AuthorDate: Fri Jan 27 15:56:13 2023 -0800
[HUDI-5623] Increase default time to wait between retries by lock provider
client (#7758)
---
.../src/main/java/org/apache/hudi/config/HoodieLockConfig.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieLockConfig.java
b/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieLockConfig.java
index 2c66ac8e68f..f4aeef09b5c 100644
---
a/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieLockConfig.java
+++
b/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieLockConfig.java
@@ -81,7 +81,7 @@ public class HoodieLockConfig extends HoodieConfig {
public static final ConfigProperty<String>
LOCK_ACQUIRE_CLIENT_RETRY_WAIT_TIME_IN_MILLIS = ConfigProperty
.key(LOCK_ACQUIRE_CLIENT_RETRY_WAIT_TIME_IN_MILLIS_PROP_KEY)
- .defaultValue(String.valueOf(2000L))
+ .defaultValue(String.valueOf(5000L))
.sinceVersion("0.8.0")
.withDocumentation("Amount of time to wait between retries on the lock
provider by the lock manager");