File tree Expand file tree Collapse file tree
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 @@ -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