@@ -15,6 +15,8 @@ public class TransientStorageProperties {
|
||||
private int connectTimeoutSeconds = 10;
|
||||
private int readTimeoutSeconds = 60;
|
||||
private int writeTimeoutSeconds = 60;
|
||||
private int callTimeoutSeconds = 90;
|
||||
private int operationTimeoutSeconds = 120;
|
||||
private int uploadMaxRetries = 3;
|
||||
private int readMaxRetries = 3;
|
||||
private int deleteMaxRetries = 3;
|
||||
@@ -28,8 +30,10 @@ public class TransientStorageProperties {
|
||||
private long failureWindowSeconds = 60;
|
||||
private int failureWindowThreshold = 20;
|
||||
private long failureCooldownMillis = 10000;
|
||||
private int connectionPoolMaxIdle = 0;
|
||||
private long connectionPoolKeepAliveMillis = 1;
|
||||
private int dispatcherMaxRequests = 56;
|
||||
private int dispatcherMaxRequestsPerHost = 56;
|
||||
private int connectionPoolMaxIdle = 5;
|
||||
private long connectionPoolKeepAliveMillis = 300000;
|
||||
private long warnPayloadBytes = 5L * 1024 * 1024;
|
||||
private long maxPayloadBytes = 50L * 1024 * 1024;
|
||||
private long maxStoredPayloadBytes = 50L * 1024 * 1024;
|
||||
@@ -38,4 +42,5 @@ public class TransientStorageProperties {
|
||||
private String deleteRetryCron = "0 */5 * * * *";
|
||||
private int deleteRetryQueueCapacity = 10000;
|
||||
private int deleteRetryBatchSize = 200;
|
||||
private int deleteRetryBatchTimeoutSeconds = 60;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user