-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
doc.go
253 lines (200 loc) · 10.9 KB
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/*
Package managedwriter provides a thick client around the BigQuery storage API's BigQueryWriteClient.
More information about this new write client may also be found in the public documentation: https://cloud.google.com/bigquery/docs/write-api
Currently, this client targets the BigQueryWriteClient present in the v1 endpoint, and is intended as a more
feature-rich successor to the classic BigQuery streaming interface, which is presented as the Inserter abstraction
in cloud.google.com/go/bigquery, and the tabledata.insertAll method if you're more familiar with the BigQuery v2 REST
methods.
# Creating a Client
To start working with this package, create a client:
ctx := context.Background()
client, err := managedwriter.NewClient(ctx, projectID)
if err != nil {
// TODO: Handle error.
}
# Defining the Protocol Buffer Schema
The write functionality of BigQuery Storage requires data to be sent using encoded
protocol buffer messages using proto2 wire format. As the protocol buffer is not
self-describing, you will need to provide the protocol buffer schema.
This is communicated using a DescriptorProto message, defined within the protocol
buffer libraries: https://pkg.go.dev/google.golang.org/protobuf/types/descriptorpb#DescriptorProto
More information about protocol buffers can be found in the proto2 language guide:
https://developers.google.com/protocol-buffers/docs/proto
Details about data type conversions between BigQuery and protocol buffers can be
found in the public documentation: https://cloud.google.com/bigquery/docs/write-api#data_type_conversions
For cases where the protocol buffer is compiled from a static ".proto" definition,
this process is straightforward. Instantiate an example message, then convert the
descriptor into a descriptor proto:
m := &myprotopackage.MyCompiledMessage{}
descriptorProto := protodesc.ToDescriptorProto(m.ProtoReflect().Descriptor())
If the message uses advanced protocol buffer features like nested messages/groups,
or enums, the cloud.google.com/go/bigquery/storage/managedwriter/adapt subpackage
contains functionality to normalize the descriptor into a self-contained definition:
m := &myprotopackage.MyCompiledMessage{}
descriptorProto, err := adapt.NormalizeDescriptor(m.ProtoReflect().Descriptor())
if err != nil {
// TODO: Handle error.
}
The adapt subpackage also contains functionality for generating a DescriptorProto using
a BigQuery table's schema directly.
# Constructing a ManagedStream
The ManagedStream handles management of the underlying write connection to the BigQuery
Storage service. You can either create a write session explicitly and pass it in, or
create the write stream while setting up the ManagedStream.
It's easiest to register the protocol buffer descriptor you'll be using to send data when
setting up the managed stream using the WithSchemaDescriptor option, though you can also
set/change the schema as part of an append request once the ManagedStream is created.
// Create a ManagedStream using an explicit stream identifer, either a default
// stream or one explicitly created by CreateWriteStream.
managedStream, err := client.NewManagedStream(ctx,
WithStreamName(streamName),
WithSchemaDescriptor(descriptorProto))
if err != nil {
// TODO: Handle error.
}
In addition, NewManagedStream can create new streams implicitly:
// Alternately, allow the ManagedStream to handle stream construction by supplying
// additional options.
tableName := fmt.Sprintf("projects/%s/datasets/%s/tables/%s", myProject, myDataset, myTable)
manageStream, err := client.NewManagedStream(ctx,
WithDestinationTable(tableName),
WithType(managedwriter.BufferedStream),
WithSchemaDescriptor(descriptorProto))
if err != nil {
// TODO: Handle error.
}
# Writing Data
Use the AppendRows function to write one or more serialized proto messages to a stream. You
can choose to specify an offset in the stream to handle de-duplication for user-created streams,
but a "default" stream neither accepts nor reports offsets.
AppendRows returns a future-like object that blocks until the write is successful or yields
an error.
// Define a couple of messages.
mesgs := []*myprotopackage.MyCompiledMessage{
{
UserName: proto.String("johndoe"),
EmailAddress: proto.String("jd@mycompany.mydomain",
FavoriteNumbers: []proto.Int64{1,42,12345},
},
{
UserName: proto.String("janesmith"),
EmailAddress: proto.String("smith@othercompany.otherdomain",
FavoriteNumbers: []proto.Int64{1,3,5,7,9},
},
}
// Encode the messages into binary format.
encoded := make([][]byte, len(mesgs))
for k, v := range mesgs{
b, err := proto.Marshal(v)
if err != nil {
// TODO: Handle error.
}
encoded[k] = b
}
// Send the rows to the service, and specify an offset for managing deduplication.
result, err := managedStream.AppendRows(ctx, encoded, WithOffset(0))
// Block until the write is complete and return the result.
returnedOffset, err := result.GetResult(ctx)
if err != nil {
// TODO: Handle error.
}
# Buffered Stream Management
For Buffered streams, users control when data is made visible in the destination table/stream
independently of when it is written. Use FlushRows on the ManagedStream to advance the flush
point ahead in the stream.
// We've written 1500+ rows in the stream, and want to advance the flush point
// ahead to make the first 1000 rows available.
flushOffset, err := managedStream.FlushRows(ctx, 1000)
# Pending Stream Management
Pending streams allow users to commit data from multiple streams together once the streams
have been finalized, meaning they'll no longer allow further data writes.
// First, finalize the stream we're writing into.
totalRows, err := managedStream.Finalize(ctx)
if err != nil {
// TODO: Handle error.
}
req := &storagepb.BatchCommitWriteStreamsRequest{
Parent: parentName,
WriteStreams: []string{managedStream.StreamName()},
}
// Using the client, we can commit data from multple streams to the same
// table atomically.
resp, err := client.BatchCommitWriteStreams(ctx, req)
# Error Handling and Automatic Retries
Like other Google Cloud services, this API relies on common components that can provide an
enhanced set of errors when communicating about the results of API interactions.
Specifically, the apierror package (https://pkg.go.dev/github.com/googleapis/gax-go/v2/apierror)
provides convenience methods for extracting structured information about errors.
The BigQuery Storage API service augments applicable errors with service-specific details in
the form of a StorageError message. The StorageError message is accessed via the ExtractProtoMessage
method in the apierror package. Note that the StorageError messsage does not implement Go's error
interface.
An example of accessing the structured error details:
// By way of example, let's assume the response from an append call returns an error.
_, err := result.GetResult(ctx)
if err != nil {
if apiErr, ok := apierror.FromError(err); ok {
// We now have an instance of APIError, which directly exposes more specific
// details about multiple failure conditions include transport-level errors.
storageErr := &storagepb.StorageError{}
if e := apiErr.Details().ExtractProtoMessage(storageErr); e != nil {
// storageErr now contains service-specific information about the error.
log.Printf("Received service-specific error code %s", storageErr.GetCode().String())
}
}
}
This library supports the ability to retry failed append requests, but this functionality is not
enabled by default. You can enable it via the EnableWriteRetries option when constructing a new
managed stream. Use of automatic retries can impact correctness when attempting certain exactly-once
write patterns, but is generally recommended for workloads that only need at-least-once writing.
With write retries enabled, failed writes will be automatically attempted a finite number of times
(currently 4) if the failure is considered retriable.
In support of the retry changes, the AppendResult returned as part of an append call now includes
TotalAttempts(), which returns the number of times that specific append was enqueued to the service.
Values larger than 1 are indicative of a specific append being enqueued multiple times.
# Connection Sharing (Multiplexing)
Note: This feature is EXPERIMENTAL and subject to change.
The BigQuery Write API enforces a limit on the number of concurrent open connections, documented
here: https://cloud.google.com/bigquery/quotas#write-api-limits
Users can now choose to enable connection sharing (multiplexing) when using ManagedStream writers
that use default streams. The intent of this feature is to simplify connection management for users
who wish to write to many tables, at a cardinality beyond the open connection quota. Please note that
explicit streams (Committed, Buffered, and Pending) cannot leverage the connection sharing feature.
Multiplexing features are controlled by the package-specific custom ClientOption options exposed within
this package. Additionally, some of the connection-related WriterOptions that can be specified when
constructing ManagedStream writers are ignored for writers that leverage the shared multiplex connections.
At a high level, multiplexing uses some heuristics based on the flow control of the shared connections
to infer whether the pool should add additional connections up to a user-specific limit per region,
and attempts to balance traffic from writers to those connections.
To enable multiplexing for writes to default streams, simply instantiate the client with the desired options:
ctx := context.Background()
client, err := managedwriter.NewClient(ctx, projectID,
WithMultiplexing,
WithMultiplexPoolLimit(3),
)
if err != nil {
// TODO: Handle error.
}
Special Consideration: The gRPC architecture is capable of its own sharing of underlying HTTP/2 connections.
For users who are sending significant traffic on multiple writers (independent of whether they're leveraging
multiplexing or not) may also wish to consider further tuning of this behavior. The managedwriter library
sets a reasonable default, but this can be tuned further by leveraging the WithGRPCConnectionPool ClientOption,
documented here:
https://pkg.go.dev/google.golang.org/api/option#WithGRPCConnectionPool
A reasonable upper bound for the connection pool size is the number of concurrent writers for explicit stream
plus the configured size of the multiplex pool.
*/
package managedwriter