From da6910d9e1415097ec393c057b7603294df21ea2 Mon Sep 17 00:00:00 2001 From: Ivan Tse Date: Mon, 19 Aug 2019 17:07:15 -0400 Subject: [PATCH] Fix doc example --- docs/index.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.asciidoc b/docs/index.asciidoc index 61b1833..c25274d 100644 --- a/docs/index.asciidoc +++ b/docs/index.asciidoc @@ -78,9 +78,9 @@ output { json_key_file => "service_account_key.json" # Options for configuring the upload - message_count_threshold => 10000 + message_count_threshold => 1000 delay_threshold_secs => 10 - request_byte_threshold => 5MB + request_byte_threshold => 5000000 } } ------------------------------------------------------------------------------ @@ -209,7 +209,7 @@ A value of 0 will cause messages to instantly be sent but will reduce total thro ===== `request_byte_threshold` * Value type is <> - * Default is: `1_000_000` + * Default is: `1000000` Once the number of bytes in the batched request reaches this threshold, send all of the messages in a single call, even if neither the delay or message count thresholds have been exceeded yet.