diff --git a/google-cloud-clients/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/Table.java b/google-cloud-clients/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/Table.java index ba45b7da56ab..6b193994e7cf 100644 --- a/google-cloud-clients/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/Table.java +++ b/google-cloud-clients/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/Table.java @@ -235,6 +235,12 @@ public boolean delete() { /** * Insert rows into the table. * + *
Streaming inserts reside temporarily in the streaming buffer, which has different + * availability characteristics than managed storage. Certain operations do not interact with the + * streaming buffer, such as {@link #list(TableDataListOption...)} and {@link #copy(TableId, + * JobOption...)}. As such, recent streaming data will not be present in the destination table or + * output. + * *
Example of inserting rows into the table. *
{@code * String rowId1 = "rowId1"; @@ -263,6 +269,12 @@ public InsertAllResponse insert(Iterablerows) /** * Insert rows into the table. * + * Streaming inserts reside temporarily in the streaming buffer, which has different + * availability characteristics than managed storage. Certain operations do not interact with the + * streaming buffer, such as {@link #list(TableDataListOption...)} and {@link #copy(TableId, + * JobOption...)}. As such, recent streaming data will not be present in the destination table or + * output. + * *
Example of inserting rows into the table, ignoring invalid rows. *
{@code * String rowId1 = "rowId1";