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 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:
|
BatchCommitWriteStreams |
---|
Atomically commits a group of 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. |
CreateWriteStream |
---|
Creates 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. |
FinalizeWriteStream |
---|
Finalize a write stream so that no new data can be appended to the stream. Finalize is not supported on the '_default' stream. |
FlushRows |
---|
Flushes 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. |
GetWriteStream |
---|
Gets information about a write stream. |
AppendRowsRequest
Request message for AppendRows
.
Because AppendRows is a bidirectional streaming RPC, certain parts of the AppendRowsRequest need only be specified for the first request before switching table destinations. You can also switch table destinations within the same connection for the default stream.
The size of a single AppendRowsRequest must be less than 10 MB in size. Requests larger than this return an error, typically INVALID_ARGUMENT
.
Fields | |
---|---|
write_ |
Required. The write_stream identifies the append operation. It must be provided in the following scenarios:
For explicitly created write streams, the format is:
For the special default stream, the format is:
An example of a possible sequence of requests with write_stream fields within a single connection:
The destination changed in request_4, so the write_stream field must be populated in all subsequent requests in this stream. Authorization requires the following IAM permission on the specified resource
|
offset |
If present, the write is only performed if the next append offset is same as the provided value. If not present, the write is performed at the current end of stream. Specifying a value for this field is not allowed when calling AppendRows for the '_default' stream. |
trace_ |
Id set by client to annotate its identity. Only initial request setting is respected. |
missing_ |
A map to indicate how to interpret missing value for some fields. Missing values are fields present in user schema but missing in rows. The key is the field name. The value is the interpretation of missing values for the field. For example, a map {'foo': NULL_VALUE, 'bar': DEFAULT_VALUE} means all missing values in field foo are interpreted as NULL, all missing values in field bar are interpreted as the default value of field bar in table schema. If a field is not in this map and has missing values, the missing values in this field are interpreted as NULL. This field only applies to the current request, it won't affect other requests on the connection. Currently, field name can only be top-level column name, can't be a struct field path like 'foo.bar'. |
Union field rows . Input rows. The writer_schema field must be specified at the initial request and currently, it will be ignored if specified in following requests. Following requests must have data in the same format as the initial request. rows can be only one of the following: |
|
proto_ |
Rows in proto format. |
MissingValueInterpretation
An enum to indicate how to interpret missing values of fields that are present in user schema but missing in rows. A missing value can represent a NULL or a column default value defined in BigQuery table schema.
Enums | |
---|---|
MISSING_VALUE_INTERPRETATION_UNSPECIFIED |
Invalid missing value interpretation. Requests with this value will be rejected. |
NULL_VALUE |
Missing value is interpreted as NULL. |
DEFAULT_VALUE |
Missing value is interpreted as column default value if declared in the table schema, NULL otherwise. |
ProtoData
ProtoData contains the data rows and schema when constructing append requests.
Fields | |
---|---|
writer_ |
Optional. The protocol buffer schema used to serialize the data. Provide this value whenever:
|
rows |
Required. Serialized row data in protobuf message format. Currently, the backend expects the serialized rows to adhere to proto2 semantics when appending rows, particularly with respect to how default values are encoded. |
AppendRowsResponse
Response message for AppendRows
.
Fields | |
---|---|
updated_ |
If backend detects a schema update, pass it to user so that user can use it to input new type of message. It will be empty when no schema updates have occurred. |
row_ |
If a request failed due to corrupted rows, no rows in the batch will be appended. The API will return row level error info, so that the caller can remove the bad rows and retry the request. |
write_ |
The target of the append operation. Matches the write_stream in the corresponding request. |
Union field
|
|
append_ |
Result if the append is successful. |
error |
Error returned when problems were encountered. If present, it indicates rows were not accepted into the system. Users can retry or continue with other append requests within the same connection. Additional information about error signalling: ALREADY_EXISTS: Happens when an append specified an offset, and the backend already has received data at this offset. Typically encountered in retry scenarios, and can be ignored. OUT_OF_RANGE: Returned when the specified offset in the stream is beyond the current end of the stream. INVALID_ARGUMENT: Indicates a malformed request or data. ABORTED: Request processing is aborted because of prior failures. The request can be retried if previous failure is addressed. INTERNAL: Indicates server side error(s) that can be retried. |
AppendResult
AppendResult is returned for successful append requests.
Fields | |
---|---|
offset |
The row offset at which the last append occurred. The offset will not be set if appending using default streams. |
ArrowRecordBatch
Arrow RecordBatch.
Fields | |
---|---|
serialized_ |
IPC-serialized Arrow RecordBatch. |
row_count |
[Deprecated] The count of rows in |
ArrowSchema
Arrow schema as specified in https://arrow.apache.org/docs/python/api/datatypes.html and serialized to bytes using IPC: https://arrow.apache.org/docs/format/Columnar.html#serialization-and-interprocess-communication-ipc
See code samples on how this message can be deserialized.
Fields | |
---|---|
serialized_ |
IPC serialized Arrow schema. |
ArrowSerializationOptions
Contains options specific to Arrow Serialization.
Fields | |
---|---|
buffer_ |
The compression codec to use for Arrow buffers in serialized record batches. |
CompressionCodec
Compression codec's supported by Arrow.
Enums | |
---|---|
COMPRESSION_UNSPECIFIED |
If unspecified no compression will be used. |
LZ4_FRAME |
LZ4 Frame (https://github.com/lz4/lz4/blob/dev/doc/lz4_Frame_format.md) |
ZSTD |
Zstandard compression. |
AvroRows
Avro rows.
Fields | |
---|---|
serialized_ |
Binary serialized rows in a block. |
row_count |
[Deprecated] The count of rows in the returning block. Please use the format-independent ReadRowsResponse.row_count instead. |
AvroSchema
Avro schema.
Fields | |
---|---|
schema |
Json serialized schema, as described at https://avro.apache.org/docs/1.8.1/spec.html. |
AvroSerializationOptions
Contains options specific to Avro Serialization.
Fields | |
---|---|
enable_ |
Enable displayName attribute in Avro schema. The Avro specification requires field names to be alphanumeric. By default, in cases when column names do not conform to these requirements (e.g. non-ascii unicode codepoints) and Avro is requested as an output format, the CreateReadSession call will fail. Setting this field to true, populates avro field names with a placeholder value and populates a "displayName" attribute for every avro field with the original column name. |
BatchCommitWriteStreamsRequest
Request message for BatchCommitWriteStreams
.
Fields | |
---|---|
parent |
Required. Parent table that all the streams should belong to, in the form of Authorization requires the following IAM permission on the specified resource
|
write_ |
Required. The group of streams that will be committed atomically. |
BatchCommitWriteStreamsResponse
Response message for BatchCommitWriteStreams
.
Fields | |
---|---|
commit_ |
The time at which streams were committed in microseconds granularity. This field will only exist when there are no stream errors. Note if this field is not set, it means the commit was not successful. |
stream_ |
Stream level error if commit failed. Only streams with error will be in the list. If empty, there is no error and all streams are committed successfully. If non empty, certain streams have errors and ZERO stream is committed due to atomicity guarantee. |
CreateReadSessionRequest
Request message for CreateReadSession
.
Fields | |
---|---|
parent |
Required. The request project that owns the session, in the form of Authorization requires the following IAM permission on the specified resource
|
read_ |
Required. Session to be created. Authorization requires the following IAM permission on the specified resource
|
max_ |
Max initial number of streams. If unset or zero, the server will provide a value of streams so as to produce reasonable throughput. Must be non-negative. The number of streams may be lower than the requested number, depending on the amount parallelism that is reasonable for the table. There is a default system max limit of 1,000. This must be greater than or equal to preferred_min_stream_count. Typically, clients should either leave this unset to let the system to determine an upper bound OR set this a size for the maximum "units of work" it can gracefully handle. |
preferred_ |
The minimum preferred stream count. This parameter can be used to inform the service that there is a desired lower bound on the number of streams. This is typically a target parallelism of the client (e.g. a Spark cluster with N-workers would set this to a low multiple of N to ensure good cluster utilization). The system will make a best effort to provide at least this number of streams, but in some cases might provide less. |
CreateWriteStreamRequest
Request message for CreateWriteStream
.
Fields | |
---|---|
parent |
Required. Reference to the table to which the stream belongs, in the format of Authorization requires the following IAM permission on the specified resource
|
write_ |
Required. Stream to be created. |
DataFormat
Data format for input or output data.
Enums | |
---|---|
DATA_FORMAT_UNSPECIFIED |
Data format is unspecified. |
AVRO |
Avro is a standard open source row based file format. See https://avro.apache.org/ for more details. |
ARROW |
Arrow is a standard open source column-based message format. See https://arrow.apache.org/ for more details. |
FinalizeWriteStreamRequest
Request message for invoking FinalizeWriteStream
.
Fields | |
---|---|
name |
Required. Name of the stream to finalize, in the form of Authorization requires the following IAM permission on the specified resource
|
FinalizeWriteStreamResponse
Response message for FinalizeWriteStream
.
Fields | |
---|---|
row_ |
Number of rows in the finalized stream. |
FlushRowsRequest
Request message for FlushRows
.
Fields | |
---|---|
write_ |
Required. The stream that is the target of the flush operation. Authorization requires the following IAM permission on the specified resource
|
offset |
Ending offset of the flush operation. Rows before this offset(including this offset) will be flushed. |
FlushRowsResponse
Respond message for FlushRows
.
Fields | |
---|---|
offset |
The rows before this offset (including this offset) are flushed. |
GetWriteStreamRequest
Request message for GetWriteStreamRequest
.
Fields | |
---|---|
name |
Required. Name of the stream to get, in the form of Authorization requires the following IAM permission on the specified resource
|
view |
Indicates whether to get full or partial view of the WriteStream. If not set, view returned will be basic. |
ProtoRows
Fields | |
---|---|
serialized_ |
A sequence of rows serialized as a Protocol Buffer. See https://developers.google.com/protocol-buffers/docs/overview for more information on deserializing this field. |
ProtoSchema
ProtoSchema describes the schema of the serialized protocol buffer data rows.
Fields | |
---|---|
proto_ |
Descriptor for input message. The provided descriptor must be self contained, such that data rows sent can be fully decoded using only the single descriptor. For data rows that are compositions of multiple independent messages, this means the descriptor may need to be transformed to only use nested types: https://developers.google.com/protocol-buffers/docs/proto#nested For additional information for how proto types and values map onto BigQuery see: https://cloud.google.com/bigquery/docs/write-api#data_type_conversions |
ReadRowsRequest
Request message for ReadRows
.
Fields | |
---|---|
read_ |
Required. Stream to read rows from. Authorization requires the following IAM permission on the specified resource
|
offset |
The offset requested must be less than the last row read from Read. Requesting a larger offset is undefined. If not specified, start reading from offset zero. |
ReadRowsResponse
Response from calling ReadRows
may include row data, progress and throttling information.
Fields | |
---|---|
row_ |
Number of serialized rows in the rows block. |
stats |
Statistics for the stream. |
throttle_ |
Throttling state. If unset, the latest response still describes the current throttling status. |
Union field rows . Row data is returned in format specified during session creation. rows can be only one of the following: |
|
avro_ |
Serialized row data in AVRO format. |
arrow_ |
Serialized row data in Arrow RecordBatch format. |
Union field schema . The schema for the read. If read_options.selected_fields is set, the schema may be different from the table schema as it will only contain the selected fields. This schema is equivalent to the one returned by CreateSession. This field is only populated in the first ReadRowsResponse RPC. schema can be only one of the following: |
|
avro_ |
Output only. Avro schema. |
arrow_ |
Output only. Arrow schema. |
ReadSession
Information about the ReadSession.
Fields | |
---|---|
name |
Output only. Unique identifier for the session, in the form |
expire_ |
Output only. Time at which the session becomes invalid. After this time, subsequent requests to read this Session will return errors. The expire_time is automatically assigned and currently cannot be specified or updated. |
data_ |
Immutable. Data format of the output data. DATA_FORMAT_UNSPECIFIED not supported. |
table |
Immutable. Table that this ReadSession is reading from, in the form Authorization requires one or more of the following IAM permissions on the specified resource
|
table_ |
Optional. Any modifiers which are applied when reading from the specified table. |
read_ |
Optional. Read options for this session (e.g. column selection, filters). |
streams[] |
Output only. A list of streams created with the session. At least one stream is created with the session. In the future, larger request_stream_count values may result in this list being unpopulated, in that case, the user will need to use a List method to get the streams instead, which is not yet available. |
estimated_ |
Output only. An estimate on the number of bytes this session will scan when all streams are completely consumed. This estimate is based on metadata from the table which might be incomplete or stale. |
estimated_ |
Output only. A pre-projected estimate of the total physical size of files (in bytes) that this session will scan when all streams are consumed. This estimate is independent of the selected columns and can be based on incomplete or stale metadata from the table. This field is only set for BigLake tables. |
estimated_ |
Output only. An estimate on the number of rows present in this session's streams. This estimate is based on metadata from the table which might be incomplete or stale. |
trace_ |
Optional. ID set by client to annotate a session identity. This does not need to be strictly unique, but instead the same ID should be used to group logically connected sessions (e.g. All using the same ID for all sessions needed to complete a Spark SQL query is reasonable). Maximum length is 256 bytes. |
Union field schema . The schema for the read. If read_options.selected_fields is set, the schema may be different from the table schema as it will only contain the selected fields. schema can be only one of the following: |
|
avro_ |
Output only. Avro schema. |
arrow_ |
Output only. Arrow schema. |
TableModifiers
Additional attributes when reading a table.
Fields | |
---|---|
snapshot_ |
The snapshot time of the table. If not set, interpreted as now. |
TableReadOptions
Options dictating how we read a table.
Fields | |
---|---|
selected_ |
Optional. The names of the fields in the table to be returned. If no field names are specified, then all fields in the table are returned. Nested fields -- the child elements of a STRUCT field -- can be selected individually using their fully-qualified names, and will be returned as record fields containing only the selected nested fields. If a STRUCT field is specified in the selected fields list, all of the child elements will be returned. As an example, consider a table with the following schema: { "name": "struct_field", "type": "RECORD", "mode": "NULLABLE", "fields": [ { "name": "string_field1", "type": "STRING", . "mode": "NULLABLE" }, { "name": "string_field2", "type": "STRING", "mode": "NULLABLE" } ] } Specifying "struct_field" in the selected fields list will result in a read session schema with the following logical structure: struct_field { string_field1 string_field2 } Specifying "struct_field.string_field1" in the selected fields list will result in a read session schema with the following logical structure: struct_field { string_field1 } The order of the fields in the read session schema is derived from the table schema and does not correspond to the order in which the fields are specified in this list. |
row_ |
SQL text filtering statement, similar to a WHERE clause in a query. Aggregates are not supported. Examples: "int_field > 5" "date_field = CAST('2014-9-27' as DATE)" "nullable_field is not NULL" "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))" "numeric_field BETWEEN 1.0 AND 5.0" Restricted to a maximum length for 1 MB. |
Union field
|
|
arrow_ |
Optional. Options specific to the Apache Arrow output format. |
avro_ |
Optional. Options specific to the Apache Avro output format |
sample_ |
Optional. Specifies a table sampling percentage. Specifically, the query planner will use TABLESAMPLE SYSTEM (sample_percentage PERCENT). The sampling percentage is applied at the data block granularity. It will randomly choose for each data block whether to read the rows in that data block. For more details, see https://cloud.google.com/bigquery/docs/table-sampling) |
ReadStream
Information about a single stream that gets data out of the storage system. Most of the information about ReadStream
instances is aggregated, making ReadStream
lightweight.
Fields | |
---|---|
name |
Output only. Name of the stream, in the form |
RowError
The message that presents row level error info in a request.
Fields | |
---|---|
index |
Index of the malformed row in the request. |
code |
Structured error reason for a row error. |
message |
Description of the issue encountered when processing the row. |
RowErrorCode
Error code for RowError
.
Enums | |
---|---|
ROW_ERROR_CODE_UNSPECIFIED |
Default error. |
FIELDS_ERROR |
One or more fields in the row has errors. |
SplitReadStreamRequest
Request message for SplitReadStream
.
Fields | |
---|---|
name |
Required. Name of the stream to split. Authorization requires the following IAM permission on the specified resource
|
fraction |
A value in the range (0.0, 1.0) that specifies the fractional point at which the original stream should be split. The actual split point is evaluated on pre-filtered rows, so if a filter is provided, then there is no guarantee that the division of the rows between the new child streams will be proportional to this fractional value. Additionally, because the server-side unit for assigning data is collections of rows, this fraction will always map to a data storage boundary on the server side. |
SplitReadStreamResponse
Response message for SplitReadStream
.
Fields | |
---|---|
primary_ |
Primary stream, which contains the beginning portion of |original_stream|. An empty value indicates that the original stream can no longer be split. |
remainder_ |
Remainder stream, which contains the tail of |original_stream|. An empty value indicates that the original stream can no longer be split. |
StorageError
Structured custom BigQuery Storage error message. The error can be attached as error details in the returned rpc Status. In particular, the use of error codes allows more structured error handling, and reduces the need to evaluate unstructured error text strings.
Fields | |
---|---|
code |
BigQuery Storage specific error code. |
entity |
Name of the failed entity. |
error_ |
Message that describes the error. |
StorageErrorCode
Error code for StorageError
.
Enums | |
---|---|
STORAGE_ERROR_CODE_UNSPECIFIED |
Default error. |
TABLE_NOT_FOUND |
Table is not found in the system. |
STREAM_ALREADY_COMMITTED |
Stream is already committed. |
STREAM_NOT_FOUND |
Stream is not found. |
INVALID_STREAM_TYPE |
Invalid Stream type. For example, you try to commit a stream that is not pending. |
INVALID_STREAM_STATE |
Invalid Stream state. For example, you try to commit a stream that is not finalized or is garbaged. |
STREAM_FINALIZED |
Stream is finalized. |
SCHEMA_MISMATCH_EXTRA_FIELDS |
There is a schema mismatch and it is caused by user schema has extra field than bigquery schema. |
OFFSET_ALREADY_EXISTS |
Offset already exists. |
OFFSET_OUT_OF_RANGE |
Offset out of range. |
CMEK_NOT_PROVIDED |
Customer-managed encryption key (CMEK) not provided for CMEK-enabled data. |
INVALID_CMEK_PROVIDED |
Customer-managed encryption key (CMEK) was incorrectly provided. |
CMEK_ENCRYPTION_ERROR |
There is an encryption error while using customer-managed encryption key. |
KMS_SERVICE_ERROR |
Key Management Service (KMS) service returned an error, which can be retried. |
KMS_PERMISSION_DENIED |
Permission denied while using customer-managed encryption key. |
StreamStats
Estimated stream statistics for a given read Stream.
Fields | |
---|---|
progress |
Represents the progress of the current stream. |
Progress
Fields | |
---|---|
at_ |
The fraction of rows assigned to the stream that have been processed by the server so far, not including the rows in the current response message. This value, along with Note that if a filter is provided, the |
at_ |
Similar to |
TableFieldSchema
TableFieldSchema defines a single field/column within a table schema.
Fields | |
---|---|
name |
Required. The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 128 characters. |
type |
Required. The field data type. |
mode |
Optional. The field mode. The default value is NULLABLE. |
fields[] |
Optional. Describes the nested schema fields if the type property is set to STRUCT. |
description |
Optional. The field description. The maximum length is 1,024 characters. |
max_ |
Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = "STRING", then max_length represents the maximum UTF-8 length of strings in this field. If type = "BYTES", then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type is not "STRING" or "BYTES". |
precision |
Optional. Precision (maximum number of total digits in base 10) and scale (maximum number of digits in the fractional part in base 10) constraints for values of this field for NUMERIC or BIGNUMERIC. It is invalid to set precision or scale if type is not "NUMERIC" or "BIGNUMERIC". If precision and scale are not specified, no value range constraint is imposed on this field insofar as values are permitted by the type. Values of this NUMERIC or BIGNUMERIC field must be in this range when:
Acceptable values for precision and scale if both are specified:
Acceptable values for precision if only precision is specified but not scale (and thus scale is interpreted to be equal to zero):
If scale is specified but not precision, then it is invalid. |
scale |
Optional. See documentation for precision. |
default_ |
Optional. A SQL expression to specify the default value for this field. |
Mode
Enums | |
---|---|
MODE_UNSPECIFIED |
Illegal value |
NULLABLE |
|
REQUIRED |
|
REPEATED |
Type
Enums | |
---|---|
TYPE_UNSPECIFIED |
Illegal value |
STRING |
64K, UTF8 |
INT64 |
64-bit signed |
DOUBLE |
64-bit IEEE floating point |
STRUCT |
Aggregate type |
BYTES |
64K, Binary |
BOOL |
2-valued |
TIMESTAMP |
64-bit signed usec since UTC epoch |
DATE |
Civil date - Year, Month, Day |
TIME |
Civil time - Hour, Minute, Second, Microseconds |
DATETIME |
Combination of civil date and civil time |
GEOGRAPHY |
Geography object |
NUMERIC |
Numeric value |
BIGNUMERIC |
BigNumeric value |
INTERVAL |
Interval |
JSON |
JSON, String |
TableSchema
Schema of a table. This schema is a subset of google.cloud.bigquery.v2.TableSchema containing information necessary to generate valid message to write to BigQuery.
Fields | |
---|---|
fields[] |
Describes the fields in a table. |
ThrottleState
Information on if the current connection is being throttled.
Fields | |
---|---|
throttle_ |
How much this connection is being throttled. Zero means no throttling, 100 means fully throttled. |
WriteStream
Information about a single stream that gets data inside the storage system.
Fields | |
---|---|
name |
Output only. Name of the stream, in the form |
type |
Immutable. Type of the stream. |
create_ |
Output only. Create time of the stream. For the _default stream, this is the creation_time of the table. |
commit_ |
Output only. Commit time of the stream. If a stream is of |
table_ |
Output only. The schema of the destination table. It is only returned in |
location |
Immutable. The geographic location where the stream's dataset resides. See https://cloud.google.com/bigquery/docs/locations for supported locations. |
Type
Type enum of the stream.
Enums | |
---|---|
TYPE_UNSPECIFIED |
Unknown type. |
COMMITTED |
Data will commit automatically and appear as soon as the write is acknowledged. |
PENDING |
Data is invisible until the stream is committed. |
BUFFERED |
Data is only visible up to the offset to which it was flushed. |
WriteStreamView
WriteStreamView is a view enum that controls what details about a write stream should be returned.
Enums | |
---|---|
WRITE_STREAM_VIEW_UNSPECIFIED |
The default / unset value. |
BASIC |
The BASIC projection returns basic metadata about a write stream. The basic view does not include schema information. This is the default view returned by GetWriteStream. |
FULL |
The FULL projection returns all available write stream metadata, including the schema. CreateWriteStream returns the full projection of write stream metadata. |