google-cloud-bigtable-v2 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d34d181961bdd7b77eee3ed155d451204b859b71c917d4dfced514810642b0c3
|
4
|
+
data.tar.gz: 3a0cbeaee7f4f1fe32e2120c1be3215c01571adb10ac545674ccbc6243f68419
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 859c5010798dd04922bbb5438aaf205b4018c1e80b1818f5cd5be7ee6625e5be2a64211587acf65f68a73135cbed3ddc1dae3029bb718e533f5472f25def0f7f
|
7
|
+
data.tar.gz: 498665910beb0fc1ea159f195d0c41d5f702da7e57a4db700f2c51e7734200dd080f1c5732fbc0fb768f61f9676e4e5b0c79eb4566967936689fd0641a36c046
|
@@ -66,8 +66,20 @@ module Google
|
|
66
66
|
default_config = Client::Configuration.new parent_config
|
67
67
|
|
68
68
|
default_config.rpcs.read_rows.timeout = 43_200.0
|
69
|
+
default_config.rpcs.read_rows.retry_policy = {
|
70
|
+
initial_delay: 0.01,
|
71
|
+
max_delay: 60.0,
|
72
|
+
multiplier: 2,
|
73
|
+
retry_codes: []
|
74
|
+
}
|
69
75
|
|
70
76
|
default_config.rpcs.sample_row_keys.timeout = 60.0
|
77
|
+
default_config.rpcs.sample_row_keys.retry_policy = {
|
78
|
+
initial_delay: 0.01,
|
79
|
+
max_delay: 60.0,
|
80
|
+
multiplier: 2,
|
81
|
+
retry_codes: []
|
82
|
+
}
|
71
83
|
|
72
84
|
default_config.rpcs.mutate_row.timeout = 60.0
|
73
85
|
default_config.rpcs.mutate_row.retry_policy = {
|
@@ -78,10 +90,28 @@ module Google
|
|
78
90
|
}
|
79
91
|
|
80
92
|
default_config.rpcs.mutate_rows.timeout = 600.0
|
93
|
+
default_config.rpcs.mutate_rows.retry_policy = {
|
94
|
+
initial_delay: 0.01,
|
95
|
+
max_delay: 60.0,
|
96
|
+
multiplier: 2,
|
97
|
+
retry_codes: []
|
98
|
+
}
|
81
99
|
|
82
100
|
default_config.rpcs.check_and_mutate_row.timeout = 20.0
|
101
|
+
default_config.rpcs.check_and_mutate_row.retry_policy = {
|
102
|
+
initial_delay: 0.01,
|
103
|
+
max_delay: 60.0,
|
104
|
+
multiplier: 2,
|
105
|
+
retry_codes: []
|
106
|
+
}
|
83
107
|
|
84
108
|
default_config.rpcs.read_modify_write_row.timeout = 20.0
|
109
|
+
default_config.rpcs.read_modify_write_row.retry_policy = {
|
110
|
+
initial_delay: 0.01,
|
111
|
+
max_delay: 60.0,
|
112
|
+
multiplier: 2,
|
113
|
+
retry_codes: []
|
114
|
+
}
|
85
115
|
|
86
116
|
default_config
|
87
117
|
end
|
@@ -772,7 +802,7 @@ module Google
|
|
772
802
|
# Each configuration object is of type `Gapic::Config::Method` and includes
|
773
803
|
# the following configuration fields:
|
774
804
|
#
|
775
|
-
# * `timeout` (*type:* `Numeric`) - The call timeout in
|
805
|
+
# * `timeout` (*type:* `Numeric`) - The call timeout in seconds
|
776
806
|
# * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
|
777
807
|
# * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
|
778
808
|
# include the following keys:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-bigtable-v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
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-01-
|
11
|
+
date: 2021-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -199,7 +199,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
199
199
|
- !ruby/object:Gem::Version
|
200
200
|
version: '0'
|
201
201
|
requirements: []
|
202
|
-
rubygems_version: 3.
|
202
|
+
rubygems_version: 3.2.6
|
203
203
|
signing_key:
|
204
204
|
specification_version: 4
|
205
205
|
summary: API Client library for the Cloud Bigtable V2 API
|