@@ -78,10 +78,10 @@ public class QueryStats
78
78
private final int blockedDrivers ;
79
79
private final int completedDrivers ;
80
80
81
- private final int totalNewDrivers ;
82
- private final int queuedNewDrivers ;
83
- private final int runningNewDrivers ;
84
- private final int completedNewDrivers ;
81
+ private final int totalNativeDrivers ;
82
+ private final int queuedNativeDrivers ;
83
+ private final int runningNativeDrivers ;
84
+ private final int completedNativeDrivers ;
85
85
86
86
private final int totalSplits ;
87
87
private final int queuedSplits ;
@@ -162,10 +162,10 @@ public QueryStats(
162
162
int blockedDrivers ,
163
163
int completedDrivers ,
164
164
165
- int totalNewDrivers ,
166
- int queuedNewDrivers ,
167
- int runningNewDrivers ,
168
- int completedNewDrivers ,
165
+ int totalNativeDrivers ,
166
+ int queuedNativeDrivers ,
167
+ int runningNativeDrivers ,
168
+ int completedNativeDrivers ,
169
169
170
170
int totalSplits ,
171
171
int queuedSplits ,
@@ -254,14 +254,14 @@ public QueryStats(
254
254
this .blockedDrivers = blockedDrivers ;
255
255
checkArgument (completedDrivers >= 0 , "completedDrivers is negative" );
256
256
this .completedDrivers = completedDrivers ;
257
- checkArgument (totalNewDrivers >= 0 , "totalNewDrivers is negative" );
258
- this .totalNewDrivers = totalNewDrivers ;
259
- checkArgument (queuedNewDrivers >= 0 , "queuedNewDrivers is negative" );
260
- this .queuedNewDrivers = queuedNewDrivers ;
261
- checkArgument (runningNewDrivers >= 0 , "runningNewDrivers is negative" );
262
- this .runningNewDrivers = runningNewDrivers ;
263
- checkArgument (completedNewDrivers >= 0 , "completedNewDrivers is negative" );
264
- this .completedNewDrivers = completedNewDrivers ;
257
+ checkArgument (totalNativeDrivers >= 0 , "totalNativeDrivers is negative" );
258
+ this .totalNativeDrivers = totalNativeDrivers ;
259
+ checkArgument (queuedNativeDrivers >= 0 , "queuedNativeDrivers is negative" );
260
+ this .queuedNativeDrivers = queuedNativeDrivers ;
261
+ checkArgument (runningNativeDrivers >= 0 , "runningNativeDrivers is negative" );
262
+ this .runningNativeDrivers = runningNativeDrivers ;
263
+ checkArgument (completedNativeDrivers >= 0 , "completedNativeDrivers is negative" );
264
+ this .completedNativeDrivers = completedNativeDrivers ;
265
265
checkArgument (totalSplits >= 0 , "totalSplits is negative" );
266
266
this .totalSplits = totalSplits ;
267
267
checkArgument (queuedSplits >= 0 , "queuedSplits is negative" );
@@ -350,10 +350,10 @@ public QueryStats(
350
350
@ JsonProperty ("blockedDrivers" ) int blockedDrivers ,
351
351
@ JsonProperty ("completedDrivers" ) int completedDrivers ,
352
352
353
- @ JsonProperty ("totalNewDrivers " ) int totalNewDrivers ,
354
- @ JsonProperty ("queuedNewDrivers " ) int queuedNewDrivers ,
355
- @ JsonProperty ("runningNewDrivers " ) int runningNewDrivers ,
356
- @ JsonProperty ("completedNewDrivers " ) int completedNewDrivers ,
353
+ @ JsonProperty ("totalNativeDrivers " ) int totalNativeDrivers ,
354
+ @ JsonProperty ("queuedNativeDrivers " ) int queuedNativeDrivers ,
355
+ @ JsonProperty ("runningNativeDrivers " ) int runningNativeDrivers ,
356
+ @ JsonProperty ("completedNativeDrivers " ) int completedNativeDrivers ,
357
357
358
358
@ JsonProperty ("totalSplits" ) int totalSplits ,
359
359
@ JsonProperty ("queuedSplits" ) int queuedSplits ,
@@ -432,10 +432,10 @@ public QueryStats(
432
432
blockedDrivers ,
433
433
completedDrivers ,
434
434
435
- totalNewDrivers ,
436
- queuedNewDrivers ,
437
- runningNewDrivers ,
438
- completedNewDrivers ,
435
+ totalNativeDrivers ,
436
+ queuedNativeDrivers ,
437
+ runningNativeDrivers ,
438
+ completedNativeDrivers ,
439
439
440
440
totalSplits ,
441
441
queuedSplits ,
@@ -508,10 +508,10 @@ public static QueryStats create(
508
508
int blockedDrivers = 0 ;
509
509
int completedDrivers = 0 ;
510
510
511
- int totalNewDrivers = 0 ;
512
- int queuedNewDrivers = 0 ;
513
- int runningNewDrivers = 0 ;
514
- int completedNewDrivers = 0 ;
511
+ int totalNativeDrivers = 0 ;
512
+ int queuedNativeDrivers = 0 ;
513
+ int runningNativeDrivers = 0 ;
514
+ int completedNativeDrivers = 0 ;
515
515
516
516
int totalSplits = 0 ;
517
517
int queuedSplits = 0 ;
@@ -567,10 +567,10 @@ public static QueryStats create(
567
567
blockedDrivers += stageExecutionStats .getBlockedDrivers ();
568
568
completedDrivers += stageExecutionStats .getCompletedDrivers ();
569
569
570
- totalNewDrivers += stageExecutionStats .getTotalNewDrivers ();
571
- queuedNewDrivers += stageExecutionStats .getQueuedNewDrivers ();
572
- runningNewDrivers += stageExecutionStats .getRunningNewDrivers ();
573
- completedNewDrivers += stageExecutionStats .getCompletedNewDrivers ();
570
+ totalNativeDrivers += stageExecutionStats .getTotalNativeDrivers ();
571
+ queuedNativeDrivers += stageExecutionStats .getQueuedNativeDrivers ();
572
+ runningNativeDrivers += stageExecutionStats .getRunningNativeDrivers ();
573
+ completedNativeDrivers += stageExecutionStats .getCompletedNativeDrivers ();
574
574
575
575
totalSplits += stageExecutionStats .getTotalSplits ();
576
576
queuedSplits += stageExecutionStats .getQueuedSplits ();
@@ -676,10 +676,10 @@ else if (operatorType.equals(TableScanOperator.class.getSimpleName()) || operato
676
676
blockedDrivers ,
677
677
completedDrivers ,
678
678
679
- totalNewDrivers ,
680
- queuedNewDrivers ,
681
- runningNewDrivers ,
682
- completedNewDrivers ,
679
+ totalNativeDrivers ,
680
+ queuedNativeDrivers ,
681
+ runningNativeDrivers ,
682
+ completedNativeDrivers ,
683
683
684
684
totalSplits ,
685
685
queuedSplits ,
@@ -973,27 +973,27 @@ public int getCompletedDrivers()
973
973
}
974
974
975
975
@ JsonProperty
976
- public int getTotalNewDrivers ()
976
+ public int getTotalNativeDrivers ()
977
977
{
978
- return totalNewDrivers ;
978
+ return totalNativeDrivers ;
979
979
}
980
980
981
981
@ JsonProperty
982
- public int getQueuedNewDrivers ()
982
+ public int getQueuedNativeDrivers ()
983
983
{
984
- return queuedNewDrivers ;
984
+ return queuedNativeDrivers ;
985
985
}
986
986
987
987
@ JsonProperty
988
- public int getRunningNewDrivers ()
988
+ public int getRunningNativeDrivers ()
989
989
{
990
- return runningNewDrivers ;
990
+ return runningNativeDrivers ;
991
991
}
992
992
993
993
@ JsonProperty
994
- public int getCompletedNewDrivers ()
994
+ public int getCompletedNativeDrivers ()
995
995
{
996
- return completedNewDrivers ;
996
+ return completedNativeDrivers ;
997
997
}
998
998
999
999
@ JsonProperty
0 commit comments