google-cloud-bigquery 1.14.0 → 1.14.1
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5fd3861cb3bf54760f6b0d3a46858c98874189855f86a41caaa2c791c713c5e8
|
|
4
|
+
data.tar.gz: 14b582d242c0482e8d1466d73fe32339e1f6e35e1a9df690ae0196b80b9f32d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f58f559418c9be2386ce0802f133615d36293734ed96450b4041c85645960cd196deb69bf25d02852a8147a89c334ead418ba8778007c546c86978b7577ffcbc
|
|
7
|
+
data.tar.gz: b4a814a2b5307dec611dd9af3628511989d9c5cdbb8873205440f1b8685543bfa4a972be5822a08bc538eb8e6c4bc58bca2094f67a8ee95837f011a21bc84cf6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
+
### 1.14.1 / 2019-09-04
|
|
4
|
+
|
|
5
|
+
#### Documentation
|
|
6
|
+
|
|
7
|
+
* Add note about streaming insert issues
|
|
8
|
+
* Acknowledge tradeoffs when inserting rows soon after
|
|
9
|
+
table metadata has been changed.
|
|
10
|
+
* Add link to BigQuery Troubleshooting guide.
|
|
11
|
+
|
|
3
12
|
### 1.14.0 / 2019-08-23
|
|
4
13
|
|
|
5
14
|
#### Features
|
|
@@ -1953,9 +1953,18 @@ module Google
|
|
|
1953
1953
|
# the need to complete a load operation before the data can appear in
|
|
1954
1954
|
# query results.
|
|
1955
1955
|
#
|
|
1956
|
+
# Because BigQuery's streaming API is designed for high insertion rates,
|
|
1957
|
+
# modifications to the underlying table metadata are eventually
|
|
1958
|
+
# consistent when interacting with the streaming system. In most cases
|
|
1959
|
+
# metadata changes are propagated within minutes, but during this period
|
|
1960
|
+
# API responses may reflect the inconsistent state of the table.
|
|
1961
|
+
#
|
|
1956
1962
|
# @see https://cloud.google.com/bigquery/streaming-data-into-bigquery
|
|
1957
1963
|
# Streaming Data Into BigQuery
|
|
1958
1964
|
#
|
|
1965
|
+
# @see https://cloud.google.com/bigquery/troubleshooting-errors#metadata-errors-for-streaming-inserts
|
|
1966
|
+
# BigQuery Troubleshooting: Metadata errors for streaming inserts
|
|
1967
|
+
#
|
|
1959
1968
|
# @param [String] table_id The ID of the destination table.
|
|
1960
1969
|
# @param [Hash, Array<Hash>] rows A hash object or array of hash objects
|
|
1961
1970
|
# containing the data. Required.
|
|
@@ -1972,9 +1972,18 @@ module Google
|
|
|
1972
1972
|
# need to complete a load operation before the data can appear in query
|
|
1973
1973
|
# results.
|
|
1974
1974
|
#
|
|
1975
|
+
# Because BigQuery's streaming API is designed for high insertion rates,
|
|
1976
|
+
# modifications to the underlying table metadata are eventually
|
|
1977
|
+
# consistent when interacting with the streaming system. In most cases
|
|
1978
|
+
# metadata changes are propagated within minutes, but during this period
|
|
1979
|
+
# API responses may reflect the inconsistent state of the table.
|
|
1980
|
+
#
|
|
1975
1981
|
# @see https://cloud.google.com/bigquery/streaming-data-into-bigquery
|
|
1976
1982
|
# Streaming Data Into BigQuery
|
|
1977
1983
|
#
|
|
1984
|
+
# @see https://cloud.google.com/bigquery/troubleshooting-errors#metadata-errors-for-streaming-inserts
|
|
1985
|
+
# BigQuery Troubleshooting: Metadata errors for streaming inserts
|
|
1986
|
+
#
|
|
1978
1987
|
# @param [Hash, Array<Hash>] rows A hash object or array of hash objects
|
|
1979
1988
|
# containing the data. Required.
|
|
1980
1989
|
# @param [Array<String>] insert_ids A unique ID for each row. BigQuery
|
|
@@ -100,6 +100,19 @@ module Google
|
|
|
100
100
|
# collected in batches and inserted together.
|
|
101
101
|
# See {Google::Cloud::Bigquery::Table#insert_async}.
|
|
102
102
|
#
|
|
103
|
+
# Because BigQuery's streaming API is designed for high insertion
|
|
104
|
+
# rates, modifications to the underlying table metadata are eventually
|
|
105
|
+
# consistent when interacting with the streaming system. In most cases
|
|
106
|
+
# metadata changes are propagated within minutes, but during this
|
|
107
|
+
# period API responses may reflect the inconsistent state of the
|
|
108
|
+
# table.
|
|
109
|
+
#
|
|
110
|
+
# @see https://cloud.google.com/bigquery/streaming-data-into-bigquery
|
|
111
|
+
# Streaming Data Into BigQuery
|
|
112
|
+
#
|
|
113
|
+
# @see https://cloud.google.com/bigquery/troubleshooting-errors#metadata-errors-for-streaming-inserts
|
|
114
|
+
# BigQuery Troubleshooting: Metadata errors for streaming inserts
|
|
115
|
+
#
|
|
103
116
|
# @param [Hash, Array<Hash>] rows A hash object or array of hash
|
|
104
117
|
# objects containing the data.
|
|
105
118
|
# @param [Array<String>] insert_ids A unique ID for each row. BigQuery
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-bigquery
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.14.
|
|
4
|
+
version: 1.14.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Moore
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2019-
|
|
12
|
+
date: 2019-09-04 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: google-cloud-core
|