-
Notifications
You must be signed in to change notification settings - Fork 192
Expand file tree
/
Copy pathProcessQueue.java
More file actions
423 lines (379 loc) · 14.4 KB
/
ProcessQueue.java
File metadata and controls
423 lines (379 loc) · 14.4 KB
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
package net.snowflake.client.loader;
import static java.lang.Math.toIntExact;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.LinkedList;
import java.util.List;
import net.snowflake.client.log.SFLogger;
import net.snowflake.client.log.SFLoggerFactory;
/**
* This class is responsible for processing a collection of uploaded data files represented by
* BufferStage class
*/
public class ProcessQueue implements Runnable {
private static final SFLogger logger = SFLoggerFactory.getLogger(ProcessQueue.class);
private final Thread _thread;
private final StreamLoader _loader;
public ProcessQueue(StreamLoader loader) {
logger.debug("", false);
_loader = loader;
_thread = new Thread(this);
_thread.setName("ProcessQueueThread");
_thread.start();
}
@Override
public void run() {
while (true) {
BufferStage stage = null;
Connection conn = _loader.getProcessConnection();
State currentState = State.INITIALIZE;
String currentCommand = null;
try {
stage = _loader.takeProcess();
if (stage.getRowCount() == 0) {
// Nothing was written to that stage
if (stage.isTerminate()) {
break;
} else {
continue;
}
}
// Place where the files are.
// No double quote is added _loader.getRemoteStage(), since
// it is mostly likely to be "~". If not, we may need to double quote
// them.
String remoteStage = "@" + _loader.getRemoteStage() + "/" + stage.getRemoteLocation();
// process uploaded files
// Loader.abort() and finish() are also synchronized on this
synchronized (_loader) {
String updateKeys = getOn(_loader.getKeys(), "T", "S");
if (stage.getOp() != Operation.INSERT && updateKeys.isEmpty()) {
_loader.abort(new RuntimeException("No update key column is specified for the job."));
}
if (_loader.isAborted()) {
if (!_loader._preserveStageFile) {
currentCommand = "RM '" + remoteStage + "'";
logger.debug(currentCommand, true);
conn.createStatement().execute(currentCommand);
} else {
logger.debug(
"Error occurred. The remote stage is preserved for "
+ "further investigation: {}",
remoteStage);
}
if (stage.isTerminate()) {
break;
} else {
continue;
}
// Do not do anything to this stage.
// Everything was rolled back upon abort() call
}
// Create a temporary table to hold all uploaded data
long loaded = 0;
long parsed = 0;
int errorCount = 0;
String lastErrorRow = "";
// Create temp table to load data (may have a subset of columns)
logger.debug("Creating Temporary Table: name={}", stage.getId());
currentState = State.CREATE_TEMP_TABLE;
List<String> allColumns = getAllColumns(conn);
// use like to make sure columns in temporary table
// contains properties (e.g., NOT NULL) from the source table
currentCommand =
"CREATE TEMPORARY TABLE \"" + stage.getId() + "\" LIKE " + _loader.getFullTableName();
List<String> selectedColumns = _loader.getColumns();
conn.createStatement().execute(currentCommand);
// In case clustering key exists, drop it from the temporary table so that unused
// columns can be dropped from the table without errors.
String dropClusteringKey = "alter table \"" + stage.getId() + "\" drop clustering key";
conn.createStatement().execute(dropClusteringKey);
// the temp table can contain only a subset of columns
// so remove unselected columns
for (String col : allColumns) {
if (!selectedColumns.contains(col)) {
String dropUnSelectedColumn =
"alter table \"" + stage.getId() + "\" drop column \"" + col + "\"";
conn.createStatement().execute(dropUnSelectedColumn);
}
}
// Load data there
logger.debug(
"COPY data in the stage to table:" + " stage={}," + " name={}",
remoteStage,
stage.getId());
currentState = State.COPY_INTO_TABLE;
currentCommand =
"COPY INTO \""
+ stage.getId()
+ "\" FROM '"
+ remoteStage
+ "' on_error='"
+ _loader._onError
+ "'"
+ " file_format=("
+ " field_optionally_enclosed_by='\"'"
+ " empty_field_as_null="
+ Boolean.toString(!_loader._copyEmptyFieldAsEmpty)
+ ")";
ResultSet rs = conn.createStatement().executeQuery(currentCommand);
while (rs.next()) {
// Get the number of rows actually loaded
loaded += rs.getLong("rows_loaded");
// Get the number of rows parsed
parsed += rs.getLong("rows_parsed");
}
int errorRecordCount = toIntExact(parsed - loaded);
logger.debug(
"errorRecordCount=[{}]," + " parsed=[{}]," + " loaded=[{}]",
errorRecordCount,
parsed,
loaded);
LoadResultListener listener = _loader.getListener();
listener.addErrorRecordCount(errorRecordCount);
if (loaded == stage.getRowCount()) {
// successfully loaded everything
logger.debug(
"COPY command successfully finished:" + " stage={}," + " name={}",
remoteStage,
stage.getId());
listener.addErrorCount(0);
} else {
logger.debug(
"Found errors in COPY command:" + " stage={}," + " name={}",
remoteStage,
stage.getId());
if (listener.needErrors()) {
currentState = State.COPY_INTO_TABLE_ERROR;
currentCommand =
"COPY INTO \""
+ stage.getId()
+ "\" FROM '"
+ remoteStage
+ "' validation_mode='return_all_errors'"
+ " file_format=("
+ "field_optionally_enclosed_by='\"'"
+ "empty_field_as_null="
+ Boolean.toString(!_loader._copyEmptyFieldAsEmpty)
+ ")";
ResultSet errorsSet = conn.createStatement().executeQuery(currentCommand);
Loader.DataError dataError = null;
while (errorsSet.next()) {
errorCount++;
String rn = errorsSet.getString(LoadingError.ErrorProperty.ROW_NUMBER.name());
if (rn != null && !lastErrorRow.equals(rn)) {
// de-duping records with multiple errors
lastErrorRow = rn;
}
LoadingError loadError = new LoadingError(errorsSet, stage, _loader);
listener.addError(loadError);
if (dataError == null) {
dataError = loadError.getException();
}
}
logger.debug("errorCount: {}", errorCount);
listener.addErrorCount(errorCount);
if (listener.throwOnError()) {
// stop operation and raise the error
_loader.abort(dataError);
if (!_loader._preserveStageFile) {
logger.debug("RM: {}", remoteStage);
conn.createStatement().execute("RM '" + remoteStage + "'");
} else {
logger.error(
"Error occurred. The remote stage is preserved for "
+ "further investigation: {}",
remoteStage);
}
if (stage.isTerminate()) {
break;
} else {
continue;
}
}
}
}
stage.setState(BufferStage.State.VALIDATED);
// Generate set and values statement
StringBuilder setStatement = null;
StringBuilder valueStatement = null;
if (stage.getOp() != Operation.INSERT && stage.getOp() != Operation.DELETE) {
setStatement = new StringBuilder(" ");
valueStatement = new StringBuilder("(");
for (int c = 0; c < _loader.getColumns().size(); ++c) {
String column = _loader.getColumns().get(c);
if (c > 0) {
setStatement.append(", ");
valueStatement.append(" , ");
}
setStatement
.append("T.\"")
.append(column)
.append("\"=")
.append("S.\"")
.append(column)
.append("\"");
valueStatement.append("S.\"").append(column).append("\"");
}
valueStatement.append(")");
}
// generate statement for processing
currentState = State.INGEST_DATA;
String loadStatement;
switch (stage.getOp()) {
case INSERT:
{
loadStatement =
"INSERT INTO "
+ _loader.getFullTableName()
+ "("
+ _loader.getColumnsAsString()
+ ")"
+ " SELECT "
+ _loader.getStageColumnsAsString()
+ " FROM \""
+ stage.getId()
+ "\"";
break;
}
case DELETE:
{
loadStatement =
"DELETE FROM "
+ _loader.getFullTableName()
+ " T USING \""
+ stage.getId()
+ "\" AS S WHERE "
+ updateKeys;
break;
}
case MODIFY:
{
loadStatement =
"MERGE INTO "
+ _loader.getFullTableName()
+ " T USING \""
+ stage.getId()
+ "\" AS S ON "
+ updateKeys
+ " WHEN MATCHED THEN UPDATE SET "
+ setStatement;
break;
}
case UPSERT:
{
loadStatement =
"MERGE INTO "
+ _loader.getFullTableName()
+ " T USING \""
+ stage.getId()
+ "\" AS S ON "
+ updateKeys
+ " WHEN MATCHED THEN UPDATE SET "
+ setStatement
+ " WHEN NOT MATCHED THEN INSERT("
+ _loader.getColumnsAsString()
+ ") VALUES"
+ valueStatement;
break;
}
default:
loadStatement = "";
}
currentCommand = loadStatement;
logger.debug("Load Statement: {}", loadStatement);
Statement s = conn.createStatement();
s.execute(loadStatement);
stage.setState(BufferStage.State.PROCESSED);
currentState = State.FINISH;
currentCommand = null;
switch (stage.getOp()) {
case INSERT:
case UPSERT:
{
_loader.getListener().addProcessedRecordCount(stage.getOp(), stage.getRowCount());
_loader.getListener().addOperationRecordCount(stage.getOp(), s.getUpdateCount());
break;
}
case DELETE:
case MODIFY:
{
// the number of successful DELETE is the number
// of processed rows and not the number of given
// rows.
_loader.getListener().addProcessedRecordCount(stage.getOp(), s.getUpdateCount());
_loader.getListener().addOperationRecordCount(stage.getOp(), s.getUpdateCount());
break;
}
}
// delete stage file if all success
conn.createStatement().execute("RM '" + remoteStage + "'");
if (stage.isTerminate()) {
break;
}
}
} catch (InterruptedException ex) {
logger.error("Interrupted", ex);
break;
} catch (Exception ex) {
String msg =
String.format("State: %s, %s, %s", currentState, currentCommand, ex.getMessage());
_loader.abort(new Loader.ConnectionError(msg, Utils.getCause(ex)));
logger.error(msg, true);
if (stage == null || stage.isTerminate()) {
break;
}
}
}
}
private List<String> getAllColumns(final Connection conn) throws SQLException {
List<String> columns = new LinkedList<>();
ResultSet result =
conn.createStatement()
.executeQuery("show " + "columns" + " in " + _loader.getFullTableName());
while (result.next()) {
String col = result.getString("column_name");
columns.add(col);
}
return columns;
}
private String getOn(List<String> keys, String L, String R) {
if (keys == null) {
return "";
}
// L and R don't need to be quoted.
StringBuilder sb = keys.size() > 1 ? new StringBuilder(64) : new StringBuilder();
for (int i = 0; i < keys.size(); i++) {
if (i > 0) {
sb.append("AND ");
}
sb.append(L);
sb.append(".\"");
sb.append(keys.get(i));
sb.append("\" = ");
sb.append(R);
sb.append(".\"");
sb.append(keys.get(i));
sb.append("\" ");
}
return sb.toString();
}
public void join() {
logger.trace("Joining threads", false);
try {
_thread.join(0);
} catch (InterruptedException ex) {
logger.debug("Exception: ", ex);
}
}
private enum State {
INITIALIZE,
CREATE_TEMP_TABLE,
COPY_INTO_TABLE,
COPY_INTO_TABLE_ERROR,
INGEST_DATA,
FINISH
}
}