-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathappend_rows_proto2.js
261 lines (220 loc) · 7.34 KB
/
append_rows_proto2.js
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
254
255
256
257
258
259
260
261
// Copyright 2022 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
//
// http://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.
'use strict';
function main(
projectId = 'my_project',
datasetId = 'my_dataset',
tableId = 'my_table',
) {
// [START bigquerystorage_append_rows_raw_proto2]
const {adapt, managedwriter} = require('@google-cloud/bigquery-storage');
const {WriterClient, Writer} = managedwriter;
const sample_data_pb = require('./sample_data_pb.js');
const {SampleData} = sample_data_pb;
const protobufjs = require('protobufjs');
require('protobufjs/ext/descriptor');
async function appendRowsProto2() {
/**
* If you make updates to the sample_data.proto protocol buffers definition,
* run:
* pbjs sample_data.proto -t static-module -w commonjs -o sample_data.js
* pbjs sample_data.proto -t json --keep-case -o sample_data.json
* from the /samples directory to generate the sample_data module.
*/
// So that BigQuery knows how to parse the serialized_rows, create a
// protocol buffer representation of your message descriptor.
const root = protobufjs.loadSync('./sample_data.json');
const descriptor = root.lookupType('SampleData').toDescriptor('proto2');
const protoDescriptor = adapt.normalizeDescriptor(descriptor).toJSON();
/**
* TODO(developer): Uncomment the following lines before running the sample.
*/
// projectId = 'my_project';
// datasetId = 'my_dataset';
// tableId = 'my_table';
const destinationTable = `projects/${projectId}/datasets/${datasetId}/tables/${tableId}`;
const streamType = managedwriter.PendingStream;
const writeClient = new WriterClient({projectId});
try {
const streamId = await writeClient.createWriteStream({
streamType,
destinationTable,
});
console.log(`Stream created: ${streamId}`);
const connection = await writeClient.createStreamConnection({
streamId,
});
const writer = new Writer({
connection,
protoDescriptor,
});
let serializedRows = [];
const pendingWrites = [];
// Row 1
let row = {
rowNum: 1,
boolCol: true,
bytesCol: Buffer.from('hello world'),
float64Col: parseFloat('+123.45'),
int64Col: 123,
stringCol: 'omg',
};
serializedRows.push(SampleData.encode(row).finish());
// Row 2
row = {
rowNum: 2,
boolCol: false,
};
serializedRows.push(SampleData.encode(row).finish());
// Row 3
row = {
rowNum: 3,
bytesCol: Buffer.from('later, gator'),
};
serializedRows.push(SampleData.encode(row).finish());
// Row 4
row = {
rowNum: 4,
float64Col: 987.654,
};
serializedRows.push(SampleData.encode(row).finish());
// Row 5
row = {
rowNum: 5,
int64Col: 321,
};
serializedRows.push(SampleData.encode(row).finish());
// Row 6
row = {
rowNum: 6,
stringCol: 'octavia',
};
serializedRows.push(SampleData.encode(row).finish());
// Set an offset to allow resuming this stream if the connection breaks.
// Keep track of which requests the server has acknowledged and resume the
// stream at the first non-acknowledged message. If the server has already
// processed a message with that offset, it will return an ALREADY_EXISTS
// error, which can be safely ignored.
// The first request must always have an offset of 0.
let offsetValue = 0;
// Send batch.
let pw = writer.appendRows({serializedRows}, offsetValue);
pendingWrites.push(pw);
// Reset rows.
serializedRows = [];
// Row 7
const days = new Date('2019-02-07').getTime() / (1000 * 60 * 60 * 24);
row = {
rowNum: 7,
dateCol: days, // The value is the number of days since the Unix epoch (1970-01-01)
};
serializedRows.push(SampleData.encode(row).finish());
// Row 8
row = {
rowNum: 8,
datetimeCol: '2019-02-17 11:24:00.000',
};
serializedRows.push(SampleData.encode(row).finish());
// Row 9
row = {
rowNum: 9,
geographyCol: 'POINT(5 5)',
};
serializedRows.push(SampleData.encode(row).finish());
// Row 10
row = {
rowNum: 10,
numericCol: '123456',
bignumericCol: '99999999999999999999999999999.999999999',
};
serializedRows.push(SampleData.encode(row).finish());
// Row 11
row = {
rowNum: 11,
timeCol: '18:00:00',
};
serializedRows.push(SampleData.encode(row).finish());
// Row 12
const timestamp = new Date('2022-01-09T03:49:46.564Z').getTime();
row = {
rowNum: 12,
timestampCol: timestamp * 1000, // The value is given in microseconds since the Unix epoch (1970-01-01)
};
serializedRows.push(SampleData.encode(row).finish());
// Offset must equal the number of rows that were previously sent.
offsetValue = 6;
// Send batch.
pw = writer.appendRows({serializedRows}, offsetValue);
pendingWrites.push(pw);
serializedRows = [];
// Row 13
row = {
rowNum: 13,
int64List: [1999, 2001],
};
serializedRows.push(SampleData.encode(row).finish());
// Row 14
row = {
rowNum: 14,
structCol: {
subIntCol: 99,
},
};
serializedRows.push(SampleData.encode(row).finish());
// Row 15
row = {
rowNum: 15,
structList: [{subIntCol: 100}, {subIntCol: 101}],
};
serializedRows.push(SampleData.encode(row).finish());
// Row 16
const timestampStart = new Date('2022-01-09T03:49:46.564Z').getTime();
const timestampEnd = new Date('2022-01-09T04:49:46.564Z').getTime();
row = {
rowNum: 16,
rangeCol: {
start: timestampStart * 1000,
end: timestampEnd * 1000,
},
};
serializedRows.push(SampleData.encode(row).finish());
offsetValue = 12;
// Send batch.
pw = writer.appendRows({serializedRows}, offsetValue);
pendingWrites.push(pw);
const results = await Promise.all(
pendingWrites.map(pw => pw.getResult()),
);
console.log('Write results:', results);
const {rowCount} = await connection.finalize();
console.log(`Row count: ${rowCount}`);
const response = await writeClient.batchCommitWriteStream({
parent: destinationTable,
writeStreams: [streamId],
});
console.log(response);
} catch (err) {
console.log(err);
} finally {
writeClient.close();
}
}
// [END bigquerystorage_append_rows_raw_proto2]
appendRowsProto2();
}
process.on('unhandledRejection', err => {
console.error(err.message);
process.exitCode = 1;
});
main(...process.argv.slice(2));