-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathJobStatistics.java
1834 lines (1554 loc) · 60.2 KB
/
JobStatistics.java
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright 2016 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.
*/
package com.google.cloud.bigquery;
import com.google.api.core.ApiFunction;
import com.google.api.services.bigquery.model.ExportDataStatistics;
import com.google.api.services.bigquery.model.JobConfiguration;
import com.google.api.services.bigquery.model.JobStatistics2;
import com.google.api.services.bigquery.model.JobStatistics3;
import com.google.api.services.bigquery.model.JobStatistics4;
import com.google.api.services.bigquery.model.JobStatistics5;
import com.google.api.services.bigquery.model.QueryParameter;
import com.google.auto.value.AutoValue;
import com.google.cloud.StringEnumType;
import com.google.cloud.StringEnumValue;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Function;
import com.google.common.base.MoreObjects;
import com.google.common.base.MoreObjects.ToStringHelper;
import com.google.common.collect.Lists;
import java.io.Serializable;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
import org.checkerframework.checker.nullness.compatqual.NullableDecl;
/** A Google BigQuery Job statistics. */
public abstract class JobStatistics implements Serializable {
private static final long serialVersionUID = 1433024714741660400L;
private final Long creationTime;
private final Long endTime;
private final Long startTime;
private final Long numChildJobs;
private final String parentJobId;
private final ScriptStatistics scriptStatistics;
private final List<ReservationUsage> reservationUsage;
private final TransactionInfo transactionInfo;
private final SessionInfo sessionInfo;
private final Long totalSlotMs;
/** A Google BigQuery Copy Job statistics. */
public static class CopyStatistics extends JobStatistics {
private static final long serialVersionUID = 8218325588441660939L;
private final Long copiedLogicalBytes;
private final Long copiedRows;
static final class Builder extends JobStatistics.Builder<CopyStatistics, Builder> {
private Long copiedLogicalBytes;
private Long copiedRows;
private Builder() {}
private Builder(com.google.api.services.bigquery.model.JobStatistics statisticsPb) {
super(statisticsPb);
if (statisticsPb.getCopy() != null) {
this.copiedLogicalBytes = statisticsPb.getCopy().getCopiedLogicalBytes();
this.copiedRows = statisticsPb.getCopy().getCopiedRows();
}
}
Builder setCopiedLogicalBytes(long copiedLogicalBytes) {
this.copiedLogicalBytes = copiedLogicalBytes;
return self();
}
Builder setCopiedRows(long copiedRows) {
this.copiedRows = copiedRows;
return self();
}
@Override
CopyStatistics build() {
return new CopyStatistics(this);
}
}
private CopyStatistics(Builder builder) {
super(builder);
this.copiedLogicalBytes = builder.copiedLogicalBytes;
this.copiedRows = builder.copiedRows;
}
/** Returns number of logical bytes copied to the destination table. */
public Long getCopiedLogicalBytes() {
return copiedLogicalBytes;
}
/** Returns number of rows copied to the destination table. */
public Long getCopiedRows() {
return copiedRows;
}
@Override
ToStringHelper toStringHelper() {
return super.toStringHelper()
.add("copiedLogicalBytes", copiedLogicalBytes)
.add("copiedRows", copiedRows);
}
@Override
public final boolean equals(Object obj) {
return obj == this
|| obj != null
&& obj.getClass().equals(CopyStatistics.class)
&& baseEquals((CopyStatistics) obj);
}
@Override
public final int hashCode() {
return Objects.hash(baseHashCode(), copiedLogicalBytes, copiedRows);
}
@Override
com.google.api.services.bigquery.model.JobStatistics toPb() {
JobStatistics5 copyStatisticsPb = new JobStatistics5();
copyStatisticsPb.setCopiedLogicalBytes(copiedLogicalBytes);
copyStatisticsPb.setCopiedRows(copiedRows);
return super.toPb().setCopy(copyStatisticsPb);
}
static Builder newBuilder() {
return new Builder();
}
@SuppressWarnings("unchecked")
static CopyStatistics fromPb(com.google.api.services.bigquery.model.JobStatistics statisticPb) {
return new Builder(statisticPb).build();
}
}
/** A Google BigQuery Extract Job statistics. */
public static class ExtractStatistics extends JobStatistics {
private static final long serialVersionUID = -1566598819212767373L;
private final List<Long> destinationUriFileCounts;
private final Long inputBytes;
static final class Builder extends JobStatistics.Builder<ExtractStatistics, Builder> {
private List<Long> destinationUriFileCounts;
private Long inputBytes;
private Builder() {}
private Builder(com.google.api.services.bigquery.model.JobStatistics statisticsPb) {
super(statisticsPb);
if (statisticsPb.getExtract() != null) {
this.destinationUriFileCounts = statisticsPb.getExtract().getDestinationUriFileCounts();
this.inputBytes = statisticsPb.getExtract().getInputBytes();
}
}
Builder setDestinationUriFileCounts(List<Long> destinationUriFileCounts) {
this.destinationUriFileCounts = destinationUriFileCounts;
return self();
}
Builder setInputBytes(Long inputBytes) {
this.inputBytes = inputBytes;
return self();
}
@Override
ExtractStatistics build() {
return new ExtractStatistics(this);
}
}
private ExtractStatistics(Builder builder) {
super(builder);
this.destinationUriFileCounts = builder.destinationUriFileCounts;
this.inputBytes = builder.inputBytes;
}
/**
* Returns the number of files per destination URI or URI pattern specified in the extract job.
* These values will be in the same order as the URIs specified by {@link
* ExtractJobConfiguration#getDestinationUris()}.
*/
public List<Long> getDestinationUriFileCounts() {
return destinationUriFileCounts;
}
/** Returns number of user bytes extracted into the result. */
public Long getInputBytes() {
return inputBytes;
}
@Override
ToStringHelper toStringHelper() {
return super.toStringHelper().add("destinationUriFileCounts", destinationUriFileCounts);
}
@Override
public final boolean equals(Object obj) {
return obj == this
|| obj != null
&& obj.getClass().equals(ExtractStatistics.class)
&& baseEquals((ExtractStatistics) obj);
}
@Override
public final int hashCode() {
return Objects.hash(baseHashCode(), destinationUriFileCounts);
}
@Override
com.google.api.services.bigquery.model.JobStatistics toPb() {
JobStatistics4 extractStatisticsPb = new JobStatistics4();
extractStatisticsPb.setDestinationUriFileCounts(destinationUriFileCounts);
extractStatisticsPb.setInputBytes(inputBytes);
return super.toPb().setExtract(extractStatisticsPb);
}
static Builder newBuilder() {
return new Builder();
}
@SuppressWarnings("unchecked")
static ExtractStatistics fromPb(
com.google.api.services.bigquery.model.JobStatistics statisticPb) {
return new Builder(statisticPb).build();
}
}
/** A Google BigQuery Load Job statistics. */
public static class LoadStatistics extends JobStatistics {
private static final long serialVersionUID = -707369246536309215L;
private final Long inputBytes;
private final Long inputFiles;
private final Long outputBytes;
private final Long outputRows;
private final Long badRecords;
static final class Builder extends JobStatistics.Builder<LoadStatistics, Builder> {
private Long inputBytes;
private Long inputFiles;
private Long outputBytes;
private Long outputRows;
private Long badRecords;
private Builder() {}
private Builder(com.google.api.services.bigquery.model.JobStatistics statisticsPb) {
super(statisticsPb);
if (statisticsPb.getLoad() != null) {
this.inputBytes = statisticsPb.getLoad().getInputFileBytes();
this.inputFiles = statisticsPb.getLoad().getInputFiles();
this.outputBytes = statisticsPb.getLoad().getOutputBytes();
this.outputRows = statisticsPb.getLoad().getOutputRows();
this.badRecords = statisticsPb.getLoad().getBadRecords();
}
}
Builder setInputBytes(Long inputBytes) {
this.inputBytes = inputBytes;
return self();
}
Builder setInputFiles(Long inputFiles) {
this.inputFiles = inputFiles;
return self();
}
Builder setOutputBytes(Long outputBytes) {
this.outputBytes = outputBytes;
return self();
}
Builder setOutputRows(Long outputRows) {
this.outputRows = outputRows;
return self();
}
Builder setBadRecords(Long badRecords) {
this.badRecords = badRecords;
return self();
}
@Override
LoadStatistics build() {
return new LoadStatistics(this);
}
}
private LoadStatistics(Builder builder) {
super(builder);
this.inputBytes = builder.inputBytes;
this.inputFiles = builder.inputFiles;
this.outputBytes = builder.outputBytes;
this.outputRows = builder.outputRows;
this.badRecords = builder.badRecords;
}
/** Returns the number of bytes of source data in a load job. */
public Long getInputBytes() {
return inputBytes;
}
/** Returns the number of source files in a load job. */
public Long getInputFiles() {
return inputFiles;
}
/** Returns the size of the data loaded by a load job so far, in bytes. */
public Long getOutputBytes() {
return outputBytes;
}
/** Returns the number of rows loaded by a load job so far. */
public Long getOutputRows() {
return outputRows;
}
/** Returns the number of bad records reported in a job. */
public Long getBadRecords() {
return badRecords;
}
@Override
ToStringHelper toStringHelper() {
return super.toStringHelper()
.add("inputBytes", inputBytes)
.add("inputFiles", inputFiles)
.add("outputBytes", outputBytes)
.add("outputRows", outputRows)
.add("badRecords", badRecords);
}
@Override
public final boolean equals(Object obj) {
return obj == this
|| obj != null
&& obj.getClass().equals(LoadStatistics.class)
&& baseEquals((LoadStatistics) obj);
}
@Override
public final int hashCode() {
return Objects.hash(
baseHashCode(), inputBytes, inputFiles, outputBytes, outputRows, badRecords);
}
@Override
com.google.api.services.bigquery.model.JobStatistics toPb() {
JobStatistics3 loadStatisticsPb = new JobStatistics3();
loadStatisticsPb.setInputFileBytes(inputBytes);
loadStatisticsPb.setInputFiles(inputFiles);
loadStatisticsPb.setOutputBytes(outputBytes);
loadStatisticsPb.setOutputRows(outputRows);
loadStatisticsPb.setBadRecords(badRecords);
return super.toPb().setLoad(loadStatisticsPb);
}
static Builder newBuilder() {
return new Builder();
}
@SuppressWarnings("unchecked")
static LoadStatistics fromPb(com.google.api.services.bigquery.model.JobStatistics statisticPb) {
return new Builder(statisticPb).build();
}
}
/** A Google BigQuery Query Job statistics. */
public static class QueryStatistics extends JobStatistics {
private static final long serialVersionUID = 7539354109226732354L;
private final BiEngineStats biEngineStats;
private final Integer billingTier;
private final Boolean cacheHit;
private Boolean useReadApi;
private final String ddlOperationPerformed;
private final TableId ddlTargetTable;
private final RoutineId ddlTargetRoutine;
private final Long estimatedBytesProcessed;
private final Long numDmlAffectedRows;
private final DmlStats dmlStats;
private final ExportDataStats exportDataStats;
private final List<TableId> referencedTables;
private final StatementType statementType;
private final Long totalBytesBilled;
private final Long totalBytesProcessed;
private final Long totalPartitionsProcessed;
private final List<QueryStage> queryPlan;
private final List<TimelineSample> timeline;
private final Schema schema;
private final SearchStats searchStats;
private final MetadataCacheStats metadataCacheStats;
private final List<QueryParameter> queryParameters;
/**
* StatementType represents possible types of SQL statements reported as part of the
* QueryStatistics of a BigQuery job.
*/
public static final class StatementType extends StringEnumValue {
private static final long serialVersionUID = 818920627219751204L;
private static final ApiFunction<String, StatementType> CONSTRUCTOR =
new ApiFunction<String, StatementType>() {
@Override
public StatementType apply(String constant) {
return new StatementType(constant);
}
};
private static final StringEnumType<StatementType> type =
new StringEnumType<StatementType>(StatementType.class, CONSTRUCTOR);
public static final StatementType SELECT = type.createAndRegister("SELECT");
public static final StatementType UPDATE = type.createAndRegister("UPDATE");
public static final StatementType INSERT = type.createAndRegister("INSERT");
public static final StatementType DELETE = type.createAndRegister("DELETE");
public static final StatementType CREATE_TABLE = type.createAndRegister("CREATE_TABLE");
public static final StatementType CREATE_TABLE_AS_SELECT =
type.createAndRegister("CREATE_TABLE_AS_SELECT");
public static final StatementType CREATE_VIEW = type.createAndRegister("CREATE_VIEW");
public static final StatementType CREATE_MODEL = type.createAndRegister("CREATE_MODEL");
public static final StatementType CREATE_FUNCTION = type.createAndRegister("CREATE_FUNCTION");
public static final StatementType CREATE_PROCEDURE =
type.createAndRegister("CREATE_PROCEDURE");
public static final StatementType ALTER_TABLE = type.createAndRegister("ALTER_TABLE");
public static final StatementType ALTER_VIEW = type.createAndRegister("ALTER_VIEW");
public static final StatementType DROP_TABLE = type.createAndRegister("DROP_TABLE");
public static final StatementType DROP_VIEW = type.createAndRegister("DROP_VIEW");
public static final StatementType DROP_FUNCTION = type.createAndRegister("DROP_FUNCTION");
public static final StatementType DROP_PROCEDURE = type.createAndRegister("DROP_PROCEDURE");
public static final StatementType MERGE = type.createAndRegister("MERGE");
public static final StatementType CREATE_MATERIALIZED_VIEW =
type.createAndRegister("CREATE_MATERIALIZED_VIEW");
public static final StatementType CREATE_TABLE_FUNCTION =
type.createAndRegister("CREATE_TABLE_FUNCTION");
public static final StatementType CREATE_ROW_ACCESS_POLICY =
type.createAndRegister("CREATE_ROW_ACCESS_POLICY");
public static final StatementType CREATE_SCHEMA = type.createAndRegister("CREATE_SCHEMA");
public static final StatementType CREATE_SNAPSHOT_TABLE =
type.createAndRegister("CREATE_SNAPSHOT_TABLE");
public static final StatementType CREATE_SEARCH_INDEX =
type.createAndRegister("CREATE_SEARCH_INDEX");
public static final StatementType DROP_EXTERNAL_TABLE =
type.createAndRegister("DROP_EXTERNAL_TABLE");
public static final StatementType DROP_MODEL = type.createAndRegister("DROP_MODEL");
public static final StatementType DROP_MATERIALIZED_VIEW =
type.createAndRegister("DROP_MATERIALIZED_VIEW");
public static final StatementType DROP_TABLE_FUNCTION =
type.createAndRegister("DROP_TABLE_FUNCTION");
public static final StatementType DROP_SEARCH_INDEX =
type.createAndRegister("DROP_SEARCH_INDEX");
public static final StatementType DROP_SCHEMA = type.createAndRegister("DROP_SCHEMA");
public static final StatementType DROP_SNAPSHOT_TABLE =
type.createAndRegister("DROP_SNAPSHOT_TABLE");
public static final StatementType DROP_ROW_ACCESS_POLICY =
type.createAndRegister("DROP_ROW_ACCESS_POLICY");
public static final StatementType ALTER_MATERIALIZED_VIEW =
type.createAndRegister("ALTER_MATERIALIZED_VIEW");
public static final StatementType ALTER_SCHEMA = type.createAndRegister("ALTER_SCHEMA");
public static final StatementType SCRIPT = type.createAndRegister("SCRIPT");
public static final StatementType TRUNCATE_TABLE = type.createAndRegister("TRUNCATE_TABLE");
public static final StatementType CREATE_EXTERNAL_TABLE =
type.createAndRegister("CREATE_EXTERNAL_TABLE");
public static final StatementType EXPORT_DATA = type.createAndRegister("EXPORT_DATA");
public static final StatementType EXPORT_MODEL = type.createAndRegister("EXPORT_MODEL");
public static final StatementType LOAD_DATA = type.createAndRegister("LOAD_DATA");
public static final StatementType CALL = type.createAndRegister("CALL");
private StatementType(String constant) {
super(constant);
}
/**
* Get the StatementType for the given String constant, and throw an exception if the constant
* is not recognized.
*/
public static StatementType valueOfStrict(String constant) {
return type.valueOfStrict(constant);
}
/** Get the State for the given String constant, and allow unrecognized values. */
public static StatementType valueOf(String constant) {
return type.valueOf(constant);
}
/** Return the known values for State. */
public static StatementType[] values() {
return type.values();
}
}
/**
* Statistics for the EXPORT DATA statement as part of Query Job. EXTRACT JOB statistics are
* populated in ExtractStatistics.
*/
@AutoValue
public abstract static class ExportDataStats implements Serializable {
private static final long serialVersionUID = 1L;
/**
* Returns number of destination files generated in case of EXPORT DATA statement only.
*
* @return value or {@code null} for none
*/
@Nullable
public abstract Long getFileCount();
/**
* Returns number of destination rows generated in case of EXPORT DATA statement only.
*
* @return value or {@code null} for none
*/
@Nullable
public abstract Long getRowCount();
public abstract Builder toBuilder();
public static Builder newBuilder() {
return new AutoValue_JobStatistics_QueryStatistics_ExportDataStats.Builder();
}
static ExportDataStats fromPb(ExportDataStatistics exportDataStatisticsPb) {
Builder builder = newBuilder();
if (exportDataStatisticsPb.getFileCount() != null) {
builder.setFileCount(exportDataStatisticsPb.getFileCount());
}
if (exportDataStatisticsPb.getRowCount() != null) {
builder.setRowCount(exportDataStatisticsPb.getRowCount());
}
return builder.build();
}
ExportDataStatistics toPb() {
ExportDataStatistics exportDataStatisticsPb = new ExportDataStatistics();
if (getFileCount() != null) {
exportDataStatisticsPb.setFileCount(getFileCount());
}
if (getRowCount() != null) {
exportDataStatisticsPb.setRowCount(getRowCount());
}
return exportDataStatisticsPb;
}
@AutoValue.Builder
public abstract static class Builder {
/**
* Number of destination files generated in case of EXPORT DATA statement only.
*
* @param fileCount fileCount or {@code null} for none
*/
public abstract Builder setFileCount(Long fileCount);
/**
* Number of destination rows generated in case of EXPORT DATA statement only.
*
* @param rowCount rowCount or {@code null} for none
*/
public abstract Builder setRowCount(Long rowCount);
/** Creates a {@code ExportDataStats} object. */
public abstract ExportDataStats build();
}
}
static final class Builder extends JobStatistics.Builder<QueryStatistics, Builder> {
private BiEngineStats biEngineStats;
private Integer billingTier;
private Boolean cacheHit;
private String ddlOperationPerformed;
private TableId ddlTargetTable;
private RoutineId ddlTargetRoutine;
private Long estimatedBytesProcessed;
private Long numDmlAffectedRows;
private DmlStats dmlStats;
private ExportDataStats exportDataStats;
private List<TableId> referencedTables;
private StatementType statementType;
private Long totalBytesBilled;
private Long totalBytesProcessed;
private Long totalPartitionsProcessed;
private List<QueryStage> queryPlan;
private List<TimelineSample> timeline;
private Schema schema;
private List<QueryParameter> queryParameters;
private SearchStats searchStats;
private MetadataCacheStats metadataCacheStats;
private Builder() {}
private Builder(com.google.api.services.bigquery.model.JobStatistics statisticsPb) {
super(statisticsPb);
if (statisticsPb.getQuery() != null) {
if (statisticsPb.getQuery().getBiEngineStatistics() != null) {
this.biEngineStats =
BiEngineStats.fromPb(statisticsPb.getQuery().getBiEngineStatistics());
}
this.billingTier = statisticsPb.getQuery().getBillingTier();
this.cacheHit = statisticsPb.getQuery().getCacheHit();
this.ddlOperationPerformed = statisticsPb.getQuery().getDdlOperationPerformed();
if (statisticsPb.getQuery().getDdlTargetTable() != null) {
this.ddlTargetTable = TableId.fromPb(statisticsPb.getQuery().getDdlTargetTable());
}
if (statisticsPb.getQuery().getDdlTargetRoutine() != null) {
this.ddlTargetRoutine = RoutineId.fromPb(statisticsPb.getQuery().getDdlTargetRoutine());
}
this.estimatedBytesProcessed = statisticsPb.getQuery().getEstimatedBytesProcessed();
this.numDmlAffectedRows = statisticsPb.getQuery().getNumDmlAffectedRows();
this.totalBytesBilled = statisticsPb.getQuery().getTotalBytesBilled();
this.totalBytesProcessed = statisticsPb.getQuery().getTotalBytesProcessed();
this.totalPartitionsProcessed = statisticsPb.getQuery().getTotalPartitionsProcessed();
if (statisticsPb.getQuery().getStatementType() != null) {
this.statementType = StatementType.valueOf(statisticsPb.getQuery().getStatementType());
}
if (statisticsPb.getQuery().getReferencedTables() != null) {
this.referencedTables =
Lists.transform(
statisticsPb.getQuery().getReferencedTables(), TableId.FROM_PB_FUNCTION);
}
if (statisticsPb.getQuery().getQueryPlan() != null) {
this.queryPlan =
Lists.transform(
statisticsPb.getQuery().getQueryPlan(), QueryStage.FROM_PB_FUNCTION);
}
if (statisticsPb.getQuery().getTimeline() != null) {
this.timeline =
Lists.transform(
statisticsPb.getQuery().getTimeline(), TimelineSample.FROM_PB_FUNCTION);
}
if (statisticsPb.getQuery().getSchema() != null) {
this.schema = Schema.fromPb(statisticsPb.getQuery().getSchema());
}
if (statisticsPb.getQuery().getSearchStatistics() != null) {
this.searchStats = SearchStats.fromPb(statisticsPb.getQuery().getSearchStatistics());
}
if (statisticsPb.getQuery().getMetadataCacheStatistics() != null) {
this.metadataCacheStats =
MetadataCacheStats.fromPb(statisticsPb.getQuery().getMetadataCacheStatistics());
}
if (statisticsPb.getQuery().getDmlStats() != null) {
this.dmlStats = DmlStats.fromPb(statisticsPb.getQuery().getDmlStats());
}
if (statisticsPb.getQuery().getExportDataStatistics() != null) {
this.exportDataStats =
ExportDataStats.fromPb(statisticsPb.getQuery().getExportDataStatistics());
}
}
}
Builder setBiEngineStats(BiEngineStats biEngineStats) {
this.biEngineStats = biEngineStats;
return self();
}
Builder setBillingTier(Integer billingTier) {
this.billingTier = billingTier;
return self();
}
Builder setCacheHit(Boolean cacheHit) {
this.cacheHit = cacheHit;
return self();
}
Builder setDDLOperationPerformed(String ddlOperationPerformed) {
this.ddlOperationPerformed = ddlOperationPerformed;
return self();
}
Builder setDDLTargetTable(TableId ddlTargetTable) {
this.ddlTargetTable = ddlTargetTable;
return self();
}
Builder setDDLTargetRoutine(RoutineId ddlTargetRoutine) {
this.ddlTargetRoutine = ddlTargetRoutine;
return self();
}
Builder setEstimatedBytesProcessed(Long estimatedBytesProcessed) {
this.estimatedBytesProcessed = estimatedBytesProcessed;
return self();
}
Builder setNumDmlAffectedRows(Long numDmlAffectedRows) {
this.numDmlAffectedRows = numDmlAffectedRows;
return self();
}
Builder setDmlStats(DmlStats dmlStats) {
this.dmlStats = dmlStats;
return self();
}
Builder setExportDataStats(ExportDataStats exportDataStats) {
this.exportDataStats = exportDataStats;
return self();
}
Builder setReferenceTables(List<TableId> referencedTables) {
this.referencedTables = referencedTables;
return self();
}
Builder setStatementType(StatementType statementType) {
this.statementType = statementType;
return self();
}
Builder setStatementType(String strStatementType) {
this.statementType = StatementType.valueOf(strStatementType);
return self();
}
Builder setTotalBytesBilled(Long totalBytesBilled) {
this.totalBytesBilled = totalBytesBilled;
return self();
}
Builder setTotalBytesProcessed(Long totalBytesProcessed) {
this.totalBytesProcessed = totalBytesProcessed;
return self();
}
Builder setTotalPartitionsProcessed(Long totalPartitionsProcessed) {
this.totalPartitionsProcessed = totalPartitionsProcessed;
return self();
}
Builder setQueryPlan(List<QueryStage> queryPlan) {
this.queryPlan = queryPlan;
return self();
}
Builder setTimeline(List<TimelineSample> timeline) {
this.timeline = timeline;
return self();
}
Builder setSchema(Schema schema) {
this.schema = schema;
return self();
}
Builder setSearchStats(SearchStats searchStats) {
this.searchStats = searchStats;
return self();
}
Builder setMetadataCacheStats(MetadataCacheStats metadataCacheStats) {
this.metadataCacheStats = metadataCacheStats;
return self();
}
Builder setQueryParameters(List<QueryParameter> queryParameters) {
this.queryParameters = queryParameters;
return self();
}
@Override
QueryStatistics build() {
return new QueryStatistics(this);
}
}
private QueryStatistics(Builder builder) {
super(builder);
this.biEngineStats = builder.biEngineStats;
this.billingTier = builder.billingTier;
this.cacheHit = builder.cacheHit;
this.useReadApi = false;
this.ddlOperationPerformed = builder.ddlOperationPerformed;
this.ddlTargetTable = builder.ddlTargetTable;
this.ddlTargetRoutine = builder.ddlTargetRoutine;
this.estimatedBytesProcessed = builder.estimatedBytesProcessed;
this.numDmlAffectedRows = builder.numDmlAffectedRows;
this.dmlStats = builder.dmlStats;
this.exportDataStats = builder.exportDataStats;
this.referencedTables = builder.referencedTables;
this.statementType = builder.statementType;
this.totalBytesBilled = builder.totalBytesBilled;
this.totalBytesProcessed = builder.totalBytesProcessed;
this.totalPartitionsProcessed = builder.totalPartitionsProcessed;
this.queryPlan = builder.queryPlan;
this.timeline = builder.timeline;
this.schema = builder.schema;
this.searchStats = builder.searchStats;
this.metadataCacheStats = builder.metadataCacheStats;
this.queryParameters = builder.queryParameters;
}
/** Returns query statistics specific to the use of BI Engine. */
public BiEngineStats getBiEngineStats() {
return biEngineStats;
}
/** Returns the billing tier for the job. */
public Integer getBillingTier() {
return billingTier;
}
/**
* Returns whether the query result was fetched from the query cache.
*
* @see <a href="https://cloud.google.com/bigquery/querying-data#querycaching">Query Caching</a>
*/
public Boolean getCacheHit() {
return cacheHit;
}
/** Returns whether the query result is read from the high throughput ReadAPI. */
@VisibleForTesting
public Boolean getUseReadApi() {
return useReadApi;
}
/** Sets internal state to reflect the use of the high throughput ReadAPI. */
@VisibleForTesting
public void setUseReadApi(Boolean useReadApi) {
this.useReadApi = useReadApi;
}
/** [BETA] For DDL queries, returns the operation applied to the DDL target table. */
public String getDdlOperationPerformed() {
return ddlOperationPerformed;
}
/** [BETA] For DDL queries, returns the TableID of the targeted table. */
public TableId getDdlTargetTable() {
return ddlTargetTable;
}
/** [BETA] For DDL queries, returns the RoutineId of the targeted routine. */
public RoutineId getDdlTargetRoutine() {
return ddlTargetRoutine;
}
/** The original estimate of bytes processed for the job. */
public Long getEstimatedBytesProcessed() {
return estimatedBytesProcessed;
}
/**
* The number of rows affected by a DML statement. Present only for DML statements INSERT,
* UPDATE or DELETE.
*/
public Long getNumDmlAffectedRows() {
return numDmlAffectedRows;
}
/** Detailed statistics for DML statements. */
public DmlStats getDmlStats() {
return dmlStats;
}
/** Detailed statistics for EXPORT DATA statement. */
public ExportDataStats getExportDataStats() {
return exportDataStats;
}
/**
* Referenced tables for the job. Queries that reference more than 50 tables will not have a
* complete list.
*/
public List<TableId> getReferencedTables() {
return referencedTables;
}
/**
* [BETA] The type of query statement, if valid. Possible values include: SELECT INSERT UPDATE
* DELETE CREATE_TABLE CREATE_TABLE_AS_SELECT DROP_TABLE CREATE_VIEW DROP_VIEW
*/
public StatementType getStatementType() {
return statementType;
}
/** Returns the total number of bytes billed for the job. */
public Long getTotalBytesBilled() {
return totalBytesBilled;
}
/** Returns the total number of bytes processed by the job. */
public Long getTotalBytesProcessed() {
return totalBytesProcessed;
}
/** Total number of partitions processed from all partitioned tables referenced in the job. */
public Long getTotalPartitionsProcessed() {
return totalPartitionsProcessed;
}
/**
* Returns the query plan as a list of stages or {@code null} if a query plan is not available.
* Each stage involves a number of steps that read from data sources, perform a series of
* transformations on the input, and emit an output to a future stage (or the final result). The
* query plan is available for a completed query job and is retained for 7 days.
*
* @see <a href="https://cloud.google.com/bigquery/query-plan-explanation">Query Plan</a>
*/
public List<QueryStage> getQueryPlan() {
return queryPlan;
}
/**
* Return the timeline for the query, as a list of timeline samples. Each sample provides
* information about the overall progress of the query. Information includes time of the sample,
* progress reporting on active, completed, and pending units of work, as well as the cumulative
* estimation of slot-milliseconds consumed by the query.
*/
public List<TimelineSample> getTimeline() {
return timeline;
}
/**
* Returns the schema for the query result. Present only for successful dry run of non-legacy
* SQL queries.
*/
public Schema getSchema() {
return schema;
}
/**
* Statistics for a search query. Populated as part of JobStatistics2. Provides information
* about how indexes are used in search queries. If an index is not used, you can retrieve
* debugging information about the reason why.
*/
public SearchStats getSearchStats() {
return searchStats;
}
/** Statistics for metadata caching in BigLake tables. */
public MetadataCacheStats getMetadataCacheStats() {
return metadataCacheStats;
}
/**
* Standard SQL only: Returns a list of undeclared query parameters detected during a dry run
* validation.
*/
public List<QueryParameter> getQueryParameters() {
return queryParameters;
}
@Override
ToStringHelper toStringHelper() {
return super.toStringHelper()
.add("biEngineStats", biEngineStats)
.add("billingTier", billingTier)
.add("cacheHit", cacheHit)
.add("totalBytesBilled", totalBytesBilled)
.add("totalBytesProcessed", totalBytesProcessed)
.add("queryPlan", queryPlan)
.add("timeline", timeline)
.add("schema", schema)
.add("searchStats", searchStats)
.add("metadataCacheStats", metadataCacheStats)
.add("queryParameters", queryParameters);
}
@Override
public final boolean equals(Object obj) {
return obj == this
|| obj != null
&& obj.getClass().equals(QueryStatistics.class)
&& baseEquals((QueryStatistics) obj);
}
@Override
public final int hashCode() {
return Objects.hash(