forked from preethi623/Big-Data-Benchmark-for-Big-Bench_copy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlog_bb_500g
10148 lines (9847 loc) · 504 KB
/
log_bb_500g
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
@@@/users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q01/query01.sql
Additional local hive settings found. Adding /users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q01/engineLocalSettings.sql to hive init.
===============================================
Running query : q01
-----------------------------------------------
benchmark phase: run_query
stream number : 0
user parameter file:
user settings file :
log: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs/q01_hive_run_query_0.log
===============================================
checking existence of local: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs
creating/cleaning/set permissions for hdfs tmp and result folders for this query
hdfs client: hadoop fs
Duration for hdfs prepare: 0h 0m 16s
Additional local hive settings found. Adding /users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q01/engineLocalSettings.sql to hive init.
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/users/wentingt/apache-hive-2.3.2-bin/lib/log4j-slf4j-impl-2.6.2.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/users/wentingt/hadoop-3.0.0-beta1-src/hadoop-dist/target/hadoop-3.0.0-beta1/share/hadoop/common/lib/slf4j-log4j12-1.7.25.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.apache.logging.slf4j.Log4jLoggerFactory]
Logging initialized using configuration in jar:file:/users/wentingt/apache-hive-2.3.2-bin/lib/hive-common-2.3.2.jar!/hive-log4j2.properties Async: true
hive.execution.engine=mr
hive.cbo.enable=true
hive.stats.fetch.partition.stats=true
hive.script.operator.truncate.env=false
hive.compute.query.using.stats=true
hive.vectorized.execution.enabled=false
hive.vectorized.execution.reduce.enabled=true
hive.stats.autogather=true
mapreduce.input.fileinputformat.split.minsize=1
mapreduce.input.fileinputformat.split.maxsize=256000000
hive.exec.reducers.bytes.per.reducer=256000000
hive.exec.reducers.max=1009
hive.exec.parallel=false
hive.exec.parallel.thread.number=8
hive.exec.compress.intermediate=false
hive.exec.compress.output=false
mapred.map.output.compression.codec=org.apache.hadoop.io.compress.DefaultCodec
mapred.output.compression.codec=org.apache.hadoop.io.compress.DefaultCodec
hive.default.fileformat=TEXTFILE
hive.auto.convert.sortmerge.join=false
hive.auto.convert.sortmerge.join.noconditionaltask is undefined
hive.optimize.bucketmapjoin=false
hive.optimize.bucketmapjoin.sortedmerge=false
hive.auto.convert.join.noconditionaltask.size=10000000
hive.auto.convert.join=true
hive.optimize.mapjoin.mapreduce is undefined
hive.mapred.local.mem=0
hive.mapjoin.smalltable.filesize=25000000
hive.mapjoin.localtask.max.memory.usage=0.9
hive.optimize.skewjoin=false
hive.optimize.skewjoin.compiletime=false
hive.optimize.ppd=true
hive.optimize.ppd.storage=true
hive.ppd.recognizetransivity=true
hive.optimize.index.filter=false
hive.optimize.sampling.orderby=false
hive.optimize.sampling.orderby.number=1000
hive.optimize.sampling.orderby.percent=0.1
bigbench.hive.optimize.sampling.orderby=true
bigbench.hive.optimize.sampling.orderby.number=20000
bigbench.hive.optimize.sampling.orderby.percent=0.1
hive.groupby.skewindata=false
hive.exec.submit.local.task.via.child=true
Added [/users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/Resources/bigbenchqueriesmr.jar] to class path
Added resources: [/users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/Resources/bigbenchqueriesmr.jar]
OK
Time taken: 0.01 seconds
hive.exec.compress.output=false
OK
Time taken: 0.065 seconds
OK
Time taken: 0.507 seconds
OK
STAGE DEPENDENCIES:
Stage-8 is a root stage
Stage-2 depends on stages: Stage-8
Stage-3 depends on stages: Stage-2
Stage-4 depends on stages: Stage-3
Stage-0 depends on stages: Stage-4
Stage-5 depends on stages: Stage-0
STAGE PLANS:
Stage: Stage-8
Map Reduce Local Work
Alias -> Map Local Tables:
soldtogetherpairs:solditemsperticket:i
Fetch Operator
limit: -1
Alias -> Map Local Operator Tree:
soldtogetherpairs:solditemsperticket:i
TableScan
alias: i
Statistics: Num rows: 17820 Data size: 31240208 Basic stats: COMPLETE Column stats: NONE
Filter Operator
predicate: (i_item_sk is not null and (i_category_id) IN (1, 2, 3)) (type: boolean)
Statistics: Num rows: 8910 Data size: 15620104 Basic stats: COMPLETE Column stats: NONE
HashTable Sink Operator
keys:
0 ss_item_sk (type: bigint)
1 i_item_sk (type: bigint)
Stage: Stage-2
Map Reduce
Map Operator Tree:
TableScan
alias: s
Statistics: Num rows: 667579 Data size: 953293700 Basic stats: COMPLETE Column stats: NONE
Filter Operator
predicate: (ss_item_sk is not null and (ss_store_sk) IN (10, 20, 33, 40, 50)) (type: boolean)
Statistics: Num rows: 333790 Data size: 476647563 Basic stats: COMPLETE Column stats: NONE
Map Join Operator
condition map:
Inner Join 0 to 1
keys:
0 ss_item_sk (type: bigint)
1 i_item_sk (type: bigint)
outputColumnNames: _col2, _col9, _col26
Statistics: Num rows: 367169 Data size: 524312330 Basic stats: COMPLETE Column stats: NONE
Filter Operator
predicate: (_col2 = _col26) (type: boolean)
Statistics: Num rows: 183584 Data size: 262155451 Basic stats: COMPLETE Column stats: NONE
Select Operator
expressions: _col9 (type: bigint), _col2 (type: bigint)
outputColumnNames: _col9, _col2
Statistics: Num rows: 183584 Data size: 262155451 Basic stats: COMPLETE Column stats: NONE
Group By Operator
aggregations: collect_set(_col2)
keys: _col9 (type: bigint)
mode: hash
outputColumnNames: _col0, _col1
Statistics: Num rows: 183584 Data size: 262155451 Basic stats: COMPLETE Column stats: NONE
Reduce Output Operator
key expressions: _col0 (type: bigint)
sort order: +
Map-reduce partition columns: _col0 (type: bigint)
Statistics: Num rows: 183584 Data size: 262155451 Basic stats: COMPLETE Column stats: NONE
value expressions: _col1 (type: array<bigint>)
Local Work:
Map Reduce Local Work
Reduce Operator Tree:
Group By Operator
aggregations: collect_set(VALUE._col0)
keys: KEY._col0 (type: bigint)
mode: mergepartial
outputColumnNames: _col0, _col1
Statistics: Num rows: 91792 Data size: 131077725 Basic stats: COMPLETE Column stats: NONE
Select Operator
expressions: sort_array(_col1) (type: array<bigint>), false (type: boolean)
outputColumnNames: _col0, _col1
Statistics: Num rows: 91792 Data size: 131077725 Basic stats: COMPLETE Column stats: NONE
UDTF Operator
Statistics: Num rows: 91792 Data size: 131077725 Basic stats: COMPLETE Column stats: NONE
function name: io.bigdatabenchmark.v1.queries.udf.PairwiseUDTF@451a4187
Group By Operator
aggregations: count()
keys: itema (type: string), itemb (type: string)
mode: hash
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 91792 Data size: 131077725 Basic stats: COMPLETE Column stats: NONE
File Output Operator
compressed: false
table:
input format: org.apache.hadoop.mapred.SequenceFileInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat
serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe
Stage: Stage-3
Map Reduce
Map Operator Tree:
TableScan
Reduce Output Operator
key expressions: _col0 (type: string), _col1 (type: string)
sort order: ++
Map-reduce partition columns: _col0 (type: string), _col1 (type: string)
Statistics: Num rows: 91792 Data size: 131077725 Basic stats: COMPLETE Column stats: NONE
value expressions: _col2 (type: bigint)
Reduce Operator Tree:
Group By Operator
aggregations: count(VALUE._col0)
keys: KEY._col0 (type: string), KEY._col1 (type: string)
mode: mergepartial
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 45896 Data size: 65538862 Basic stats: COMPLETE Column stats: NONE
Filter Operator
predicate: (_col2 > 50) (type: boolean)
Statistics: Num rows: 15298 Data size: 21845335 Basic stats: COMPLETE Column stats: NONE
File Output Operator
compressed: false
table:
input format: org.apache.hadoop.mapred.SequenceFileInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat
serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe
Stage: Stage-4
Map Reduce
Map Operator Tree:
TableScan
Reduce Output Operator
key expressions: _col2 (type: bigint), _col0 (type: string), _col1 (type: string)
sort order: -++
Statistics: Num rows: 15298 Data size: 21845335 Basic stats: COMPLETE Column stats: NONE
TopN Hash Memory Usage: 0.1
Reduce Operator Tree:
Select Operator
expressions: KEY.reducesinkkey1 (type: string), KEY.reducesinkkey2 (type: string), KEY.reducesinkkey0 (type: bigint)
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 15298 Data size: 21845335 Basic stats: COMPLETE Column stats: NONE
Limit
Number of rows: 100
Statistics: Num rows: 100 Data size: 142700 Basic stats: COMPLETE Column stats: NONE
Select Operator
expressions: UDFToLong(_col0) (type: bigint), UDFToLong(_col1) (type: bigint), _col2 (type: bigint)
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 100 Data size: 142700 Basic stats: COMPLETE Column stats: NONE
File Output Operator
compressed: false
Statistics: Num rows: 100 Data size: 142700 Basic stats: COMPLETE Column stats: NONE
table:
input format: org.apache.hadoop.mapred.TextInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
name: bigbench.q01_hive_run_query_0_result
Stage: Stage-0
Move Operator
tables:
replace: false
table:
input format: org.apache.hadoop.mapred.TextInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
name: bigbench.q01_hive_run_query_0_result
Stage: Stage-5
Stats-Aggr Operator
Time taken: 2.213 seconds, Fetched: 163 row(s)
======= q01_hive_run_query_0 time =======
Start timestamp: 2018/02/12:13:09:30 1518462570
Stop timestamp: 2018/02/12:13:09:46 1518462586
Duration: 0h 0m 16s
q01_hive_run_query_0 SUCCESS exit code: 0
----- result -----
EMPTY bytes: 0
to display: hadoop fs -cat /user/wentingt/benchmarks/bigbench/queryResults/q01_hive_run_query_0_result/*
----- logs -----
time&status: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs/times.csv
full log: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs/q01_hive_run_query_0.log
=========================
@@@/users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q02/query02.sql
Additional local hive settings found. Adding /users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q02/engineLocalSettings.sql to hive init.
===============================================
Running query : q02
-----------------------------------------------
benchmark phase: run_query
stream number : 0
user parameter file:
user settings file :
log: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs/q02_hive_run_query_0.log
===============================================
checking existence of local: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs
creating/cleaning/set permissions for hdfs tmp and result folders for this query
hdfs client: hadoop fs
Duration for hdfs prepare: 0h 0m 17s
Additional local hive settings found. Adding /users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q02/engineLocalSettings.sql to hive init.
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/users/wentingt/apache-hive-2.3.2-bin/lib/log4j-slf4j-impl-2.6.2.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/users/wentingt/hadoop-3.0.0-beta1-src/hadoop-dist/target/hadoop-3.0.0-beta1/share/hadoop/common/lib/slf4j-log4j12-1.7.25.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.apache.logging.slf4j.Log4jLoggerFactory]
Logging initialized using configuration in jar:file:/users/wentingt/apache-hive-2.3.2-bin/lib/hive-common-2.3.2.jar!/hive-log4j2.properties Async: true
hive.execution.engine=mr
hive.cbo.enable=true
hive.stats.fetch.partition.stats=true
hive.script.operator.truncate.env=false
hive.compute.query.using.stats=true
hive.vectorized.execution.enabled=false
hive.vectorized.execution.reduce.enabled=true
hive.stats.autogather=true
mapreduce.input.fileinputformat.split.minsize=1
mapreduce.input.fileinputformat.split.maxsize=256000000
hive.exec.reducers.bytes.per.reducer=256000000
hive.exec.reducers.max=1009
hive.exec.parallel=false
hive.exec.parallel.thread.number=8
hive.exec.compress.intermediate=false
hive.exec.compress.output=false
mapred.map.output.compression.codec=org.apache.hadoop.io.compress.DefaultCodec
mapred.output.compression.codec=org.apache.hadoop.io.compress.DefaultCodec
hive.default.fileformat=TEXTFILE
hive.auto.convert.sortmerge.join=false
hive.auto.convert.sortmerge.join.noconditionaltask is undefined
hive.optimize.bucketmapjoin=false
hive.optimize.bucketmapjoin.sortedmerge=false
hive.auto.convert.join.noconditionaltask.size=10000000
hive.auto.convert.join=true
hive.optimize.mapjoin.mapreduce is undefined
hive.mapred.local.mem=0
hive.mapjoin.smalltable.filesize=25000000
hive.mapjoin.localtask.max.memory.usage=0.9
hive.optimize.skewjoin=false
hive.optimize.skewjoin.compiletime=false
hive.optimize.ppd=true
hive.optimize.ppd.storage=true
hive.ppd.recognizetransivity=true
hive.optimize.index.filter=false
hive.optimize.sampling.orderby=false
hive.optimize.sampling.orderby.number=1000
hive.optimize.sampling.orderby.percent=0.1
bigbench.hive.optimize.sampling.orderby=true
bigbench.hive.optimize.sampling.orderby.number=20000
bigbench.hive.optimize.sampling.orderby.percent=0.1
hive.groupby.skewindata=false
hive.exec.submit.local.task.via.child=true
Added [/users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/Resources/bigbenchqueriesmr.jar] to class path
Added resources: [/users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/Resources/bigbenchqueriesmr.jar]
OK
Time taken: 0.014 seconds
Added resources: [/users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q02/q2-sessionize.py]
OK
Time taken: 0.079 seconds
OK
Time taken: 0.835 seconds
hive.exec.compress.output=false
OK
Time taken: 0.013 seconds
OK
Time taken: 0.131 seconds
OK
STAGE DEPENDENCIES:
Stage-1 is a root stage
Stage-2 depends on stages: Stage-1
Stage-3 depends on stages: Stage-2
Stage-4 depends on stages: Stage-3
Stage-0 depends on stages: Stage-4
Stage-5 depends on stages: Stage-0
STAGE PLANS:
Stage: Stage-1
Map Reduce
Map Operator Tree:
TableScan
alias: web_clickstreams
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
Filter Operator
predicate: (wcs_item_sk is not null and wcs_user_sk is not null) (type: boolean)
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
Select Operator
expressions: wcs_user_sk (type: bigint), wcs_item_sk (type: bigint), ((((wcs_click_date_sk * 24) * 60) * 60) + wcs_click_time_sk) (type: bigint)
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
Reduce Output Operator
key expressions: _col0 (type: bigint), _col2 (type: bigint)
sort order: ++
Map-reduce partition columns: _col0 (type: bigint)
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
value expressions: _col1 (type: bigint)
Reduce Operator Tree:
Select Operator
expressions: KEY.reducesinkkey0 (type: bigint), KEY.reducesinkkey1 (type: bigint), VALUE._col0 (type: bigint)
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
Transform Operator
command: python q2-sessionize.py 3600
output info:
input format: org.apache.hadoop.mapred.TextInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
Group By Operator
keys: _col1 (type: string), _col0 (type: bigint)
mode: hash
outputColumnNames: _col0, _col1
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
File Output Operator
compressed: false
table:
input format: org.apache.hadoop.mapred.SequenceFileInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat
serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe
Stage: Stage-2
Map Reduce
Map Operator Tree:
TableScan
Reduce Output Operator
key expressions: _col0 (type: string), _col1 (type: bigint)
sort order: ++
Map-reduce partition columns: _col0 (type: string)
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
Reduce Operator Tree:
Group By Operator
keys: KEY._col0 (type: string), KEY._col1 (type: bigint)
mode: mergepartial
outputColumnNames: _col0, _col1
Statistics: Num rows: 3385275 Data size: 126668708 Basic stats: COMPLETE Column stats: NONE
Group By Operator
aggregations: collect_list(_col1)
keys: _col0 (type: string)
mode: complete
outputColumnNames: _col0, _col1
Statistics: Num rows: 1692637 Data size: 63334335 Basic stats: COMPLETE Column stats: NONE
Filter Operator
predicate: array_contains(_col1, 10001) (type: boolean)
Statistics: Num rows: 846318 Data size: 31667148 Basic stats: COMPLETE Column stats: NONE
Select Operator
expressions: _col1 (type: array<bigint>)
outputColumnNames: _col0
Statistics: Num rows: 846318 Data size: 31667148 Basic stats: COMPLETE Column stats: NONE
UDTF Operator
Statistics: Num rows: 846318 Data size: 31667148 Basic stats: COMPLETE Column stats: NONE
function name: explode
Filter Operator
predicate: (col <> 10001) (type: boolean)
Statistics: Num rows: 846318 Data size: 31667148 Basic stats: COMPLETE Column stats: NONE
Group By Operator
aggregations: count()
keys: col (type: bigint)
mode: hash
outputColumnNames: _col0, _col1
Statistics: Num rows: 846318 Data size: 31667148 Basic stats: COMPLETE Column stats: NONE
File Output Operator
compressed: false
table:
input format: org.apache.hadoop.mapred.SequenceFileInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat
serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe
Stage: Stage-3
Map Reduce
Map Operator Tree:
TableScan
Reduce Output Operator
key expressions: _col0 (type: bigint)
sort order: +
Map-reduce partition columns: _col0 (type: bigint)
Statistics: Num rows: 846318 Data size: 31667148 Basic stats: COMPLETE Column stats: NONE
value expressions: _col1 (type: bigint)
Reduce Operator Tree:
Group By Operator
aggregations: count(VALUE._col0)
keys: KEY._col0 (type: bigint)
mode: mergepartial
outputColumnNames: _col0, _col1
Statistics: Num rows: 423159 Data size: 15833574 Basic stats: COMPLETE Column stats: NONE
Select Operator
expressions: _col0 (type: bigint), 10001 (type: int), _col1 (type: bigint)
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 423159 Data size: 15833574 Basic stats: COMPLETE Column stats: NONE
File Output Operator
compressed: false
table:
input format: org.apache.hadoop.mapred.SequenceFileInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat
serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe
Stage: Stage-4
Map Reduce
Map Operator Tree:
TableScan
Reduce Output Operator
key expressions: _col2 (type: bigint), _col0 (type: bigint)
sort order: -+
Statistics: Num rows: 423159 Data size: 15833574 Basic stats: COMPLETE Column stats: NONE
TopN Hash Memory Usage: 0.1
Reduce Operator Tree:
Select Operator
expressions: KEY.reducesinkkey1 (type: bigint), 10001 (type: int), KEY.reducesinkkey0 (type: bigint)
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 423159 Data size: 15833574 Basic stats: COMPLETE Column stats: NONE
Limit
Number of rows: 30
Statistics: Num rows: 30 Data size: 1110 Basic stats: COMPLETE Column stats: NONE
Select Operator
expressions: _col0 (type: bigint), 10001 (type: bigint), _col2 (type: bigint)
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 30 Data size: 1110 Basic stats: COMPLETE Column stats: NONE
File Output Operator
compressed: false
Statistics: Num rows: 30 Data size: 1110 Basic stats: COMPLETE Column stats: NONE
table:
input format: org.apache.hadoop.mapred.TextInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
name: bigbench.q02_hive_run_query_0_result
Stage: Stage-0
Move Operator
tables:
replace: false
table:
input format: org.apache.hadoop.mapred.TextInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
name: bigbench.q02_hive_run_query_0_result
Stage: Stage-5
Stats-Aggr Operator
Time taken: 0.687 seconds, Fetched: 170 row(s)
OK
Time taken: 1.308 seconds
======= q02_hive_run_query_0 time =======
Start timestamp: 2018/02/12:13:10:05 1518462605
Stop timestamp: 2018/02/12:13:10:20 1518462620
Duration: 0h 0m 15s
q02_hive_run_query_0 SUCCESS exit code: 0
----- result -----
EMPTY bytes: 0
to display: hadoop fs -cat /user/wentingt/benchmarks/bigbench/queryResults/q02_hive_run_query_0_result/*
----- logs -----
time&status: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs/times.csv
full log: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs/q02_hive_run_query_0.log
=========================
@@@/users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q03/query03.sql
Additional local hive settings found. Adding /users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q03/engineLocalSettings.sql to hive init.
===============================================
Running query : q03
-----------------------------------------------
benchmark phase: run_query
stream number : 0
user parameter file:
user settings file :
log: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs/q03_hive_run_query_0.log
===============================================
checking existence of local: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs
creating/cleaning/set permissions for hdfs tmp and result folders for this query
hdfs client: hadoop fs
Duration for hdfs prepare: 0h 0m 16s
Additional local hive settings found. Adding /users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q03/engineLocalSettings.sql to hive init.
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/users/wentingt/apache-hive-2.3.2-bin/lib/log4j-slf4j-impl-2.6.2.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/users/wentingt/hadoop-3.0.0-beta1-src/hadoop-dist/target/hadoop-3.0.0-beta1/share/hadoop/common/lib/slf4j-log4j12-1.7.25.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.apache.logging.slf4j.Log4jLoggerFactory]
Logging initialized using configuration in jar:file:/users/wentingt/apache-hive-2.3.2-bin/lib/hive-common-2.3.2.jar!/hive-log4j2.properties Async: true
hive.execution.engine=mr
hive.cbo.enable=true
hive.stats.fetch.partition.stats=true
hive.script.operator.truncate.env=false
hive.compute.query.using.stats=true
hive.vectorized.execution.enabled=false
hive.vectorized.execution.reduce.enabled=true
hive.stats.autogather=true
mapreduce.input.fileinputformat.split.minsize=1
mapreduce.input.fileinputformat.split.maxsize=256000000
hive.exec.reducers.bytes.per.reducer=256000000
hive.exec.reducers.max=1009
hive.exec.parallel=false
hive.exec.parallel.thread.number=8
hive.exec.compress.intermediate=false
hive.exec.compress.output=false
mapred.map.output.compression.codec=org.apache.hadoop.io.compress.DefaultCodec
mapred.output.compression.codec=org.apache.hadoop.io.compress.DefaultCodec
hive.default.fileformat=TEXTFILE
hive.auto.convert.sortmerge.join=false
hive.auto.convert.sortmerge.join.noconditionaltask is undefined
hive.optimize.bucketmapjoin=false
hive.optimize.bucketmapjoin.sortedmerge=false
hive.auto.convert.join.noconditionaltask.size=10000000
hive.auto.convert.join=true
hive.optimize.mapjoin.mapreduce is undefined
hive.mapred.local.mem=0
hive.mapjoin.smalltable.filesize=25000000
hive.mapjoin.localtask.max.memory.usage=0.9
hive.optimize.skewjoin=false
hive.optimize.skewjoin.compiletime=false
hive.optimize.ppd=true
hive.optimize.ppd.storage=true
hive.ppd.recognizetransivity=true
hive.optimize.index.filter=false
hive.optimize.sampling.orderby=false
hive.optimize.sampling.orderby.number=1000
hive.optimize.sampling.orderby.percent=0.1
bigbench.hive.optimize.sampling.orderby=true
bigbench.hive.optimize.sampling.orderby.number=20000
bigbench.hive.optimize.sampling.orderby.percent=0.1
hive.groupby.skewindata=false
hive.exec.submit.local.task.via.child=true
Added resources: [/users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q03/q03_filterLast_N_viewedItmes_within_y_days.py]
hive.exec.compress.output=false
OK
Time taken: 0.095 seconds
OK
Time taken: 0.565 seconds
OK
STAGE DEPENDENCIES:
Stage-1 is a root stage
Stage-9 depends on stages: Stage-1
Stage-3 depends on stages: Stage-9
Stage-4 depends on stages: Stage-3
Stage-5 depends on stages: Stage-4
Stage-0 depends on stages: Stage-5
Stage-6 depends on stages: Stage-0
STAGE PLANS:
Stage: Stage-1
Map Reduce
Map Operator Tree:
TableScan
alias: w
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
Filter Operator
predicate: (wcs_user_sk is not null and wcs_item_sk is not null) (type: boolean)
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
Select Operator
expressions: wcs_user_sk (type: bigint), ((((wcs_click_date_sk * 24) * 60) * 60) + wcs_click_time_sk) (type: bigint), wcs_item_sk (type: bigint), wcs_sales_sk (type: bigint)
outputColumnNames: _col0, _col1, _col2, _col3
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
Reduce Output Operator
key expressions: _col0 (type: bigint), _col1 (type: bigint), _col3 (type: bigint), _col2 (type: bigint)
sort order: ++++
Map-reduce partition columns: _col0 (type: bigint)
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
Reduce Operator Tree:
Select Operator
expressions: KEY.reducesinkkey0 (type: bigint), KEY.reducesinkkey1 (type: bigint), KEY.reducesinkkey3 (type: bigint), KEY.reducesinkkey2 (type: bigint)
outputColumnNames: _col0, _col1, _col2, _col3
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
Transform Operator
command: python q03_filterLast_N_viewedItmes_within_y_days.py 864000 5 10001
output info:
input format: org.apache.hadoop.mapred.TextInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
Filter Operator
predicate: _col1 is not null (type: boolean)
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
File Output Operator
compressed: false
table:
input format: org.apache.hadoop.mapred.SequenceFileInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat
serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe
Stage: Stage-9
Map Reduce Local Work
Alias -> Map Local Tables:
distributed:i
Fetch Operator
limit: -1
Alias -> Map Local Operator Tree:
distributed:i
TableScan
alias: i
Statistics: Num rows: 17820 Data size: 31240208 Basic stats: COMPLETE Column stats: NONE
Filter Operator
predicate: (i_item_sk is not null and (i_category_id) IN (2, 3)) (type: boolean)
Statistics: Num rows: 8910 Data size: 15620104 Basic stats: COMPLETE Column stats: NONE
HashTable Sink Operator
keys:
0 i_item_sk (type: bigint)
1 _col1 (type: bigint)
Stage: Stage-3
Map Reduce
Map Operator Tree:
TableScan
Map Join Operator
condition map:
Inner Join 0 to 1
keys:
0 i_item_sk (type: bigint)
1 _col1 (type: bigint)
outputColumnNames: _col0, _col25, _col26
Statistics: Num rows: 7447605 Data size: 278671163 Basic stats: COMPLETE Column stats: NONE
Filter Operator
predicate: (_col0 = _col26) (type: boolean)
Statistics: Num rows: 3723802 Data size: 139335562 Basic stats: COMPLETE Column stats: NONE
Select Operator
expressions: _col25 (type: bigint), _col26 (type: bigint)
outputColumnNames: _col22, _col23
Statistics: Num rows: 3723802 Data size: 139335562 Basic stats: COMPLETE Column stats: NONE
Reduce Output Operator
key expressions: _col23 (type: bigint), _col22 (type: bigint)
sort order: ++
Map-reduce partition columns: _col23 (type: bigint), _col22 (type: bigint)
Statistics: Num rows: 3723802 Data size: 139335562 Basic stats: COMPLETE Column stats: NONE
Local Work:
Map Reduce Local Work
Reduce Operator Tree:
Select Operator
expressions: KEY.reducesinkkey1 (type: bigint), KEY.reducesinkkey0 (type: bigint)
outputColumnNames: _col22, _col23
Statistics: Num rows: 3723802 Data size: 139335562 Basic stats: COMPLETE Column stats: NONE
Group By Operator
aggregations: count()
keys: _col22 (type: bigint), _col23 (type: bigint)
mode: hash
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 3723802 Data size: 139335562 Basic stats: COMPLETE Column stats: NONE
File Output Operator
compressed: false
table:
input format: org.apache.hadoop.mapred.SequenceFileInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat
serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe
Stage: Stage-4
Map Reduce
Map Operator Tree:
TableScan
Reduce Output Operator
key expressions: _col0 (type: bigint), _col1 (type: bigint)
sort order: ++
Map-reduce partition columns: _col0 (type: bigint), _col1 (type: bigint)
Statistics: Num rows: 3723802 Data size: 139335562 Basic stats: COMPLETE Column stats: NONE
value expressions: _col2 (type: bigint)
Reduce Operator Tree:
Group By Operator
aggregations: count(VALUE._col0)
keys: KEY._col0 (type: bigint), KEY._col1 (type: bigint)
mode: mergepartial
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 1861901 Data size: 69667781 Basic stats: COMPLETE Column stats: NONE
File Output Operator
compressed: false
table:
input format: org.apache.hadoop.mapred.SequenceFileInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat
serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe
Stage: Stage-5
Map Reduce
Map Operator Tree:
TableScan
Reduce Output Operator
key expressions: _col2 (type: bigint), _col0 (type: bigint), _col1 (type: bigint)
sort order: -++
Statistics: Num rows: 1861901 Data size: 69667781 Basic stats: COMPLETE Column stats: NONE
TopN Hash Memory Usage: 0.1
Reduce Operator Tree:
Select Operator
expressions: KEY.reducesinkkey1 (type: bigint), KEY.reducesinkkey2 (type: bigint), KEY.reducesinkkey0 (type: bigint)
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 1861901 Data size: 69667781 Basic stats: COMPLETE Column stats: NONE
Limit
Number of rows: 100
Statistics: Num rows: 100 Data size: 3700 Basic stats: COMPLETE Column stats: NONE
File Output Operator
compressed: false
Statistics: Num rows: 100 Data size: 3700 Basic stats: COMPLETE Column stats: NONE
table:
input format: org.apache.hadoop.mapred.TextInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
name: bigbench.q03_hive_run_query_0_result
Stage: Stage-0
Move Operator
tables:
replace: false
table:
input format: org.apache.hadoop.mapred.TextInputFormat
output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
name: bigbench.q03_hive_run_query_0_result
Stage: Stage-6
Stats-Aggr Operator
Time taken: 1.173 seconds, Fetched: 176 row(s)
======= q03_hive_run_query_0 time =======
Start timestamp: 2018/02/12:13:10:38 1518462638
Stop timestamp: 2018/02/12:13:10:53 1518462653
Duration: 0h 0m 15s
q03_hive_run_query_0 SUCCESS exit code: 0
----- result -----
EMPTY bytes: 0
to display: hadoop fs -cat /user/wentingt/benchmarks/bigbench/queryResults/q03_hive_run_query_0_result/*
----- logs -----
time&status: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs/times.csv
full log: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs/q03_hive_run_query_0.log
=========================
@@@/users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q04/query04.sql
Additional local hive settings found. Adding /users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q04/engineLocalSettings.sql to hive init.
===============================================
Running query : q04
-----------------------------------------------
benchmark phase: run_query
stream number : 0
user parameter file:
user settings file :
log: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs/q04_hive_run_query_0.log
===============================================
checking existence of local: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs
creating/cleaning/set permissions for hdfs tmp and result folders for this query
hdfs client: hadoop fs
Duration for hdfs prepare: 0h 0m 16s
Additional local hive settings found. Adding /users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q04/engineLocalSettings.sql to hive init.
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/users/wentingt/apache-hive-2.3.2-bin/lib/log4j-slf4j-impl-2.6.2.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/users/wentingt/hadoop-3.0.0-beta1-src/hadoop-dist/target/hadoop-3.0.0-beta1/share/hadoop/common/lib/slf4j-log4j12-1.7.25.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.apache.logging.slf4j.Log4jLoggerFactory]
Logging initialized using configuration in jar:file:/users/wentingt/apache-hive-2.3.2-bin/lib/hive-common-2.3.2.jar!/hive-log4j2.properties Async: true
hive.execution.engine=mr
hive.cbo.enable=true
hive.stats.fetch.partition.stats=true
hive.script.operator.truncate.env=false
hive.compute.query.using.stats=true
hive.vectorized.execution.enabled=false
hive.vectorized.execution.reduce.enabled=true
hive.stats.autogather=true
mapreduce.input.fileinputformat.split.minsize=1
mapreduce.input.fileinputformat.split.maxsize=256000000
hive.exec.reducers.bytes.per.reducer=256000000
hive.exec.reducers.max=1009
hive.exec.parallel=false
hive.exec.parallel.thread.number=8
hive.exec.compress.intermediate=false
hive.exec.compress.output=false
mapred.map.output.compression.codec=org.apache.hadoop.io.compress.DefaultCodec
mapred.output.compression.codec=org.apache.hadoop.io.compress.DefaultCodec
hive.default.fileformat=TEXTFILE
hive.auto.convert.sortmerge.join=false
hive.auto.convert.sortmerge.join.noconditionaltask is undefined
hive.optimize.bucketmapjoin=false
hive.optimize.bucketmapjoin.sortedmerge=false
hive.auto.convert.join.noconditionaltask.size=10000000
hive.auto.convert.join=true
hive.optimize.mapjoin.mapreduce is undefined
hive.mapred.local.mem=0
hive.mapjoin.smalltable.filesize=25000000
hive.mapjoin.localtask.max.memory.usage=0.9
hive.optimize.skewjoin=false
hive.optimize.skewjoin.compiletime=false
hive.optimize.ppd=true
hive.optimize.ppd.storage=true
hive.ppd.recognizetransivity=true
hive.optimize.index.filter=false
hive.optimize.sampling.orderby=false
hive.optimize.sampling.orderby.number=1000
hive.optimize.sampling.orderby.percent=0.1
bigbench.hive.optimize.sampling.orderby=true
bigbench.hive.optimize.sampling.orderby.number=20000
bigbench.hive.optimize.sampling.orderby.percent=0.1
hive.groupby.skewindata=false
hive.exec.submit.local.task.via.child=true
Added resources: [/users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q04/q4_abandonedShoppingCarts.py]
Added resources: [/users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q04/q4_sessionize.py]
OK
Time taken: 0.102 seconds
OK
Time taken: 0.873 seconds
hive.exec.compress.output=false
OK
Time taken: 0.012 seconds
OK
Time taken: 0.231 seconds
FAILED: ParseException line 24:0 missing EOF at ';' near 'abandonedShoppingCartsPageCountsPerSession'
An error occured while running command:
==========
runEngineCmd -f /users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q04/q04.sql
==========
Please check the log files for details
======= q04_hive_run_query_0 time =======
Start timestamp: 2018/02/12:13:11:11 1518462671
Stop timestamp: 2018/02/12:13:11:25 1518462685
Duration: 0h 0m 14s
q04_hive_run_query_0 FAILED exit code: 64
----- result -----
EMPTY bytes: 0
to display: hadoop fs -cat /user/wentingt/benchmarks/bigbench/queryResults/q04_hive_run_query_0_result/*
----- logs -----
time&status: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs/times.csv
full log: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs/q04_hive_run_query_0.log
=========================
An error occured while running command:
==========
runModule
==========
Please check the log files for details
@@@/users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q05/query05.sql
Additional local hive settings found. Adding /users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q05/engineLocalSettings.sql to hive init.
===============================================
Running query : q05
-----------------------------------------------
benchmark phase: run_query
stream number : 0
user parameter file:
user settings file :
log: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs/q05_hive_run_query_0.log
===============================================
checking existence of local: /users/wentingt/Big-Data-Benchmark-for-Big-Bench/logs
creating/cleaning/set permissions for hdfs tmp and result folders for this query
hdfs client: hadoop fs
Duration for hdfs prepare: 0h 0m 17s
=========================
q05 Step 1/3: Executing hive queries
tmp output: /user/wentingt/benchmarks/bigbench/temp/q05_hive_run_query_0_temp
=========================
Additional local hive settings found. Adding /users/wentingt/Big-Data-Benchmark-for-Big-Bench/engines/hive/queries/q05/engineLocalSettings.sql to hive init.
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/users/wentingt/apache-hive-2.3.2-bin/lib/log4j-slf4j-impl-2.6.2.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/users/wentingt/hadoop-3.0.0-beta1-src/hadoop-dist/target/hadoop-3.0.0-beta1/share/hadoop/common/lib/slf4j-log4j12-1.7.25.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.apache.logging.slf4j.Log4jLoggerFactory]
Logging initialized using configuration in jar:file:/users/wentingt/apache-hive-2.3.2-bin/lib/hive-common-2.3.2.jar!/hive-log4j2.properties Async: true
hive.execution.engine=mr
hive.cbo.enable=true
hive.stats.fetch.partition.stats=true
hive.script.operator.truncate.env=false
hive.compute.query.using.stats=true
hive.vectorized.execution.enabled=false
hive.vectorized.execution.reduce.enabled=true
hive.stats.autogather=true
mapreduce.input.fileinputformat.split.minsize=1
mapreduce.input.fileinputformat.split.maxsize=256000000
hive.exec.reducers.bytes.per.reducer=256000000
hive.exec.reducers.max=1009
hive.exec.parallel=false
hive.exec.parallel.thread.number=8
hive.exec.compress.intermediate=false
hive.exec.compress.output=false
mapred.map.output.compression.codec=org.apache.hadoop.io.compress.DefaultCodec
mapred.output.compression.codec=org.apache.hadoop.io.compress.DefaultCodec
hive.default.fileformat=TEXTFILE
hive.auto.convert.sortmerge.join=false
hive.auto.convert.sortmerge.join.noconditionaltask is undefined
hive.optimize.bucketmapjoin=false
hive.optimize.bucketmapjoin.sortedmerge=false
hive.auto.convert.join.noconditionaltask.size=10000000
hive.auto.convert.join=true
hive.optimize.mapjoin.mapreduce is undefined
hive.mapred.local.mem=0
hive.mapjoin.smalltable.filesize=25000000
hive.mapjoin.localtask.max.memory.usage=0.9
hive.optimize.skewjoin=false
hive.optimize.skewjoin.compiletime=false
hive.optimize.ppd=true
hive.optimize.ppd.storage=true
hive.ppd.recognizetransivity=true
hive.optimize.index.filter=false
hive.optimize.sampling.orderby=false
hive.optimize.sampling.orderby.number=1000
hive.optimize.sampling.orderby.percent=0.1
bigbench.hive.optimize.sampling.orderby=true
bigbench.hive.optimize.sampling.orderby.number=20000
bigbench.hive.optimize.sampling.orderby.percent=0.1
hive.groupby.skewindata=false
hive.exec.submit.local.task.via.child=true
OK
Time taken: 0.064 seconds
OK
Time taken: 0.787 seconds
No Stats for bigbench@web_clickstreams, Columns: wcs_item_sk, wcs_user_sk
No Stats for bigbench@item, Columns: i_category, i_category_id, i_item_sk
No Stats for bigbench@customer, Columns: c_customer_sk, c_current_cdemo_sk
No Stats for bigbench@customer_demographics, Columns: cd_demo_sk, cd_education_status, cd_gender
OK
STAGE DEPENDENCIES:
Stage-14 is a root stage
Stage-2 depends on stages: Stage-14
Stage-13 depends on stages: Stage-2
Stage-10 depends on stages: Stage-13
Stage-12 depends on stages: Stage-10
Stage-9 depends on stages: Stage-12
Stage-0 depends on stages: Stage-9
Stage-5 depends on stages: Stage-0
STAGE PLANS:
Stage: Stage-14
Map Reduce Local Work
Alias -> Map Local Tables:
$hdt$_0:$hdt$_0:$hdt$_1:it
Fetch Operator
limit: -1
Alias -> Map Local Operator Tree:
$hdt$_0:$hdt$_0:$hdt$_1:it
TableScan
alias: it
Statistics: Num rows: 17820 Data size: 31240208 Basic stats: COMPLETE Column stats: NONE
Filter Operator
predicate: i_item_sk is not null (type: boolean)
Statistics: Num rows: 17820 Data size: 31240208 Basic stats: COMPLETE Column stats: NONE
Select Operator
expressions: i_item_sk (type: bigint), i_category_id (type: int), i_category (type: string)
outputColumnNames: _col0, _col1, _col2
Statistics: Num rows: 17820 Data size: 31240208 Basic stats: COMPLETE Column stats: NONE
HashTable Sink Operator
keys:
0 _col0 (type: bigint)
1 _col0 (type: bigint)
Stage: Stage-2
Map Reduce
Map Operator Tree:
TableScan
alias: web_clickstreams
Statistics: Num rows: 6770550 Data size: 253337416 Basic stats: COMPLETE Column stats: NONE
Filter Operator