Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1348,7 +1348,7 @@ public abstract static class Write<T> extends PTransform<PCollection<T>, PDone>
* Max batch byte size. Messages are base64 encoded which encodes each set of three bytes into
* four bytes.
*/
private static final int MAX_PUBLISH_BATCH_BYTE_SIZE_DEFAULT = ((10 * 1000 * 1000) / 4) * 3;
private static final int MAX_PUBLISH_BATCH_BYTE_SIZE_DEFAULT = 10 * 1000 * 1000 ;

private static final int MAX_PUBLISH_BATCH_SIZE = 100;

Expand Down
Loading