From 652e1491e08705b3fb2d73c4704ccf265165d50c Mon Sep 17 00:00:00 2001 From: Abhishek Agarwal <1477457+abhishekagarwal87@users.noreply.github.com> Date: Tue, 2 Nov 2021 23:51:28 +0530 Subject: [PATCH] Update default values for tuning parameters in kinesis data loader (#11867) --- web-console/src/druid-models/ingestion-spec.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web-console/src/druid-models/ingestion-spec.tsx b/web-console/src/druid-models/ingestion-spec.tsx index 16a12a957d0..5bbeea8b5f4 100644 --- a/web-console/src/druid-models/ingestion-spec.tsx +++ b/web-console/src/druid-models/ingestion-spec.tsx @@ -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., },