Skip to content

Commit

Permalink
Revert "HDDS-3234. Fix retry interval default in Ozone client. (#698)"
Browse files Browse the repository at this point in the history
This reverts commit c64d86f.
  • Loading branch information
elek committed Mar 30, 2020
1 parent d7dcb8b commit f5fa408
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public final class ScmConfigKeys {
"dfs.ratis.client.request.retry.interval";
public static final TimeDuration
DFS_RATIS_CLIENT_REQUEST_RETRY_INTERVAL_DEFAULT =
TimeDuration.valueOf(15000, TimeUnit.MILLISECONDS);
TimeDuration.valueOf(1000, TimeUnit.MILLISECONDS);
public static final String DFS_RATIS_SERVER_RETRY_CACHE_TIMEOUT_DURATION_KEY =
"dfs.ratis.server.retry-cache.timeout.duration";
public static final TimeDuration
Expand Down
2 changes: 1 addition & 1 deletion hadoop-hdds/common/src/main/resources/ozone-default.xml
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
</property>
<property>
<name>dfs.ratis.client.request.retry.interval</name>
<value>15000ms</value>
<value>1000ms</value>
<tag>OZONE, RATIS, MANAGEMENT</tag>
<description>Interval between successive retries for a ratis client request.
</description>
Expand Down

0 comments on commit f5fa408

Please sign in to comment.