Adjusting default initial window size to 512 KB. (#706)

This commit is contained in:
Joshua Kim 2020-04-15 00:38:07 -04:00 committed by GitHub
parent e045b308c7
commit 8873b1346f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
/** /**