Skip to content
Draft
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 @@ -157,8 +157,9 @@ public void testE2EBigtableReadWithSkippingLargeRows() {
// Write a few rows first
int numRows = 20;
int numLargeRows = 3;
// Each mutation can't exceed 100 MB. Break it down to 3 columns
String value = StringUtils.repeat("v", 90 * 1000 * 1000);
// Each mutation can't exceed 100 MB. Break it down to 3 columns.
// Row can't exceed 256 MB.
String value = StringUtils.repeat("v", 80 * 1000 * 1000);
for (int i = 0; i < numLargeRows; i++) {
for (int j = 0; j < 3; j++) {
client.mutateRow(
Expand Down
Loading