google-cloud-bigquery-storage-v1 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9f16f932acabcf736ff195242717342d80dee16b62faa790c5d6f7ce23c40b89
4
- data.tar.gz: 4894a0ad7424c2e7d24639c069e7bb80140b9854bc6c1b56e71f872c10072c83
3
+ metadata.gz: 7b07b9c4f3de0f8ef8bdba56a752c2395a4a8a66994ab61521410b3e99838e3e
4
+ data.tar.gz: 31cef0791cce88a2ed20e8637c3c5d5e93987483c7e167415fe94f5b3d5f117a
5
5
  SHA512:
6
- metadata.gz: 13a538f360ae2a6dc9b093bb66447afdb814dd5a90b494b231e4791ea0cfcef08123e60471c2f2d798cefbe4a707665f05506b5fa0430c47a2f20329358366b3
7
- data.tar.gz: 164b534f35f72ef96d3c5ce91de1bf4f5fc1ff0f63eee7d9eb7c50d86d4882bd4bdb58da9cc1c272b127eb936bc397dec256837f1b5c1c41b640a312ec70d3db
6
+ metadata.gz: f401af0976b238c8af2303aed67b176c83f9d2f57377e8c242914e883df3b016648203f32aee4be5e93e99cf66d1119d09276d61666883034f3d5e3d98b5b041
7
+ data.tar.gz: 686ac7ff79abc9a12dd4c2bf617e04982350f9fc66898abd52b944b65183315a36c9f78f8f7a208895ef39ff26e9ac8950914a7c04a959ecc4e4f287822780e2
@@ -18,6 +18,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
18
18
  add_enum "google.cloud.bigquery.storage.v1.ArrowSerializationOptions.CompressionCodec" do
19
19
  value :COMPRESSION_UNSPECIFIED, 0
20
20
  value :LZ4_FRAME, 1
21
+ value :ZSTD, 2
21
22
  end
22
23
  end
23
24
  end
@@ -71,25 +71,25 @@ module Google
71
71
  default_config.rpcs.create_read_session.timeout = 600.0
72
72
  default_config.rpcs.create_read_session.retry_policy = {
73
73
  initial_delay: 0.1,
74
- max_delay: 60.0,
75
- multiplier: 1.3,
76
- retry_codes: [4, 14]
74
+ max_delay: 60.0,
75
+ multiplier: 1.3,
76
+ retry_codes: [4, 14]
77
77
  }
78
78
 
79
79
  default_config.rpcs.read_rows.timeout = 86_400.0
80
80
  default_config.rpcs.read_rows.retry_policy = {
81
81
  initial_delay: 0.1,
82
- max_delay: 60.0,
83
- multiplier: 1.3,
84
- retry_codes: [14]
82
+ max_delay: 60.0,
83
+ multiplier: 1.3,
84
+ retry_codes: [14]
85
85
  }
86
86
 
87
87
  default_config.rpcs.split_read_stream.timeout = 600.0
88
88
  default_config.rpcs.split_read_stream.retry_policy = {
89
89
  initial_delay: 0.1,
90
- max_delay: 60.0,
91
- multiplier: 1.3,
92
- retry_codes: [4, 14]
90
+ max_delay: 60.0,
91
+ multiplier: 1.3,
92
+ retry_codes: [4, 14]
93
93
  }
94
94
 
95
95
  default_config
@@ -30,7 +30,7 @@ module Google
30
30
  # The Read API can be used to read data from BigQuery.
31
31
  class Service
32
32
 
33
- include GRPC::GenericService
33
+ include ::GRPC::GenericService
34
34
 
35
35
  self.marshal_class_method = :encode
36
36
  self.unmarshal_class_method = :decode
@@ -22,7 +22,7 @@ module Google
22
22
  module Bigquery
23
23
  module Storage
24
24
  module V1
25
- VERSION = "0.5.0"
25
+ VERSION = "0.6.0"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,9 @@ module Google
64
64
 
65
65
  # LZ4 Frame (https://github.com/lz4/lz4/blob/dev/doc/lz4_Frame_format.md)
66
66
  LZ4_FRAME = 1
67
+
68
+ # Zstandard compression.
69
+ ZSTD = 2
67
70
  end
68
71
  end
69
72
  end
@@ -29,10 +29,9 @@ module Google
29
29
  # `projects/{project_id}/locations/{location}/sessions/{session_id}`.
30
30
  # @!attribute [r] expire_time
31
31
  # @return [::Google::Protobuf::Timestamp]
32
- # Output only. Time at which the session becomes invalid. After this time,
33
- # subsequent requests to read this Session will return errors. The
34
- # expire_time is automatically assigned and currently cannot be specified or
35
- # updated.
32
+ # Output only. Time at which the session becomes invalid. After this time, subsequent
33
+ # requests to read this Session will return errors. The expire_time is
34
+ # automatically assigned and currently cannot be specified or updated.
36
35
  # @!attribute [rw] data_format
37
36
  # @return [::Google::Cloud::Bigquery::Storage::V1::DataFormat]
38
37
  # Immutable. Data format of the output data.
@@ -48,8 +47,7 @@ module Google
48
47
  # `projects/{project_id}/datasets/{dataset_id}/tables/{table_id}`
49
48
  # @!attribute [rw] table_modifiers
50
49
  # @return [::Google::Cloud::Bigquery::Storage::V1::ReadSession::TableModifiers]
51
- # Optional. Any modifiers which are applied when reading from the specified
52
- # table.
50
+ # Optional. Any modifiers which are applied when reading from the specified table.
53
51
  # @!attribute [rw] read_options
54
52
  # @return [::Google::Cloud::Bigquery::Storage::V1::ReadSession::TableReadOptions]
55
53
  # Optional. Read options for this session (e.g. column selection, filters).
@@ -95,6 +93,7 @@ module Google
95
93
  # Restricted to a maximum length for 1 MB.
96
94
  # @!attribute [rw] arrow_serialization_options
97
95
  # @return [::Google::Cloud::Bigquery::Storage::V1::ArrowSerializationOptions]
96
+ # Optional. Options specific to the Apache Arrow output format.
98
97
  class TableReadOptions
99
98
  include ::Google::Protobuf::MessageExts
100
99
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-bigquery-storage-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-05 00:00:00.000000000 Z
11
+ date: 2021-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -202,7 +202,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
202
202
  - !ruby/object:Gem::Version
203
203
  version: '0'
204
204
  requirements: []
205
- rubygems_version: 3.2.13
205
+ rubygems_version: 3.2.17
206
206
  signing_key:
207
207
  specification_version: 4
208
208
  summary: API Client library for the BigQuery Storage V1 API