Update default values for tuning parameters in kinesis data loader (#11867)

This commit is contained in:
Abhishek Agarwal 2021-11-02 23:51:28 +05:30 committed by GitHub
parent cf27366b35
commit 652e1491e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1094,7 +1094,7 @@ export function getIoConfigTuningFormFields(
{
name: 'recordsPerFetch',
type: 'number',
defaultValue: 2000,
defaultValue: 4000,
defined: typeIs('kinesis'),
info: <>The number of records to request per GetRecords call to Kinesis.</>,
},
@ -1114,7 +1114,7 @@ export function getIoConfigTuningFormFields(
{
name: 'fetchDelayMillis',
type: 'number',
defaultValue: 1000,
defaultValue: 0,
defined: typeIs('kinesis'),
info: <>Time in milliseconds to wait between subsequent GetRecords calls to Kinesis.</>,
},