Adjusting default initial window size to 512 KB. (#706)
This commit is contained in:
parent
e045b308c7
commit
8873b1346f
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ import java.time.Duration;
|
||||||
*/
|
*/
|
||||||
public class KinesisClientUtil {
|
public class KinesisClientUtil {
|
||||||
|
|
||||||
private static int INITIAL_WINDOW_SIZE_BYTES = 10 * 1024 * 1024;
|
private static int INITIAL_WINDOW_SIZE_BYTES = 512 * 1024; // 512 KB
|
||||||
private static long HEALTH_CHECK_PING_PERIOD_MILLIS = 60 * 1000;
|
private static long HEALTH_CHECK_PING_PERIOD_MILLIS = 60 * 1000;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue