You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you put 10485760 as the bulk size, then the bulk size fetched from Kafka would be set to 10MB. This value controls the size passed in the FetchRequest to Kafka.
bulkSize = XContentMapValues.nodeIntegerValue(indexSettings.get("bulk_size_bytes"), 10_1024_1024);
So if I input 10485760 as bulk size bytes ,the final bulk size would be 1?
The text was updated successfully, but these errors were encountered: