Skip to content

Commit 1b8f9e3

Browse files
authored
fix: add retry behavior documentation to insertall interface to clarify the behavior (#14058)
1 parent c6069a9 commit 1b8f9e3

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

  • java-bigquery/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery

java-bigquery/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/BigQuery.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1354,7 +1354,10 @@ public int hashCode() {
13541354
/**
13551355
* Sends an insert all request.
13561356
*
1357-
* <p>Example of inserting rows into a table without running a load job.
1357+
* <p>Example of inserting rows into a table without running a load job. To prevent duplicate
1358+
* rows, this method does not perform automatic retries unless insert IDs are provided. Transient
1359+
* service errors (such as UNAVAILABLE) may be thrown and should be handled by the caller when
1360+
* insert IDs are not provided.
13581361
*
13591362
* <pre>{@code
13601363
* String datasetName = "my_dataset_name";

0 commit comments

Comments
 (0)