-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.log
1923 lines (1918 loc) · 116 KB
/
output.log
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
rm: cannot remove '/workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/result/*': No such file or directory
Executing test in /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-mr/hadoop27
Removing network hadoop27_default
Network hadoop27_default not found.
Creating network "hadoop27_default" with the default driver
Pulling scm (apache/ozone-runner:20190717-1)...
20190717-1: Pulling from apache/ozone-runner
Digest: sha256:00bb9519e6d236c50761dcc9c668ce7f04a74f160b916bf3baeaa26232389a69
Status: Downloaded newer image for apache/ozone-runner:20190717-1
Pulling nm (flokkr/hadoop:2.7.7)...
2.7.7: Pulling from flokkr/hadoop
Digest: sha256:594a1cc971f4e91218132f2027617859d4624a55bda01bc43ec07545022ac6c9
Status: Downloaded newer image for flokkr/hadoop:2.7.7
Creating hadoop27_s3g_1 ...
Creating hadoop27_nm_1 ...
Creating hadoop27_scm_1 ...
Creating hadoop27_datanode_1 ...
Creating hadoop27_datanode_2 ...
Creating hadoop27_datanode_3 ...
Creating hadoop27_om_1 ...
Creating hadoop27_rm_1 ...
Creating hadoop27_nm_1 ... done
Creating hadoop27_scm_1 ... done
Creating hadoop27_datanode_2 ... done
Creating hadoop27_s3g_1 ... done
Creating hadoop27_om_1 ... done
Creating hadoop27_rm_1 ... done
Creating hadoop27_datanode_3 ... done
Creating hadoop27_datanode_1 ... done
0 datanode is up and healthy (until now)
2 datanode is up and healthy (until now)
3 datanodes are up and registered to the scm
==============================================================================
hadoop27-createmrenv :: Create directories required for MR test
==============================================================================
Create test volume, bucket and key | PASS |
------------------------------------------------------------------------------
Create user dir for hadoop | PASS |
------------------------------------------------------------------------------
hadoop27-createmrenv :: Create directories required for MR test | PASS |
2 critical tests, 2 passed, 0 failed
2 tests total, 2 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/hadoop27/result/robot-hadoop27-hadoop27-createmrenv-scm.xml
fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/community/x86_64/APKINDEX.tar.gz
(1/7) Installing libbz2 (1.0.6-r7)
(2/7) Installing libffi (3.2.1-r4)
(3/7) Installing gdbm (1.13-r1)
(4/7) Installing sqlite-libs (3.25.3-r2)
(5/7) Installing python2 (2.7.15-r2)
(6/7) Installing py-setuptools (39.1.0-r0)
(7/7) Installing py2-pip (10.0.1-r0)
Executing busybox-1.28.4-r0.trigger
Executing glibc-bin-2.27-r0.trigger
OK: 93 MiB in 45 packages
Collecting robotframework
Downloading https://files.pythonhosted.org/packages/22/0f/1b9ffa0c4e59789b50e6034866e823b7d4a5c7eaedad7bfd0bba42f2aa9d/robotframework-3.1.2-py2.py3-none-any.whl (602kB)
Installing collected packages: robotframework
Successfully installed robotframework-3.1.2
You are using pip version 10.0.1, however version 19.3.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
==============================================================================
hadoop27-hadoopo3fs :: Test ozone fs with hadoopfs
==============================================================================
Test hadoop dfs | PASS |
------------------------------------------------------------------------------
hadoop27-hadoopo3fs :: Test ozone fs with hadoopfs | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/hadoop27/result/robot-hadoop27-hadoop27-hadoopo3fs-rm.xml
==============================================================================
hadoop27-mapreduce :: Execute MR jobs
==============================================================================
Execute PI calculation | PASS |
------------------------------------------------------------------------------
Execute WordCount | PASS |
------------------------------------------------------------------------------
hadoop27-mapreduce :: Execute MR jobs | PASS |
2 critical tests, 2 passed, 0 failed
2 tests total, 2 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/hadoop27/result/robot-hadoop27-hadoop27-mapreduce-rm.xml
Connection pool is full, discarding connection: 0.0.0.0
Connection pool is full, discarding connection: 0.0.0.0
Stopping hadoop27_datanode_3 ...
Stopping hadoop27_rm_1 ...
Stopping hadoop27_datanode_1 ...
Stopping hadoop27_datanode_2 ...
Stopping hadoop27_s3g_1 ...
Stopping hadoop27_om_1 ...
Stopping hadoop27_scm_1 ...
Stopping hadoop27_nm_1 ...
Stopping hadoop27_nm_1 ... done
Stopping hadoop27_rm_1 ... done
Stopping hadoop27_om_1 ... done
Stopping hadoop27_datanode_2 ... done
Stopping hadoop27_s3g_1 ... done
Stopping hadoop27_datanode_1 ... done
Stopping hadoop27_scm_1 ... done
Stopping hadoop27_datanode_3 ... done
Removing hadoop27_datanode_3 ...
Removing hadoop27_rm_1 ...
Removing hadoop27_datanode_1 ...
Removing hadoop27_datanode_2 ...
Removing hadoop27_s3g_1 ...
Removing hadoop27_om_1 ...
Removing hadoop27_scm_1 ...
Removing hadoop27_nm_1 ...
Removing hadoop27_scm_1 ... done
Removing hadoop27_datanode_1 ... done
Removing hadoop27_nm_1 ... done
Removing hadoop27_s3g_1 ... done
Removing hadoop27_datanode_3 ... done
Removing hadoop27_rm_1 ... done
Removing hadoop27_om_1 ... done
Removing hadoop27_datanode_2 ... done
Removing network hadoop27_default
Log: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-mr/hadoop27/result/log.html
Report: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-mr/hadoop27/result/report.html
Executing test in /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-mr/hadoop31
Removing network hadoop31_default
Network hadoop31_default not found.
Creating network "hadoop31_default" with the default driver
Pulling nm (flokkr/hadoop:3.1.2)...
3.1.2: Pulling from flokkr/hadoop
Digest: sha256:aaed24f2f15ef520340c98c99c96c62056e018fdfe4591b8dfdfa8fd50636dc1
Status: Downloaded newer image for flokkr/hadoop:3.1.2
Creating hadoop31_om_1 ...
Creating hadoop31_nm_1 ...
Creating hadoop31_s3g_1 ...
Creating hadoop31_rm_1 ...
Creating hadoop31_datanode_1 ...
Creating hadoop31_datanode_2 ...
Creating hadoop31_datanode_3 ...
Creating hadoop31_scm_1 ...
Creating hadoop31_datanode_3 ... done
Creating hadoop31_nm_1 ... done
Creating hadoop31_om_1 ... done
Creating hadoop31_s3g_1 ... done
Creating hadoop31_datanode_2 ... done
Creating hadoop31_rm_1 ... done
Creating hadoop31_datanode_1 ... done
Creating hadoop31_scm_1 ... done
0 datanode is up and healthy (until now)
3 datanodes are up and registered to the scm
==============================================================================
hadoop31-createmrenv :: Create directories required for MR test
==============================================================================
Create test volume, bucket and key | PASS |
------------------------------------------------------------------------------
Create user dir for hadoop | PASS |
------------------------------------------------------------------------------
hadoop31-createmrenv :: Create directories required for MR test | PASS |
2 critical tests, 2 passed, 0 failed
2 tests total, 2 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/hadoop31/result/robot-hadoop31-hadoop31-createmrenv-scm.xml
fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/community/x86_64/APKINDEX.tar.gz
(1/7) Installing libbz2 (1.0.6-r7)
(2/7) Installing libffi (3.2.1-r4)
(3/7) Installing gdbm (1.13-r1)
(4/7) Installing sqlite-libs (3.25.3-r2)
(5/7) Installing python2 (2.7.15-r2)
(6/7) Installing py-setuptools (39.1.0-r0)
(7/7) Installing py2-pip (10.0.1-r0)
Executing busybox-1.28.4-r0.trigger
Executing glibc-bin-2.27-r0.trigger
OK: 93 MiB in 45 packages
Collecting robotframework
Downloading https://files.pythonhosted.org/packages/22/0f/1b9ffa0c4e59789b50e6034866e823b7d4a5c7eaedad7bfd0bba42f2aa9d/robotframework-3.1.2-py2.py3-none-any.whl (602kB)
Installing collected packages: robotframework
Successfully installed robotframework-3.1.2
You are using pip version 10.0.1, however version 19.3.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
==============================================================================
hadoop31-hadoopo3fs :: Test ozone fs with hadoopfs
==============================================================================
Test hadoop dfs | PASS |
------------------------------------------------------------------------------
hadoop31-hadoopo3fs :: Test ozone fs with hadoopfs | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/hadoop31/result/robot-hadoop31-hadoop31-hadoopo3fs-rm.xml
==============================================================================
hadoop31-mapreduce :: Execute MR jobs
==============================================================================
Execute PI calculation | PASS |
------------------------------------------------------------------------------
Execute WordCount | PASS |
------------------------------------------------------------------------------
hadoop31-mapreduce :: Execute MR jobs | PASS |
2 critical tests, 2 passed, 0 failed
2 tests total, 2 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/hadoop31/result/robot-hadoop31-hadoop31-mapreduce-rm.xml
Connection pool is full, discarding connection: 0.0.0.0
Connection pool is full, discarding connection: 0.0.0.0
Stopping hadoop31_scm_1 ...
Stopping hadoop31_datanode_1 ...
Stopping hadoop31_rm_1 ...
Stopping hadoop31_datanode_2 ...
Stopping hadoop31_s3g_1 ...
Stopping hadoop31_datanode_3 ...
Stopping hadoop31_om_1 ...
Stopping hadoop31_nm_1 ...
Stopping hadoop31_rm_1 ... done
Stopping hadoop31_nm_1 ... done
Stopping hadoop31_s3g_1 ... done
Stopping hadoop31_om_1 ... done
Stopping hadoop31_scm_1 ... done
Stopping hadoop31_datanode_2 ... done
Stopping hadoop31_datanode_3 ... done
Stopping hadoop31_datanode_1 ... done
Removing hadoop31_scm_1 ...
Removing hadoop31_datanode_1 ...
Removing hadoop31_rm_1 ...
Removing hadoop31_datanode_2 ...
Removing hadoop31_s3g_1 ...
Removing hadoop31_datanode_3 ...
Removing hadoop31_om_1 ...
Removing hadoop31_nm_1 ...
Removing hadoop31_rm_1 ... done
Removing hadoop31_nm_1 ... done
Removing hadoop31_datanode_2 ... done
Removing hadoop31_s3g_1 ... done
Removing hadoop31_datanode_3 ... done
Removing hadoop31_scm_1 ... done
Removing hadoop31_om_1 ... done
Removing hadoop31_datanode_1 ... done
Removing network hadoop31_default
Log: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-mr/hadoop31/result/log.html
Report: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-mr/hadoop31/result/report.html
Executing test in /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-mr/hadoop32
Removing network hadoop32_default
Network hadoop32_default not found.
Creating network "hadoop32_default" with the default driver
Pulling nm (apache/hadoop:3)...
3: Pulling from apache/hadoop
Digest: sha256:5cba355fd83de1bcce907abaa7f8ac3cfbc2ab74a09785ecdc892392883344f6
Status: Downloaded newer image for apache/hadoop:3
Creating hadoop32_s3g_1 ...
Creating hadoop32_rm_1 ...
Creating hadoop32_om_1 ...
Creating hadoop32_nm_1 ...
Creating hadoop32_datanode_1 ...
Creating hadoop32_datanode_2 ...
Creating hadoop32_scm_1 ...
Creating hadoop32_datanode_3 ...
Creating hadoop32_s3g_1 ... done
Creating hadoop32_rm_1 ... done
Creating hadoop32_nm_1 ... done
Creating hadoop32_om_1 ... done
Creating hadoop32_datanode_2 ... done
Creating hadoop32_scm_1 ... done
Creating hadoop32_datanode_3 ... done
Creating hadoop32_datanode_1 ... done
0 datanode is up and healthy (until now)
2 datanode is up and healthy (until now)
3 datanodes are up and registered to the scm
==============================================================================
hadoop32-createmrenv :: Create directories required for MR test
==============================================================================
Create test volume, bucket and key | PASS |
------------------------------------------------------------------------------
Create user dir for hadoop | PASS |
------------------------------------------------------------------------------
hadoop32-createmrenv :: Create directories required for MR test | PASS |
2 critical tests, 2 passed, 0 failed
2 tests total, 2 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/hadoop32/result/robot-hadoop32-hadoop32-createmrenv-scm.xml
==============================================================================
hadoop32-hadoopo3fs :: Test ozone fs with hadoopfs
==============================================================================
Test hadoop dfs | PASS |
------------------------------------------------------------------------------
hadoop32-hadoopo3fs :: Test ozone fs with hadoopfs | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/hadoop32/result/robot-hadoop32-hadoop32-hadoopo3fs-rm.xml
==============================================================================
hadoop32-mapreduce :: Execute MR jobs
==============================================================================
Execute PI calculation | PASS |
------------------------------------------------------------------------------
Execute WordCount | PASS |
------------------------------------------------------------------------------
hadoop32-mapreduce :: Execute MR jobs | PASS |
2 critical tests, 2 passed, 0 failed
2 tests total, 2 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/hadoop32/result/robot-hadoop32-hadoop32-mapreduce-rm.xml
Connection pool is full, discarding connection: 0.0.0.0
Connection pool is full, discarding connection: 0.0.0.0
Connection pool is full, discarding connection: 0.0.0.0
Stopping hadoop32_datanode_1 ...
Stopping hadoop32_datanode_3 ...
Stopping hadoop32_scm_1 ...
Stopping hadoop32_om_1 ...
Stopping hadoop32_datanode_2 ...
Stopping hadoop32_nm_1 ...
Stopping hadoop32_rm_1 ...
Stopping hadoop32_s3g_1 ...
Stopping hadoop32_nm_1 ... done
Stopping hadoop32_rm_1 ... done
Stopping hadoop32_datanode_1 ... done
Stopping hadoop32_datanode_3 ... done
Stopping hadoop32_datanode_2 ... done
Stopping hadoop32_s3g_1 ... done
Stopping hadoop32_scm_1 ... done
Stopping hadoop32_om_1 ... done
Removing hadoop32_datanode_1 ...
Removing hadoop32_datanode_3 ...
Removing hadoop32_scm_1 ...
Removing hadoop32_om_1 ...
Removing hadoop32_datanode_2 ...
Removing hadoop32_nm_1 ...
Removing hadoop32_rm_1 ...
Removing hadoop32_s3g_1 ...
Removing hadoop32_om_1 ... done
Removing hadoop32_rm_1 ... done
Removing hadoop32_scm_1 ... done
Removing hadoop32_datanode_1 ... done
Removing hadoop32_datanode_3 ... done
Removing hadoop32_datanode_2 ... done
Removing hadoop32_nm_1 ... done
Removing hadoop32_s3g_1 ... done
Removing network hadoop32_default
Log: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-mr/hadoop32/result/log.html
Report: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-mr/hadoop32/result/report.html
Executing test in /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-om-ha-s3
Removing network ozone-om-ha-s3_default
Network ozone-om-ha-s3_default not found.
Creating network "ozone-om-ha-s3_default" with the default driver
Creating ozone-om-ha-s3_scm_1 ...
Creating ozone-om-ha-s3_om2_1 ...
Creating ozone-om-ha-s3_om1_1 ...
Creating ozone-om-ha-s3_s3g_1 ...
Creating ozone-om-ha-s3_datanode_1 ...
Creating ozone-om-ha-s3_datanode_2 ...
Creating ozone-om-ha-s3_datanode_3 ...
Creating ozone-om-ha-s3_om3_1 ...
Creating ozone-om-ha-s3_om1_1 ... done
Creating ozone-om-ha-s3_scm_1 ... done
Creating ozone-om-ha-s3_om2_1 ... done
Creating ozone-om-ha-s3_s3g_1 ... done
Creating ozone-om-ha-s3_datanode_1 ... done
Creating ozone-om-ha-s3_datanode_2 ... done
Creating ozone-om-ha-s3_datanode_3 ... done
Creating ozone-om-ha-s3_om3_1 ... done
0 datanode is up and healthy (until now)
3 datanodes are up and registered to the scm
==============================================================================
ozone-om-ha-s3-s3
==============================================================================
ozone-om-ha-s3-s3.Awss3 :: S3 gateway test with aws cli
==============================================================================
File upload and directory list | PASS |
------------------------------------------------------------------------------
ozone-om-ha-s3-s3.Awss3 :: S3 gateway test with aws cli | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
ozone-om-ha-s3-s3.Bucketcreate :: S3 gateway test with aws cli
==============================================================================
Create bucket which already exists | PASS |
------------------------------------------------------------------------------
ozone-om-ha-s3-s3.Bucketcreate :: S3 gateway test with aws cli | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
ozone-om-ha-s3-s3.Buckethead :: S3 gateway test with aws cli
==============================================================================
Head Bucket not existent | PASS |
------------------------------------------------------------------------------
ozone-om-ha-s3-s3.Buckethead :: S3 gateway test with aws cli | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
ozone-om-ha-s3-s3.Bucketlist :: S3 gateway test with aws cli
==============================================================================
List buckets | PASS |
------------------------------------------------------------------------------
ozone-om-ha-s3-s3.Bucketlist :: S3 gateway test with aws cli | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
ozone-om-ha-s3-s3.MultipartUpload :: S3 gateway test with aws cli
==============================================================================
Test Multipart Upload | PASS |
------------------------------------------------------------------------------
Test Multipart Upload Complete | PASS |
------------------------------------------------------------------------------
Test Multipart Upload Complete Entity too small | PASS |
------------------------------------------------------------------------------
Test Multipart Upload Complete Invalid part | PASS |
------------------------------------------------------------------------------
Test abort Multipart upload | PASS |
------------------------------------------------------------------------------
Test abort Multipart upload with invalid uploadId | PASS |
------------------------------------------------------------------------------
Upload part with Incorrect uploadID | PASS |
------------------------------------------------------------------------------
Test list parts | PASS |
------------------------------------------------------------------------------
Test Multipart Upload with the simplified aws s3 cp API | PASS |
------------------------------------------------------------------------------
Test Multipart Upload Put With Copy | PASS |
------------------------------------------------------------------------------
Test Multipart Upload Put With Copy and range | PASS |
------------------------------------------------------------------------------
Test Multipart Upload list | PASS |
------------------------------------------------------------------------------
ozone-om-ha-s3-s3.MultipartUpload :: S3 gateway test with aws cli | PASS |
12 critical tests, 12 passed, 0 failed
12 tests total, 12 passed, 0 failed
==============================================================================
ozone-om-ha-s3-s3.Objectcopy :: S3 gateway test with aws cli
==============================================================================
Copy Object Happy Scenario | PASS |
------------------------------------------------------------------------------
Copy Object Where Bucket is not available | PASS |
------------------------------------------------------------------------------
Copy Object Where both source and dest are same with change to sto... | PASS |
------------------------------------------------------------------------------
Copy Object Where Key not available | PASS |
------------------------------------------------------------------------------
ozone-om-ha-s3-s3.Objectcopy :: S3 gateway test with aws cli | PASS |
4 critical tests, 4 passed, 0 failed
4 tests total, 4 passed, 0 failed
==============================================================================
ozone-om-ha-s3-s3.Objectdelete :: S3 gateway test with aws cli
==============================================================================
Delete file with s3api | PASS |
------------------------------------------------------------------------------
Delete file with s3api, file doesn't exist | PASS |
------------------------------------------------------------------------------
Delete dir with s3api | PASS |
------------------------------------------------------------------------------
Delete file with s3api, file doesn't exist, prefix of a real file | PASS |
------------------------------------------------------------------------------
Delete file with s3api, bucket doesn't exist | PASS |
------------------------------------------------------------------------------
ozone-om-ha-s3-s3.Objectdelete :: S3 gateway test with aws cli | PASS |
5 critical tests, 5 passed, 0 failed
5 tests total, 5 passed, 0 failed
==============================================================================
ozone-om-ha-s3-s3.Objectmultidelete :: S3 gateway test with aws cli
==============================================================================
Delete file with multi delete | PASS |
------------------------------------------------------------------------------
ozone-om-ha-s3-s3.Objectmultidelete :: S3 gateway test with aws cli | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
ozone-om-ha-s3-s3.Objectputget :: S3 gateway test with aws cli
==============================================================================
Put object to s3 | PASS |
------------------------------------------------------------------------------
Get object from s3 | PASS |
------------------------------------------------------------------------------
Get Partial object from s3 with both start and endoffset | PASS |
------------------------------------------------------------------------------
Get Partial object from s3 with both start and endoffset(start off... | PASS |
------------------------------------------------------------------------------
Get Partial object from s3 with both start and endoffset(end offse... | PASS |
------------------------------------------------------------------------------
Get Partial object from s3 with only start offset | PASS |
------------------------------------------------------------------------------
Get Partial object from s3 with both start and endoffset which are... | PASS |
------------------------------------------------------------------------------
Get Partial object from s3 to get last n bytes | PASS |
------------------------------------------------------------------------------
Incorrect values for end and start offset | PASS |
------------------------------------------------------------------------------
Zero byte file | PASS |
------------------------------------------------------------------------------
ozone-om-ha-s3-s3.Objectputget :: S3 gateway test with aws cli | PASS |
10 critical tests, 10 passed, 0 failed
10 tests total, 10 passed, 0 failed
==============================================================================
ozone-om-ha-s3-s3.Webui :: S3 gateway web ui test
==============================================================================
S3 Gateway Web UI | PASS |
------------------------------------------------------------------------------
ozone-om-ha-s3-s3.Webui :: S3 gateway web ui test | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
ozone-om-ha-s3-s3 | PASS |
37 critical tests, 37 passed, 0 failed
37 tests total, 37 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/ozone-om-ha-s3/result/robot-ozone-om-ha-s3-ozone-om-ha-s3-s3-scm.xml
Connection pool is full, discarding connection: 0.0.0.0
Connection pool is full, discarding connection: 0.0.0.0
Stopping ozone-om-ha-s3_om3_1 ...
Stopping ozone-om-ha-s3_datanode_1 ...
Stopping ozone-om-ha-s3_datanode_3 ...
Stopping ozone-om-ha-s3_datanode_2 ...
Stopping ozone-om-ha-s3_s3g_1 ...
Stopping ozone-om-ha-s3_om2_1 ...
Stopping ozone-om-ha-s3_om1_1 ...
Stopping ozone-om-ha-s3_scm_1 ...
Stopping ozone-om-ha-s3_s3g_1 ... done
Stopping ozone-om-ha-s3_datanode_2 ... done
Stopping ozone-om-ha-s3_scm_1 ... done
Stopping ozone-om-ha-s3_om2_1 ... done
Stopping ozone-om-ha-s3_om3_1 ... done
Stopping ozone-om-ha-s3_datanode_3 ... done
Stopping ozone-om-ha-s3_om1_1 ... done
Stopping ozone-om-ha-s3_datanode_1 ... done
Removing ozone-om-ha-s3_om3_1 ...
Removing ozone-om-ha-s3_datanode_1 ...
Removing ozone-om-ha-s3_datanode_3 ...
Removing ozone-om-ha-s3_datanode_2 ...
Removing ozone-om-ha-s3_s3g_1 ...
Removing ozone-om-ha-s3_om2_1 ...
Removing ozone-om-ha-s3_om1_1 ...
Removing ozone-om-ha-s3_scm_1 ...
Removing ozone-om-ha-s3_s3g_1 ... done
Removing ozone-om-ha-s3_datanode_2 ... done
Removing ozone-om-ha-s3_datanode_3 ... done
Removing ozone-om-ha-s3_om1_1 ... done
Removing ozone-om-ha-s3_datanode_1 ... done
Removing ozone-om-ha-s3_scm_1 ... done
Removing ozone-om-ha-s3_om3_1 ... done
Removing ozone-om-ha-s3_om2_1 ... done
Removing network ozone-om-ha-s3_default
Log: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-om-ha-s3/result/log.html
Report: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-om-ha-s3/result/report.html
Executing test in /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-recon
Removing network ozone-recon_default
Network ozone-recon_default not found.
Creating network "ozone-recon_default" with the default driver
Creating ozone-recon_datanode_1 ...
Creating ozone-recon_datanode_2 ...
Creating ozone-recon_datanode_3 ...
Creating ozone-recon_om_1 ...
Creating ozone-recon_recon_1 ...
Creating ozone-recon_scm_1 ...
Creating ozone-recon_datanode_1 ... done
Creating ozone-recon_datanode_2 ... done
Creating ozone-recon_recon_1 ... done
Creating ozone-recon_scm_1 ... done
Creating ozone-recon_om_1 ... done
Creating ozone-recon_datanode_3 ... done
0 datanode is up and healthy (until now)
3 datanodes are up and registered to the scm
==============================================================================
ozone-recon-basic :: Smoketest ozone cluster startup
==============================================================================
Check webui static resources | PASS |
------------------------------------------------------------------------------
Start freon testing | PASS |
------------------------------------------------------------------------------
ozone-recon-basic :: Smoketest ozone cluster startup | PASS |
2 critical tests, 2 passed, 0 failed
2 tests total, 2 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/ozone-recon/result/robot-ozone-recon-ozone-recon-basic-scm.xml
Stopping ozone-recon_om_1 ...
Stopping ozone-recon_scm_1 ...
Stopping ozone-recon_datanode_3 ...
Stopping ozone-recon_datanode_2 ...
Stopping ozone-recon_datanode_1 ...
Stopping ozone-recon_datanode_2 ... done
Stopping ozone-recon_scm_1 ... done
Stopping ozone-recon_datanode_3 ... done
Stopping ozone-recon_om_1 ... done
Stopping ozone-recon_datanode_1 ... done
Removing ozone-recon_om_1 ...
Removing ozone-recon_scm_1 ...
Removing ozone-recon_datanode_3 ...
Removing ozone-recon_recon_1 ...
Removing ozone-recon_datanode_2 ...
Removing ozone-recon_datanode_1 ...
Removing ozone-recon_datanode_2 ... done
Removing ozone-recon_scm_1 ... done
Removing ozone-recon_recon_1 ... done
Removing ozone-recon_datanode_1 ... done
Removing ozone-recon_om_1 ... done
Removing ozone-recon_datanode_3 ... done
Removing network ozone-recon_default
Log: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-recon/result/log.html
Report: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-recon/result/report.html
Executing test in /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-topology
Removing network ozone-topology_net
Network ozone-topology_net not found.
Creating network "ozone-topology_net" with driver "bridge"
Creating ozone-topology_datanode_1_1 ...
Creating ozone-topology_datanode_3_1 ...
Creating ozone-topology_datanode_4_1 ...
Creating ozone-topology_scm_1 ...
Creating ozone-topology_om_1 ...
Creating ozone-topology_datanode_2_1 ...
Creating ozone-topology_om_1 ... done
Creating ozone-topology_datanode_2_1 ... done
Creating ozone-topology_scm_1 ... done
Creating ozone-topology_datanode_1_1 ... done
Creating ozone-topology_datanode_4_1 ... done
Creating ozone-topology_datanode_3_1 ... done
0 datanode is up and healthy (until now)
4 datanodes are up and registered to the scm
==============================================================================
ozone-topology-basic :: Smoketest ozone cluster startup
==============================================================================
Check webui static resources | PASS |
------------------------------------------------------------------------------
Start freon testing | PASS |
------------------------------------------------------------------------------
ozone-topology-basic :: Smoketest ozone cluster startup | PASS |
2 critical tests, 2 passed, 0 failed
2 tests total, 2 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/ozone-topology/result/robot-ozone-topology-ozone-topology-basic-scm.xml
==============================================================================
ozone-topology-scmcli :: Smoketest ozone cluster startup
==============================================================================
Run printTopology | PASS |
------------------------------------------------------------------------------
Run printTopology -o | PASS |
------------------------------------------------------------------------------
ozone-topology-scmcli :: Smoketest ozone cluster startup | PASS |
2 critical tests, 2 passed, 0 failed
2 tests total, 2 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/ozone-topology/result/robot-ozone-topology-ozone-topology-scmcli-scm.xml
Stopping ozone-topology_datanode_3_1 ...
Stopping ozone-topology_datanode_1_1 ...
Stopping ozone-topology_datanode_4_1 ...
Stopping ozone-topology_datanode_2_1 ...
Stopping ozone-topology_scm_1 ...
Stopping ozone-topology_om_1 ...
Stopping ozone-topology_datanode_3_1 ... done
Stopping ozone-topology_om_1 ... done
Stopping ozone-topology_datanode_4_1 ... done
Stopping ozone-topology_scm_1 ... done
Stopping ozone-topology_datanode_2_1 ... done
Stopping ozone-topology_datanode_1_1 ... done
Removing ozone-topology_datanode_3_1 ...
Removing ozone-topology_datanode_1_1 ...
Removing ozone-topology_datanode_4_1 ...
Removing ozone-topology_datanode_2_1 ...
Removing ozone-topology_scm_1 ...
Removing ozone-topology_om_1 ...
Removing ozone-topology_datanode_1_1 ... done
Removing ozone-topology_datanode_4_1 ... done
Removing ozone-topology_datanode_3_1 ... done
Removing ozone-topology_scm_1 ... done
Removing ozone-topology_om_1 ... done
Removing ozone-topology_datanode_2_1 ... done
Removing network ozone-topology_net
Log: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-topology/result/log.html
Report: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone-topology/result/report.html
Executing test in /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone
Removing network ozone_default
Network ozone_default not found.
Creating network "ozone_default" with the default driver
Creating ozone_scm_1 ...
Creating ozone_om_1 ...
Creating ozone_datanode_1 ...
Creating ozone_datanode_2 ...
Creating ozone_datanode_3 ...
Creating ozone_scm_1 ... done
Creating ozone_datanode_3 ... done
Creating ozone_datanode_2 ... done
Creating ozone_om_1 ... done
Creating ozone_datanode_1 ... done
0 datanode is up and healthy (until now)
0 datanode is up and healthy (until now)
3 datanodes are up and registered to the scm
==============================================================================
ozone-basic :: Smoketest ozone cluster startup
==============================================================================
Check webui static resources | PASS |
------------------------------------------------------------------------------
Start freon testing | PASS |
------------------------------------------------------------------------------
ozone-basic :: Smoketest ozone cluster startup | PASS |
2 critical tests, 2 passed, 0 failed
2 tests total, 2 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/ozone/result/robot-ozone-ozone-basic-scm.xml
==============================================================================
ozone-gdpr :: Smoketest Ozone GDPR Feature
==============================================================================
Test GDPR disabled | PASS |
------------------------------------------------------------------------------
Test GDPR --enforcegdpr=true | PASS |
------------------------------------------------------------------------------
Test GDPR -g=true | PASS |
------------------------------------------------------------------------------
Test GDPR -g=false | PASS |
------------------------------------------------------------------------------
ozone-gdpr :: Smoketest Ozone GDPR Feature | PASS |
4 critical tests, 4 passed, 0 failed
4 tests total, 4 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/ozone/result/robot-ozone-ozone-gdpr-scm.xml
Stopping ozone_datanode_2 ...
Stopping ozone_datanode_1 ...
Stopping ozone_datanode_3 ...
Stopping ozone_scm_1 ...
Stopping ozone_om_1 ...
Stopping ozone_datanode_3 ... done
Stopping ozone_om_1 ... done
Stopping ozone_datanode_2 ... done
Stopping ozone_datanode_1 ... done
Stopping ozone_scm_1 ... done
Removing ozone_datanode_2 ...
Removing ozone_datanode_1 ...
Removing ozone_datanode_3 ...
Removing ozone_scm_1 ...
Removing ozone_om_1 ...
Removing ozone_datanode_2 ... done
Removing ozone_scm_1 ... done
Removing ozone_om_1 ... done
Removing ozone_datanode_3 ... done
Removing ozone_datanode_1 ... done
Removing network ozone_default
Log: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone/result/log.html
Report: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozone/result/report.html
Executing test in /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozoneperf
Removing network ozoneperf_default
Network ozoneperf_default not found.
Creating network "ozoneperf_default" with the default driver
Pulling jaeger (jaegertracing/all-in-one:latest)...
latest: Pulling from jaegertracing/all-in-one
Digest: sha256:de75e76302ac8776c0d95138d15f606c72c5059050ccbe066c462999e1dcd0af
Status: Downloaded newer image for jaegertracing/all-in-one:latest
Pulling grafana (grafana/grafana:)...
latest: Pulling from grafana/grafana
Digest: sha256:a10521576058f40427306fcb5be48138c77ea7c55ede24327381211e653f478a
Status: Downloaded newer image for grafana/grafana:latest
Pulling prometheus (prom/prometheus:)...
latest: Pulling from prom/prometheus
Digest: sha256:0a8caa2e9f19907608915db6e62a67383fe44b9876a467b297ee6f64e51dd58a
Status: Downloaded newer image for prom/prometheus:latest
Creating ozoneperf_prometheus_1 ...
Creating ozoneperf_jaeger_1 ...
Creating ozoneperf_grafana_1 ...
Creating ozoneperf_scm_1 ...
Creating ozoneperf_s3g_1 ...
Creating ozoneperf_om_1 ...
Creating ozoneperf_datanode_1 ...
Creating ozoneperf_datanode_2 ...
Creating ozoneperf_datanode_3 ...
Creating ozoneperf_prometheus_1 ... done
Creating ozoneperf_jaeger_1 ... done
Creating ozoneperf_scm_1 ... done
Creating ozoneperf_grafana_1 ... done
Creating ozoneperf_datanode_3 ... done
Creating ozoneperf_s3g_1 ... done
Creating ozoneperf_om_1 ... done
Creating ozoneperf_datanode_2 ... done
Creating ozoneperf_datanode_1 ... done
0 datanode is up and healthy (until now)
1 datanode is up and healthy (until now)
3 datanodes are up and registered to the scm
==============================================================================
ozoneperf-basic :: Smoketest ozone cluster startup
==============================================================================
Check webui static resources | PASS |
------------------------------------------------------------------------------
Start freon testing | PASS |
------------------------------------------------------------------------------
ozoneperf-basic :: Smoketest ozone cluster startup | PASS |
2 critical tests, 2 passed, 0 failed
2 tests total, 2 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/ozoneperf/result/robot-ozoneperf-ozoneperf-basic-scm.xml
Connection pool is full, discarding connection: 0.0.0.0
Connection pool is full, discarding connection: 0.0.0.0
Stopping ozoneperf_datanode_1 ...
Stopping ozoneperf_datanode_3 ...
Stopping ozoneperf_datanode_2 ...
Stopping ozoneperf_om_1 ...
Stopping ozoneperf_s3g_1 ...
Stopping ozoneperf_grafana_1 ...
Stopping ozoneperf_scm_1 ...
Stopping ozoneperf_jaeger_1 ...
Stopping ozoneperf_prometheus_1 ...
Stopping ozoneperf_jaeger_1 ... done
Stopping ozoneperf_prometheus_1 ... done
Stopping ozoneperf_grafana_1 ... done
Stopping ozoneperf_scm_1 ... done
Stopping ozoneperf_s3g_1 ... done
Stopping ozoneperf_datanode_3 ... done
Stopping ozoneperf_datanode_1 ... done
Stopping ozoneperf_datanode_2 ... done
Stopping ozoneperf_om_1 ... done
Removing ozoneperf_datanode_1 ...
Removing ozoneperf_datanode_3 ...
Removing ozoneperf_datanode_2 ...
Removing ozoneperf_om_1 ...
Removing ozoneperf_s3g_1 ...
Removing ozoneperf_grafana_1 ...
Removing ozoneperf_scm_1 ...
Removing ozoneperf_jaeger_1 ...
Removing ozoneperf_prometheus_1 ...
Removing ozoneperf_s3g_1 ... done
Removing ozoneperf_jaeger_1 ... done
Removing ozoneperf_scm_1 ... done
Removing ozoneperf_om_1 ... done
Removing ozoneperf_datanode_2 ... done
Removing ozoneperf_datanode_1 ... done
Removing ozoneperf_prometheus_1 ... done
Removing ozoneperf_datanode_3 ... done
Removing ozoneperf_grafana_1 ... done
Removing network ozoneperf_default
Log: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozoneperf/result/log.html
Report: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozoneperf/result/report.html
Executing test in /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozones3-haproxy
Removing network ozones3-haproxy_default
Network ozones3-haproxy_default not found.
Creating network "ozones3-haproxy_default" with the default driver
Pulling s3g (haproxy:latest)...
latest: Pulling from library/haproxy
Digest: sha256:ce509ee2d93817a90e8fe72144365f5af3ccfaad14446bcf232382baf4032245
Status: Downloaded newer image for haproxy:latest
Creating ozones3-haproxy_datanode_1 ...
Creating ozones3-haproxy_datanode_2 ...
Creating ozones3-haproxy_datanode_3 ...
Creating ozones3-haproxy_scm_1 ...
Creating ozones3-haproxy_s3g3_1 ...
Creating ozones3-haproxy_s3g1_1 ...
Creating ozones3-haproxy_om_1 ...
Creating ozones3-haproxy_s3g2_1 ...
Creating ozones3-haproxy_s3g_1 ...
Creating ozones3-haproxy_datanode_2 ... done
Creating ozones3-haproxy_datanode_1 ... done
Creating ozones3-haproxy_datanode_3 ... done
Creating ozones3-haproxy_scm_1 ... done
Creating ozones3-haproxy_s3g3_1 ... done
Creating ozones3-haproxy_s3g1_1 ... done
Creating ozones3-haproxy_s3g_1 ... done
Creating ozones3-haproxy_om_1 ... done
Creating ozones3-haproxy_s3g2_1 ... done
0 datanode is up and healthy (until now)
3 datanodes are up and registered to the scm
==============================================================================
ozones3-haproxy-basic :: Smoketest ozone cluster startup
==============================================================================
Check webui static resources | PASS |
------------------------------------------------------------------------------
Start freon testing | PASS |
------------------------------------------------------------------------------
ozones3-haproxy-basic :: Smoketest ozone cluster startup | PASS |
2 critical tests, 2 passed, 0 failed
2 tests total, 2 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/ozones3-haproxy/result/robot-ozones3-haproxy-ozones3-haproxy-basic-scm.xml
Connection pool is full, discarding connection: 0.0.0.0
Connection pool is full, discarding connection: 0.0.0.0
Stopping ozones3-haproxy_s3g2_1 ...
Stopping ozones3-haproxy_s3g_1 ...
Stopping ozones3-haproxy_s3g1_1 ...
Stopping ozones3-haproxy_om_1 ...
Stopping ozones3-haproxy_s3g3_1 ...
Stopping ozones3-haproxy_scm_1 ...
Stopping ozones3-haproxy_datanode_3 ...
Stopping ozones3-haproxy_datanode_1 ...
Stopping ozones3-haproxy_datanode_2 ...
Stopping ozones3-haproxy_s3g2_1 ... done
Stopping ozones3-haproxy_datanode_1 ... done
Stopping ozones3-haproxy_s3g3_1 ... done
Stopping ozones3-haproxy_s3g1_1 ... done
Stopping ozones3-haproxy_datanode_2 ... done
Stopping ozones3-haproxy_scm_1 ... done
Stopping ozones3-haproxy_datanode_3 ... done
Stopping ozones3-haproxy_s3g_1 ... done
Stopping ozones3-haproxy_om_1 ... done
Removing ozones3-haproxy_s3g2_1 ...
Removing ozones3-haproxy_s3g_1 ...
Removing ozones3-haproxy_s3g1_1 ...
Removing ozones3-haproxy_om_1 ...
Removing ozones3-haproxy_s3g3_1 ...
Removing ozones3-haproxy_scm_1 ...
Removing ozones3-haproxy_datanode_3 ...
Removing ozones3-haproxy_datanode_1 ...
Removing ozones3-haproxy_datanode_2 ...
Removing ozones3-haproxy_datanode_2 ... done
Removing ozones3-haproxy_scm_1 ... done
Removing ozones3-haproxy_s3g3_1 ... done
Removing ozones3-haproxy_om_1 ... done
Removing ozones3-haproxy_datanode_3 ... done
Removing ozones3-haproxy_s3g1_1 ... done
Removing ozones3-haproxy_datanode_1 ... done
Removing ozones3-haproxy_s3g_1 ... done
Removing ozones3-haproxy_s3g2_1 ... done
Removing network ozones3-haproxy_default
Log: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozones3-haproxy/result/log.html
Report: /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozones3-haproxy/result/report.html
Executing test in /workdir/hadoop-ozone/dist/target/ozone-0.5.0-SNAPSHOT/compose/ozones3
Removing network ozones3_default
Network ozones3_default not found.
Creating network "ozones3_default" with the default driver
Creating ozones3_scm_1 ...
Creating ozones3_datanode_1 ...
Creating ozones3_datanode_2 ...
Creating ozones3_s3g_1 ...
Creating ozones3_datanode_3 ...
Creating ozones3_om_1 ...
Creating ozones3_s3g_1 ... done
Creating ozones3_om_1 ... done
Creating ozones3_scm_1 ... done
Creating ozones3_datanode_1 ... done
Creating ozones3_datanode_3 ... done
Creating ozones3_datanode_2 ... done
0 datanode is up and healthy (until now)
3 datanodes are up and registered to the scm
==============================================================================
ozones3-basic :: Smoketest ozone cluster startup
==============================================================================
Check webui static resources | PASS |
------------------------------------------------------------------------------
Start freon testing | PASS |
------------------------------------------------------------------------------
ozones3-basic :: Smoketest ozone cluster startup | PASS |
2 critical tests, 2 passed, 0 failed
2 tests total, 2 passed, 0 failed
==============================================================================
Output: /tmp/smoketest/ozones3/result/robot-ozones3-ozones3-basic-scm.xml
==============================================================================
ozones3-s3
==============================================================================
ozones3-s3.Awss3 :: S3 gateway test with aws cli
==============================================================================
File upload and directory list | PASS |
------------------------------------------------------------------------------
ozones3-s3.Awss3 :: S3 gateway test with aws cli | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
ozones3-s3.Bucketcreate :: S3 gateway test with aws cli
==============================================================================
Create bucket which already exists | PASS |
------------------------------------------------------------------------------
ozones3-s3.Bucketcreate :: S3 gateway test with aws cli | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
ozones3-s3.Buckethead :: S3 gateway test with aws cli
==============================================================================
Head Bucket not existent | PASS |
------------------------------------------------------------------------------
ozones3-s3.Buckethead :: S3 gateway test with aws cli | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
ozones3-s3.Bucketlist :: S3 gateway test with aws cli
==============================================================================
List buckets | PASS |
------------------------------------------------------------------------------
ozones3-s3.Bucketlist :: S3 gateway test with aws cli | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
ozones3-s3.MultipartUpload :: S3 gateway test with aws cli
==============================================================================
Test Multipart Upload | PASS |
------------------------------------------------------------------------------
Test Multipart Upload Complete | PASS |
------------------------------------------------------------------------------
Test Multipart Upload Complete Entity too small | PASS |
------------------------------------------------------------------------------
Test Multipart Upload Complete Invalid part | PASS |
------------------------------------------------------------------------------
Test abort Multipart upload | PASS |
------------------------------------------------------------------------------
Test abort Multipart upload with invalid uploadId | PASS |
------------------------------------------------------------------------------
Upload part with Incorrect uploadID | PASS |
------------------------------------------------------------------------------
Test list parts | PASS |
------------------------------------------------------------------------------
Test Multipart Upload with the simplified aws s3 cp API | PASS |
------------------------------------------------------------------------------
Test Multipart Upload Put With Copy | PASS |
------------------------------------------------------------------------------
Test Multipart Upload Put With Copy and range | PASS |
------------------------------------------------------------------------------
Test Multipart Upload list | PASS |
------------------------------------------------------------------------------
ozones3-s3.MultipartUpload :: S3 gateway test with aws cli | PASS |
12 critical tests, 12 passed, 0 failed
12 tests total, 12 passed, 0 failed
==============================================================================
ozones3-s3.Objectcopy :: S3 gateway test with aws cli
==============================================================================
Copy Object Happy Scenario | PASS |
------------------------------------------------------------------------------
Copy Object Where Bucket is not available | PASS |
------------------------------------------------------------------------------