Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(table): link to upstream limit docs #376

Merged
merged 2 commits into from
Mar 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1710,11 +1710,11 @@ class Table extends common.ServiceObject {
/**
* Stream data into BigQuery one record at a time without running a load job.
*
* There are more strict quota limits using this method so it is highly
* recommended that you load data into BigQuery using
* If you need to create an entire table from a file, consider using
* {@link Table#load} instead.
*
* @see [Tabledata: insertAll API Documentation]{@link https://cloud.google.com/bigquery/docs/reference/v2/tabledata/insertAll}
* @see [Streaming Insert Limits]{@link https://cloud.google.com/bigquery/quotas#streaming_inserts}
* @see [Troubleshooting Errors]{@link https://developers.google.com/bigquery/troubleshooting-errors}
*
* @param {object|object[]} rows The rows to insert into the table.
Expand Down