BigQuery Storage V1 API - Class Google::Cloud::Bigquery::Storage::V1::BigQueryWrite::Client (v0.13.0)
Stay organized with collections
Save and categorize content based on your preferences.
Reference documentation and code samples for the BigQuery Storage V1 API class Google::Cloud::Bigquery::Storage::V1::BigQueryWrite::Client.
Client for the BigQueryWrite service.
BigQuery Write API.
The Write API can be used to write data to BigQuery.
For supplementary information about the Write API, see: https://cloud.google.com/bigquery/docs/write-api
Inherits
- Object
Methods
.configure
defself.configure(){|config|...}->Client::ConfigurationConfigure the BigQueryWrite Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all BigQueryWrite clients ::Google::Cloud::Bigquery::Storage::V1::BigQueryWrite::Client.configuredo|config| config.timeout=10.0 end
#append_rows
defappend_rows(request,options=nil){|response,operation|...}->::Enumerable<::Google::Cloud::Bigquery::Storage::V1::AppendRowsResponse>Appends data to the given stream.
If offset is specified, the offset is checked against the end of
stream. The server returns OUT_OF_RANGE in AppendRowsResponse if an
attempt is made to append to an offset beyond the current end of the stream
or ALREADY_EXISTS if user provides an offset that has already been
written to. User can retry with adjusted offset within the same RPC
connection. If offset is not specified, append happens at the end of the
stream.
The response contains an optional offset at which the append happened. No offset information will be returned for appends to a default stream.
Responses are received in the same order in which requests are sent. There will be one response for each successful inserted request. Responses may optionally embed error information if the originating AppendRequest was not successfully processed.
The specifics of when successfully appended data is made visible to the table are governed by the type of stream:
For COMMITTED streams (which includes the default stream), data is visible immediately upon successful append.
For BUFFERED streams, data is made visible via a subsequent
FlushRowsrpc which advances a cursor to a newer offset in the stream.For PENDING streams, data is not made visible until the stream itself is finalized (via the
FinalizeWriteStreamrpc), and the stream is explicitly committed via theBatchCommitWriteStreamsrpc.
Note: For users coding against the gRPC api directly, it may be
necessary to supply the x-goog-request-params system parameter
with write_stream=<full_write_stream_name>.
More information about system parameters: https://cloud.google.com/apis/docs/system-parameters
- request (::Gapic::StreamInput, ::Enumerable<::Google::Cloud::Bigquery::Storage::V1::AppendRowsRequest, ::Hash>) — An enumerable of AppendRowsRequest instances.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
- (response, operation) — Access the result along with the RPC operation
- response (::Enumerable<::Google::Cloud::Bigquery::Storage::V1::AppendRowsResponse>)
- operation (::GRPC::ActiveCall::Operation)
- (::Enumerable<::Google::Cloud::Bigquery::Storage::V1::AppendRowsResponse>)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require"google/cloud/bigquery/storage/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::Storage::V1::BigQueryWrite::Client.new # Create an input stream input=Gapic::StreamInput.new # Call the append_rows method to start streaming. output=client.append_rowsinput # Send requests on the stream. For each request, pass in keyword # arguments to set fields. Be sure to close the stream when done. input << Google::Cloud::Bigquery::Storage::V1::AppendRowsRequest.new input << Google::Cloud::Bigquery::Storage::V1::AppendRowsRequest.new input.close # Handle streamed responses. These may be interleaved with inputs. # Each response is of type ::Google::Cloud::Bigquery::Storage::V1::AppendRowsResponse. output.eachdo|response| presponse end
#batch_commit_write_streams
defbatch_commit_write_streams(request,options=nil)->::Google::Cloud::Bigquery::Storage::V1::BatchCommitWriteStreamsResponse
defbatch_commit_write_streams(parent:nil,write_streams:nil)->::Google::Cloud::Bigquery::Storage::V1::BatchCommitWriteStreamsResponseAtomically commits a group of PENDING streams that belong to the same
parent table.
Streams must be finalized before commit and cannot be committed multiple times. Once a stream is committed, data in the stream becomes available for read operations.
defbatch_commit_write_streams(request,options=nil)->::Google::Cloud::Bigquery::Storage::V1::BatchCommitWriteStreamsResponsebatch_commit_write_streams via a request object, either of type
Google::Cloud::Bigquery::Storage::V1::BatchCommitWriteStreamsRequest or an equivalent Hash.
- request (::Google::Cloud::Bigquery::Storage::V1::BatchCommitWriteStreamsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
defbatch_commit_write_streams(parent:nil,write_streams:nil)->::Google::Cloud::Bigquery::Storage::V1::BatchCommitWriteStreamsResponsebatch_commit_write_streams via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. Parent table that all the streams should belong to, in the form of
projects/{project}/datasets/{dataset}/tables/{table}. - write_streams (::Array<::String>) — Required. The group of streams that will be committed atomically.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Bigquery::Storage::V1::BatchCommitWriteStreamsResponse)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require"google/cloud/bigquery/storage/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::Storage::V1::BigQueryWrite::Client.new # Create a request. To set request fields, pass in keyword arguments. request=Google::Cloud::Bigquery::Storage::V1::BatchCommitWriteStreamsRequest.new # Call the batch_commit_write_streams method. result=client.batch_commit_write_streamsrequest # The returned object is of type Google::Cloud::Bigquery::Storage::V1::BatchCommitWriteStreamsResponse. presult
#configure
defconfigure(){|config|...}->Client::ConfigurationConfigure the BigQueryWrite Client instance.
The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on Client.configure .
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
#create_write_stream
defcreate_write_stream(request,options=nil)->::Google::Cloud::Bigquery::Storage::V1::WriteStream
defcreate_write_stream(parent:nil,write_stream:nil)->::Google::Cloud::Bigquery::Storage::V1::WriteStreamCreates a write stream to the given table. Additionally, every table has a special stream named '_default' to which data can be written. This stream doesn't need to be created using CreateWriteStream. It is a stream that can be used simultaneously by any number of clients. Data written to this stream is considered committed as soon as an acknowledgement is received.
defcreate_write_stream(request,options=nil)->::Google::Cloud::Bigquery::Storage::V1::WriteStreamcreate_write_stream via a request object, either of type
CreateWriteStreamRequest or an equivalent Hash.
- request (::Google::Cloud::Bigquery::Storage::V1::CreateWriteStreamRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
defcreate_write_stream(parent:nil,write_stream:nil)->::Google::Cloud::Bigquery::Storage::V1::WriteStreamcreate_write_stream via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. Reference to the table to which the stream belongs, in the format
of
projects/{project}/datasets/{dataset}/tables/{table}. - write_stream (::Google::Cloud::Bigquery::Storage::V1::WriteStream, ::Hash) — Required. Stream to be created.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Bigquery::Storage::V1::WriteStream)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require"google/cloud/bigquery/storage/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::Storage::V1::BigQueryWrite::Client.new # Create a request. To set request fields, pass in keyword arguments. request=Google::Cloud::Bigquery::Storage::V1::CreateWriteStreamRequest.new # Call the create_write_stream method. result=client.create_write_streamrequest # The returned object is of type Google::Cloud::Bigquery::Storage::V1::WriteStream. presult
#finalize_write_stream
deffinalize_write_stream(request,options=nil)->::Google::Cloud::Bigquery::Storage::V1::FinalizeWriteStreamResponse
deffinalize_write_stream(name:nil)->::Google::Cloud::Bigquery::Storage::V1::FinalizeWriteStreamResponseFinalize a write stream so that no new data can be appended to the stream. Finalize is not supported on the '_default' stream.
deffinalize_write_stream(request,options=nil)->::Google::Cloud::Bigquery::Storage::V1::FinalizeWriteStreamResponsefinalize_write_stream via a request object, either of type
FinalizeWriteStreamRequest or an equivalent Hash.
- request (::Google::Cloud::Bigquery::Storage::V1::FinalizeWriteStreamRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
deffinalize_write_stream(name:nil)->::Google::Cloud::Bigquery::Storage::V1::FinalizeWriteStreamResponsefinalize_write_stream via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. Name of the stream to finalize, in the form of
projects/{project}/datasets/{dataset}/tables/{table}/streams/{stream}.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Bigquery::Storage::V1::FinalizeWriteStreamResponse)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require"google/cloud/bigquery/storage/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::Storage::V1::BigQueryWrite::Client.new # Create a request. To set request fields, pass in keyword arguments. request=Google::Cloud::Bigquery::Storage::V1::FinalizeWriteStreamRequest.new # Call the finalize_write_stream method. result=client.finalize_write_streamrequest # The returned object is of type Google::Cloud::Bigquery::Storage::V1::FinalizeWriteStreamResponse. presult
#flush_rows
defflush_rows(request,options=nil)->::Google::Cloud::Bigquery::Storage::V1::FlushRowsResponse
defflush_rows(write_stream:nil,offset:nil)->::Google::Cloud::Bigquery::Storage::V1::FlushRowsResponseFlushes rows to a BUFFERED stream.
If users are appending rows to BUFFERED stream, flush operation is required in order for the rows to become available for reading. A Flush operation flushes up to any previously flushed offset in a BUFFERED stream, to the offset specified in the request.
Flush is not supported on the _default stream, since it is not BUFFERED.
defflush_rows(request,options=nil)->::Google::Cloud::Bigquery::Storage::V1::FlushRowsResponseflush_rows via a request object, either of type
FlushRowsRequest or an equivalent Hash.
- request (::Google::Cloud::Bigquery::Storage::V1::FlushRowsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
defflush_rows(write_stream:nil,offset:nil)->::Google::Cloud::Bigquery::Storage::V1::FlushRowsResponseflush_rows via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- write_stream (::String) — Required. The stream that is the target of the flush operation.
- offset (::Google::Protobuf::Int64Value, ::Hash) — Ending offset of the flush operation. Rows before this offset(including this offset) will be flushed.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Bigquery::Storage::V1::FlushRowsResponse)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require"google/cloud/bigquery/storage/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::Storage::V1::BigQueryWrite::Client.new # Create a request. To set request fields, pass in keyword arguments. request=Google::Cloud::Bigquery::Storage::V1::FlushRowsRequest.new # Call the flush_rows method. result=client.flush_rowsrequest # The returned object is of type Google::Cloud::Bigquery::Storage::V1::FlushRowsResponse. presult
#get_write_stream
defget_write_stream(request,options=nil)->::Google::Cloud::Bigquery::Storage::V1::WriteStream
defget_write_stream(name:nil)->::Google::Cloud::Bigquery::Storage::V1::WriteStreamGets information about a write stream.
defget_write_stream(request,options=nil)->::Google::Cloud::Bigquery::Storage::V1::WriteStreamget_write_stream via a request object, either of type
GetWriteStreamRequest or an equivalent Hash.
- request (::Google::Cloud::Bigquery::Storage::V1::GetWriteStreamRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
defget_write_stream(name:nil)->::Google::Cloud::Bigquery::Storage::V1::WriteStreamget_write_stream via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. Name of the stream to get, in the form of
projects/{project}/datasets/{dataset}/tables/{table}/streams/{stream}.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Bigquery::Storage::V1::WriteStream)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require"google/cloud/bigquery/storage/v1" # Create a client object. The client can be reused for multiple calls. client=Google::Cloud::Bigquery::Storage::V1::BigQueryWrite::Client.new # Create a request. To set request fields, pass in keyword arguments. request=Google::Cloud::Bigquery::Storage::V1::GetWriteStreamRequest.new # Call the get_write_stream method. result=client.get_write_streamrequest # The returned object is of type Google::Cloud::Bigquery::Storage::V1::WriteStream. presult
#initialize
definitialize(){|config|...}->ClientCreate a new BigQueryWrite client object.
- (config) — Configure the BigQueryWrite client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client=::Google::Cloud::Bigquery::Storage::V1::BigQueryWrite::Client.new # Create a client using a custom configuration client=::Google::Cloud::Bigquery::Storage::V1::BigQueryWrite::Client.newdo|config| config.timeout=10.0 end