File tree Expand file tree Collapse file tree
trunk/google-cloud-clients/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11---
2- refs/heads/master: d7bcd45e42c7e9173b69baff26eaf8ff5a62959c
2+ refs/heads/master: 1d28f12d28cafb6b9c4281d5b43f7c7b1235e1b2
33refs/heads/travis: 47e4fee4fd5af9b2a8ce46f23c72ec95f9b195b2
44refs/heads/gh-pages: 8f06ce58a2d2825865991e9ba7841a013dccbae1
55refs/tags/0.0.9: 22f1839238f66c39e67ed4dfdcd273b1ae2e8444
Original file line number Diff line number Diff line change @@ -235,6 +235,12 @@ public boolean delete() {
235235 /**
236236 * Insert rows into the table.
237237 *
238+ * <p>Streaming inserts reside temporarily in the streaming buffer, which has different
239+ * availability characteristics than managed storage. Certain operations do not interact with the
240+ * streaming buffer, such as {@link #list(TableDataListOption...)} and {@link #copy(TableId,
241+ * JobOption...)}. As such, recent streaming data will not be present in the destination table or
242+ * output.
243+ *
238244 * <p>Example of inserting rows into the table.
239245 * <pre> {@code
240246 * String rowId1 = "rowId1";
@@ -263,6 +269,12 @@ public InsertAllResponse insert(Iterable<InsertAllRequest.RowToInsert> rows)
263269 /**
264270 * Insert rows into the table.
265271 *
272+ * <p>Streaming inserts reside temporarily in the streaming buffer, which has different
273+ * availability characteristics than managed storage. Certain operations do not interact with the
274+ * streaming buffer, such as {@link #list(TableDataListOption...)} and {@link #copy(TableId,
275+ * JobOption...)}. As such, recent streaming data will not be present in the destination table or
276+ * output.
277+ *
266278 * <p>Example of inserting rows into the table, ignoring invalid rows.
267279 * <pre> {@code
268280 * String rowId1 = "rowId1";
You can’t perform that action at this time.
0 commit comments