Index
BigQueryRead
(interface)BigQueryWrite
(interface)AppendRowsRequest
(message)AppendRowsRequest.MissingValueInterpretation
(enum)AppendRowsRequest.ProtoData
(message)AppendRowsResponse
(message)AppendRowsResponse.AppendResult
(message)ArrowRecordBatch
(message)ArrowSchema
(message)ArrowSerializationOptions
(message)ArrowSerializationOptions.CompressionCodec
(enum)AvroRows
(message)AvroSchema
(message)AvroSerializationOptions
(message)BatchCommitWriteStreamsRequest
(message)BatchCommitWriteStreamsResponse
(message)CreateReadSessionRequest
(message)CreateWriteStreamRequest
(message)DataFormat
(enum)FinalizeWriteStreamRequest
(message)FinalizeWriteStreamResponse
(message)FlushRowsRequest
(message)FlushRowsResponse
(message)GetWriteStreamRequest
(message)ProtoRows
(message)ProtoSchema
(message)ReadRowsRequest
(message)ReadRowsResponse
(message)ReadSession
(message)ReadSession.TableModifiers
(message)ReadSession.TableReadOptions
(message)ReadStream
(message)RowError
(message)RowError.RowErrorCode
(enum)SplitReadStreamRequest
(message)SplitReadStreamResponse
(message)StorageError
(message)StorageError.StorageErrorCode
(enum)StreamStats
(message)StreamStats.Progress
(message)TableFieldSchema
(message)TableFieldSchema.Mode
(enum)TableFieldSchema.Type
(enum)TableSchema
(message)ThrottleState
(message)WriteStream
(message)WriteStream.Type
(enum)WriteStreamView
(enum)
BigQueryRead
BigQuery Read API.
The Read API can be used to read data from BigQuery.
CreateReadSession |
---|
Creates a new read session. A read session divides the contents of a BigQuery table into one or more streams, which can then be used to read data from the table. The read session also specifies properties of the data to be read, such as a list of columns or a push-down filter describing the rows to be returned. A particular row can be read by at most one stream. When the caller has reached the end of each stream in the session, then all the data in the table has been read. Data is assigned to each stream such that roughly the same number of rows can be read from each stream. Because the server-side unit for assigning data is collections of rows, the API does not guarantee that each stream will return the same number or rows. Additionally, the limits are enforced based on the number of pre-filtered rows, so some filters can lead to lopsided assignments. Read sessions automatically expire 6 hours after they are created and do not require manual clean-up by the caller. |
ReadRows |
---|
Reads rows from the stream in the format prescribed by the ReadSession. Each response contains one or more table rows, up to a maximum of 100 MiB per response; read requests which attempt to read individual rows larger than 100 MiB will fail. Each request also returns a set of stream statistics reflecting the current state of the stream. |
SplitReadStream |
---|
Splits a given Moreover, the two child streams will be allocated back-to-back in the original |
BigQueryWrite
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
AppendRows |
---|
Appends data to the given stream. If |