File tree 1 file changed +12
-0
lines changed
google-cloud-clients/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -235,6 +235,12 @@ public boolean delete() {
235
235
/**
236
236
* Insert rows into the table.
237
237
*
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
+ *
238
244
* <p>Example of inserting rows into the table.
239
245
* <pre> {@code
240
246
* String rowId1 = "rowId1";
@@ -263,6 +269,12 @@ public InsertAllResponse insert(Iterable<InsertAllRequest.RowToInsert> rows)
263
269
/**
264
270
* Insert rows into the table.
265
271
*
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
+ *
266
278
* <p>Example of inserting rows into the table, ignoring invalid rows.
267
279
* <pre> {@code
268
280
* String rowId1 = "rowId1";
You can’t perform that action at this time.
0 commit comments