forked from apache/bigtop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
3350 lines (3152 loc) · 209 KB
/
CHANGES.txt
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
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
Bigtop Changelog
* Release 3.3.0-SNAPSHOT (unreleased)
* Release 3.2.1 (2023-07-05)
Release Notes - Bigtop - Version 3.2.1
** Sub-task
* [BIGTOP-3920] - Upgrade Hadoop to 3.3.5
** Bug
* [BIGTOP-3897] - Failed to deploy gpdb on Fedora-36 for arm64/ppc64le
* [BIGTOP-3901] - Fix failure of Kerberos deployment on Rocky Linux 8 and Ubuntu 22.04
* [BIGTOP-3905] - Update Bigtop-stack-provisioner repo for the latest 3.2.0 release
* [BIGTOP-3926] - Fix build failure of Hive against Hadoop 3.3.5
* [BIGTOP-3927] - Fix build failure of HBase against Hadoop 3.3.5
* [BIGTOP-3929] - Fix build failure of Flink due to transitive dependency on pentaho-aggdesigner-algorithm
* [BIGTOP-3930] - Fix deployment failure on Ubuntu 22.04 due to unavailable dependency on python
* [BIGTOP-3945] - Fix YCSB build issues for deprecated mapr repo url
* [BIGTOP-3946] - Fix build failure of Ambari due to expired certificate of bower repo
* [BIGTOP-3947] - Fix build failure of Oozie due to insufficient test scope dependency on hive-service
* [BIGTOP-3948] - Fix build failure of Tez due to expired certificate of bower repo
* [BIGTOP-3949] - Fix dependency convergence error of Zeppelin
* [BIGTOP-3952] - Fix toolchain to download Maven from archive.apache.org instead of dlcdn.apache.org
* [BIGTOP-3954] - Fix the version definition in bigtop.bom so that `./gradlew setversion` works
* [BIGTOP-3956] - hadoop-deb FAILED on project hadoop-yarn-applications-catalog-webapp
* [BIGTOP-3961] - Fix version mismatch of hbase-client used by hadoop-yarn-server-timelineservice-hbase
* [BIGTOP-3962] - Fix setup failure of Ant due to unresolved gpg public key
* [BIGTOP-3966] - Make hive 3.1.3 compatible with hadoop 3.3.5
* [BIGTOP-3970] - Fix build failure of Zeppelin due to missing grpc-java-1.26.0 on ppc64le
* [BIGTOP-3972] - Fix startup failure of Oozie due to permission error on reading ssl-client.xml
** Improvement
* [BIGTOP-3900] - Migrate secure DataNode settings from jsvc to SASL
* [BIGTOP-3915] - soft link error about jar of hadoop in {hbase_home}/lib
* [BIGTOP-3951] - Fix toolchain to work with the recent version of facter
* Release 3.2.0 (2023-01-17)
Release Notes - Bigtop - Version 3.2.0
** Sub-task
* [BIGTOP-3438] - Upgrade protobuf-2.5.0 to 3.7.1 for Hadoop-3.3.0
* [BIGTOP-3692] - upgrade flink version to 1.15.0
* [BIGTOP-3696] - Bump Alluxio to 2.8.0
* [BIGTOP-3697] - Bump HBase to 2.4.12
* [BIGTOP-3698] - Bump Hive to 3.1.3
* [BIGTOP-3699] - Bump Spark to 3.2.1
* [BIGTOP-3700] - Bump Zeppelin to 0.10.1
* [BIGTOP-3701] - Remove deprecated Hadoop fs-image file after uninstalling HDFS-namenode
* [BIGTOP-3704] - Update Yarn service configuration in Mpack
* [BIGTOP-3705] - Refine the Ambari RPM spec to fix warning after rpm uninstallation
* [BIGTOP-3706] - Bump Hadoop to 3.3.3
* [BIGTOP-3716] - Rename the Yarn/MapReduce historyserver PID file
* [BIGTOP-3717] - Update MapReduce service configuration in Mpack
* [BIGTOP-3718] - Fix MapReduce2 service-check in Amabri Mpack
* [BIGTOP-3719] - Decouple Mpack HDFS services from Ambari Core
* [BIGTOP-3721] - Add Kafka support for Bigtop 3.1.0 Mpack
* [BIGTOP-3726] - Align the version of the components in Mpack.
* [BIGTOP-3727] - Add HBase support for Bigtop 3.1.0 Mpack
* [BIGTOP-3728] - Docker dev/test env for centos7
* [BIGTOP-3734] - Add Sqoop support for Bigtop 3.1.0 Mpack
* [BIGTOP-3738] - Add Hive support for Bigtop 3.1.0 Mpack
* [BIGTOP-3739] - Add Tez support for Bigtop 3.1.0 Mpack
* [BIGTOP-3740] - Add Zeppelin support for Bigtop 3.1.0 Mpack
* [BIGTOP-3741] - Add Flink support for Bigtop 3.1.0 Mpack
* [BIGTOP-3750] - Add Chrony synchronization to fix hostcheck issue in Mpack docker provisioner
* [BIGTOP-3752] - Ambari query webhdfs failed with Zeppelin notebook
* [BIGTOP-3753] - Bump Solr to 8.11.2
* [BIGTOP-3755] - Bump HBase to 2.4.13
* [BIGTOP-3760] - Bump Hadoop to 3.3.4
* [BIGTOP-3763] - Fix Hive build issues about protobuf 2.5.0 on Arm64 and PPC64le
* [BIGTOP-3765] - Remove cmake conditional for Hadoop rpm spec
* [BIGTOP-3770] - Remove Sqoop from Bigtop stack
* [BIGTOP-3771] - Fix failure of sqlline.py bundled with Phoenix
* [BIGTOP-3772] - Add Solr support for Bigtop 3.1.0 Mpack
* [BIGTOP-3775] - Failed to build Phoenix on Arm64/powerpc64le
* [BIGTOP-3777] - Add Spark support for Bigtop 3.1.0 Mpack
* [BIGTOP-3778] - Hive 3.1.3 WebHCat service is not compatible with Hadoop 3.3.x
* [BIGTOP-3780] - Add Ambari_metrics to Bigtop Mpack
* [BIGTOP-3786] - Improve the build scripts to append suffix to the rpm package name
* [BIGTOP-3788] - Fix Ambari-HDFS components fail to start when kerberos enabled
* [BIGTOP-3789] - Decouple Kerberos services from Ambari Core
* [BIGTOP-3792] - Mpack solr fail to start when kerberos enabled
* [BIGTOP-3795] - Add parameter to configure parent directory for RPM packages
* [BIGTOP-3796] - Support parent directory configuration for Zookeeper rpm build script
* [BIGTOP-3797] - Support parent directory configuration for Kafka rpm build script
* [BIGTOP-3798] - Support parent directory configuration for Zeppelin rpm build script
* [BIGTOP-3799] - Support parent directory configuration for Hive rpm build script
* [BIGTOP-3800] - Add extra Ambari-metrics RPMs packages in Ambari build for Mpack
* [BIGTOP-3802] - Fix Mpack Hive fail to start when kerberos enabled
* [BIGTOP-3804] - Add quicklinks for HDFS/YARN/MapReduce
* [BIGTOP-3805] - Support parent directory configuration for Spark rpm build script
* [BIGTOP-3806] - Support parent directory configuration for Flink rpm build script
* [BIGTOP-3812] - Building bigtop-ambari-mpack fails on Debian/Ubuntu due to unwanted binary files
* [BIGTOP-3816] - Fails to enable NameNode HA
* [BIGTOP-3821] - Support parent directory configuration for Hadoop rpm build script
* [BIGTOP-3823] - Support parent directory configuration for HBase rpm build script
* [BIGTOP-3825] - Support parent directory configuration for Solr rpm build script
* [BIGTOP-3826] - Support parent directory configuration for Tez rpm build script
* [BIGTOP-3831] - Introduce bigtop-select rpm package to Bigtop
* [BIGTOP-3839] - Rename bin file bigtop-select to distro-select on rpm package
* [BIGTOP-3845] - Add the command to create the '/usr/bigtop' folder in the bigtop-select rpm package
* [BIGTOP-3847] - Set bigtop-select to be consistent with -PparentDir
* [BIGTOP-3851] - Fix fail to start Namenode because of bigtop-select
* [BIGTOP-3856] - Add hive-hcat-client in distro-select
* [BIGTOP-3857] - Support parent directory default configuration for Hadoop rpm
* [BIGTOP-3861] - Support parent directory default configuration for Hbase rpm
* [BIGTOP-3869] - Decouple mpack Zookeeper service from Ambari Core.
* [BIGTOP-3872] - Adjust Ambari-2.7.5 dependency to fix the deployment issues of Ambari metrics
* [BIGTOP-3874] - Bump Flink to 1.15.3
* [BIGTOP-3887] - Fix Phoenix smoke-test is failed
* [BIGTOP-3888] - Bump Spark to 3.2.3
* [BIGTOP-3889] - Update S3 bucket links of Jars downloading for Metrics in Mpack
* [BIGTOP-3890] - Failed to build gpdb on Fedora-36
* [BIGTOP-3891] - Fix build issues of Spark in Debian11/Ubuntu22 packaging
* [BIGTOP-3893] - Fix Hadoop3.3.4 build issues on ppc64le
* [BIGTOP-3894] - Failed to build Alluxio on Centos-7 for ppcle64
* [BIGTOP-3895] - Use OSS version of Grafana for Ambari Metrics
** Bug
* [BIGTOP-3685] - make docker-provisioner to be used both in docker-compose v1 and v2
* [BIGTOP-3694] - Fix Oozie build errors
* [BIGTOP-3707] - Update latest repo url for Provisioner docker yamls
* [BIGTOP-3708] - Fix build failure of Hive against Hadoop 3.3.3
* [BIGTOP-3709] - Bring protobuf 2.5.0 back for building HBase on aarch64 and ppc64le
* [BIGTOP-3710] - Fix build failure of HBase on aarch64 due to error in check-aggregate-license
* [BIGTOP-3712] - Kafka smoke test failed with Zookeeper built with maven
* [BIGTOP-3724] - Increment the release number of ZooKeeper and Kafka
* [BIGTOP-3725] - Puppet 3 is removed from EPEL for CentOS 7
* [BIGTOP-3733] - Building Logstash fails on Rocky 8
* [BIGTOP-3735] - Sqoop bin script doesn't work on Bigtop-3.1.0
* [BIGTOP-3737] - Fix build failure of Sqoop due to unresolved dependency on javax.activation-api
* [BIGTOP-3747] - Zeppelin RPM package is missing notebookrepo-filesystem-0.10.0.jar
* [BIGTOP-3751] - Fix build failure of Zeppelin due to dependency convergence error
* [BIGTOP-3758] - Fix build failure of Tez against Hadoop 3.3
* [BIGTOP-3761] - Fix bigtop_toolchain to enable EPEL before downloading packages
* [BIGTOP-3762] - Building Spark fails on master due to StackOverflowError
* [BIGTOP-3769] - Building Sqoop fails due to dependency download failure
* [BIGTOP-3776] - spark-thriftserver should work without external hive-metastore
* [BIGTOP-3787] - Add docs in Phoenix .deb package
* [BIGTOP-3790] - Tez didn't create symlink for conf dir like other components
* [BIGTOP-3791] - Hive package still using log4j while it's already upgrade to log4j2
* [BIGTOP-3803] - Fix Hive3.1.3 Metastore service compatible issue with Hadoop3.3.x when kerberos enabled
* [BIGTOP-3809] - Tez deb package build fails after add conf symlink
* [BIGTOP-3810] - Hadoop build scripts use wrong home configuration for user httpfs
* [BIGTOP-3813] - Incompatible guava & commons-lang3 Versions in Oozie Sharelib
* [BIGTOP-3814] - Deploying Spark ThriftServer fails because it's launched too early
* [BIGTOP-3815] - Fix failure of installing hadoop-httpfs deb due to chagen of httpfs home dir
* [BIGTOP-3828] - Docker network resource continues to remain when use docker provisioner.
* [BIGTOP-3842] - Fix failure of deb packaging of Hadoop
* [BIGTOP-3854] - Hadoop Smoke test failed in openEuler
* [BIGTOP-3858] - Invalid repository URL is set in rockylinux8 config
* [BIGTOP-3868] - Docker provisioner fails when it is executed from gradle
** Improvement
* [BIGTOP-3623] - dh_strip_nondeterminism spends too much time on deb packaging
* [BIGTOP-3669] - Use maven instead of ant to build ZooKeeper
* [BIGTOP-3687] - Add kubernetes client jar to Spark package
* [BIGTOP-3689] - Upgrade Mpack services stack to Bigtop 3.2
* [BIGTOP-3693] - Support Docker Compose V2
* [BIGTOP-3711] - Add read/write smoke tests for Kafka
* [BIGTOP-3715] - Add TestWebHDFS to smoke-tests
* [BIGTOP-3744] - Puppet Deploy Hive on Tez add Resource Resizing Configs
* [BIGTOP-3748] - Upgrade Bigtop components for 3.2-release
* [BIGTOP-3754] - Add Ubuntu 22.04 support
* [BIGTOP-3756] - Add Fedora 36 support
* [BIGTOP-3767] - Add Spark Thrift Server Puppet Deploy Code
* [BIGTOP-3768] - Add Spark User Hdfs Folder for Deploy Spark Thrift Server
* [BIGTOP-3774] - Drop Docker Sandbox and Vagrant Provisioner
* [BIGTOP-3801] - Add maven cache volume for docker provisioner
* [BIGTOP-3808] - Add Phoenix support for Bigtop 3.1.0 Mpack
* [BIGTOP-3818] - Phoenix Don't Requre Hadoop and Zookeeper Installed
* [BIGTOP-3819] - Adding Puppet Recipes for Apache Phoenix
* [BIGTOP-3827] - Skip dh_strip_nondeterminism for HBase, Phoenix and Zeppelin
* [BIGTOP-3840] - Enable short circuit local read in HDFS deployment by default
* [BIGTOP-3852] - Add Java 11 to bigtop-toolchain to use it in docker container during packaging
* [BIGTOP-3892] - Fix build scripts so that we can define components which only supports deb or rpm
** Task
* [BIGTOP-3742] - Add tez.tar.gz tarball in tez.rpm
* [BIGTOP-3759] - Remove ELK from Bigtop 3.2.0 stack
* Release 3.1.1 (2022-08-07)
Release Notes - Bigtop - Version 3.1.1
** Bug
* [BIGTOP-3712] - Kafka smoke test failed with Zookeeper built with maven
* [BIGTOP-3714] - Fix error of DataNode httpserver due to conflicting dependency on Netty in branch-3.1
* [BIGTOP-3724] - Increment the release number of ZooKeeper and Kafka
* [BIGTOP-3725] - Puppet 3 is removed from EPEL for CentOS 7
* [BIGTOP-3733] - Building Logstash fails on Rocky 8
* [BIGTOP-3735] - Sqoop bin script doesn't work on Bigtop-3.1.0
* [BIGTOP-3747] - Zeppelin RPM package is missing notebookrepo-filesystem-0.10.0.jar
* [BIGTOP-3751] - Fix build failure of Zeppelin due to dependency convergence error
** New Feature
* [BIGTOP-3736] - Bump Hadoop to 3.2.4 in branch-3.1
** Improvement
* [BIGTOP-3669] - Use maven instead of ant to build ZooKeeper
* [BIGTOP-3715] - Add TestWebHDFS to smoke-tests
** Task
* [BIGTOP-3742] - Add tez.tar.gz tarball in tez.rpm
* Release 3.1.0 (2022-05-21)
Release Notes - Bigtop - Version 3.1.0
** Sub-task
* [BIGTOP-3583] - Bump Zeppelin to 0.10.0
* [BIGTOP-3596] - Bump ZooKeeper to 3.5.9
* [BIGTOP-3597] - Fix build failure of Hadoop 3.2 against ZooKeeper 3.5
* [BIGTOP-3598] - Bump HBase to 2.4.8
* [BIGTOP-3599] - Bump Phoenix to 5.1.2
* [BIGTOP-3601] - Bump Kafka to 2.8.1
* [BIGTOP-3602] - Bump Spark to 3.1.2
* [BIGTOP-3606] - Bump Hadoop to 3.2.3
* [BIGTOP-3610] - Use a stricter match for the zookeeper jar in hadoop packaging
* [BIGTOP-3613] - Review log4j configurations for CVE-2021-44228
* [BIGTOP-3649] - Nexus local mirror functionality doesn't work in CI build
* [BIGTOP-3662] - Bump HBase to 2.4.11
** Bug
* [BIGTOP-3589] - Fix build failure of Alluxio caused by buildnumber-maven-plugin
* [BIGTOP-3595] - The webui module is missing in the RPM package and failed to create the alluxio user
* [BIGTOP-3604] - jsvc fails to find OpenJDK11
* [BIGTOP-3607] - Change the ambari metric repo to fix build error
* [BIGTOP-3609] - Update ca-certificates for CentOS 7
* [BIGTOP-3614] - Docker provisioner fails to start a cluster on Debian 10/11 images
* [BIGTOP-3622] - Remove usage of $(PWD) in Debian rules files
* [BIGTOP-3625] - Fix Livy's build failure
* [BIGTOP-3627] - Pinning the version of puppetlabs-stdlib
* [BIGTOP-3634] - enable_local_repo doesn't work for CentOS because of priority
* [BIGTOP-3639] - build failure of Alluxio ppc64le
* [BIGTOP-3647] - Change RPM repository for CentOS 8 to Vault Mirror
* [BIGTOP-3652] - Add the python-is-python2 package to the toolchain for Ubuntu 20.04
* [BIGTOP-3653] - Building Kibana fails due to the npm error
* [BIGTOP-3655] - Cluster deployment via Ambari fails on CentOS due to the lack of execute permission
* [BIGTOP-3656] - Fix Mpack's build and deployment problems on Ubuntu
* [BIGTOP-3657] - Revert the download site to archive.apache.org partially
* [BIGTOP-3659] - Ambari deployment fails due to the odpi-ambari-mpack version mismatch
* [BIGTOP-3663] - Hadoop deployment fails on Fedora 35
* [BIGTOP-3664] - Building components in Docker requires additional parameters on Fedora 35
* [BIGTOP-3665] - Fix Docker provisioner to work with Fedora 35
* [BIGTOP-3666] - Replace the Docker provisioner config for CentOS 8 with Rocky 8
* [BIGTOP-3671] - Add a patch for CVE-2021-22569 to bigtop_toolchain
* [BIGTOP-3672] - Unable build bigtop-puppet/bigtop-slaves images
* [BIGTOP-3675] - Building Tez fails due to broken dependency
* [BIGTOP-3676] - Building Ambari for Debian 11 on ppc64le fails due to missing python
* [BIGTOP-3677] - Building HBase for CentOS 7 on arm64 and ppc64le fails due to missing libraries
* [BIGTOP-3678] - Building Zeppelin fails due to dependency convergence error
* [BIGTOP-3679] - Building Phoenix for CentOS 7 fails on aarch64
* [BIGTOP-3680] - HBase smoke test fails on ppc64le
** New Feature
* [BIGTOP-3600] - Add support for Debian 11 Bullseye
* [BIGTOP-3637] - Add Rocky Linux 8 support
** Improvement
* [BIGTOP-3615] - Upgrade log4j2 of Hive 3.1.2 to 2.16.0
* [BIGTOP-3616] - Bump Flink to 1.11.6
* [BIGTOP-3618] - Bump Solr to 8.11.1
* [BIGTOP-3624] - Bump Alluxio's log4j dependencies to 2.17.0
* [BIGTOP-3626] - Patch log4j version of ycsb
* [BIGTOP-3629] - Drop Debian 9 support - second attempt
* [BIGTOP-3632] - Bump elasticsearch's log4j dependencies to 2.17.0
* [BIGTOP-3635] - Bump logstash's log4j dependencies to 2.17.0
* [BIGTOP-3638] - Add pull request template for GitHub
* [BIGTOP-3640] - Upgrade hive's log4j2 version to 2.17.1 for Bigtop 3.0.x
* [BIGTOP-3642] - Upgrade log4j to 2.17.1 on all components
* [BIGTOP-3643] - Upgrade ubuntu version example in gradle task description
* [BIGTOP-3645] - Upgrade fedora version example in gradle task description
* [BIGTOP-3646] - Upgrade Geode and TableStore SDK version for YCSB
* [BIGTOP-3648] - Change download site to dlcdn.apache.org for installing Ant and Maven
* [BIGTOP-3650] - Modernize deb packages
* [BIGTOP-3658] - Add Fedora 35 support and drop 33
** Task
* [BIGTOP-3590] - Hbase smoke tests failed on Ubuntu 20.04
* [BIGTOP-3591] - Upgrading Bigtop-Mpack services deploying scripts aligned to Ambari-2.7.5
* [BIGTOP-3592] - Remove Ambari stack-select tool dependency from stack hooks
* [BIGTOP-3593] - Fix Bigtop Solr check Rat Issues
* [BIGTOP-3605] - Define Bigtop 3.1 release BOM
* [BIGTOP-3654] - Building Hadoop fails on ppc64le
* [BIGTOP-3684] - Fix RAT issues in Bigtop source tree
* Release 3.0.1 (2022-04-11)
Release Notes - Bigtop - Version 3.0.1
** Sub-task
* [BIGTOP-3649] - Nexus local mirror functionality doesn't work in CI build
** Bug
* [BIGTOP-3589] - Fix build failure of Alluxio caused by buildnumber-maven-plugin
* [BIGTOP-3595] - The webui module is missing in the RPM package and failed to create the alluxio user
* [BIGTOP-3607] - Change the ambari metric repo to fix build error
* [BIGTOP-3609] - Update ca-certificates for CentOS 7
* [BIGTOP-3614] - Docker provisioner fails to start a cluster on Debian 10/11 images
* [BIGTOP-3634] - enable_local_repo doesn't work for CentOS because of priority
* [BIGTOP-3639] - build failure of Alluxio ppc64le
* [BIGTOP-3647] - Change RPM repository for CentOS 8 to Vault Mirror
* [BIGTOP-3652] - Add the python-is-python2 package to the toolchain for Ubuntu 20.04
* [BIGTOP-3653] - Building Kibana fails due to the npm error
* [BIGTOP-3655] - Cluster deployment via Ambari fails on CentOS due to the lack of execute permission
* [BIGTOP-3656] - Fix Mpack's build and deployment problems on Ubuntu
* [BIGTOP-3657] - Revert the download site to archive.apache.org partially
* [BIGTOP-3659] - Ambari deployment fails due to the odpi-ambari-mpack version mismatch
** New Feature
* [BIGTOP-3600] - Add support for Debian 11 Bullseye
* [BIGTOP-3637] - Add Rocky Linux 8 support
** Improvement
* [BIGTOP-3615] - Upgrade log4j2 of Hive 3.1.2 to 2.16.0
* [BIGTOP-3616] - Bump Flink to 1.11.6
* [BIGTOP-3618] - Bump Solr to 8.11.1
* [BIGTOP-3624] - Bump Alluxio's log4j dependencies to 2.17.0
* [BIGTOP-3626] - Patch log4j version of ycsb
* [BIGTOP-3632] - Bump elasticsearch's log4j dependencies to 2.17.0
* [BIGTOP-3635] - Bump logstash's log4j dependencies to 2.17.0
* [BIGTOP-3640] - Upgrade hive's log4j2 version to 2.17.1 for Bigtop 3.0.x
* [BIGTOP-3642] - Upgrade log4j to 2.17.1 on all components
* [BIGTOP-3646] - Upgrade Geode and TableStore SDK version for YCSB
* [BIGTOP-3648] - Change download site to dlcdn.apache.org for installing Ant and Maven
** Task
* [BIGTOP-3590] - Hbase smoke tests failed on Ubuntu 20.04
* [BIGTOP-3591] - Upgrading Bigtop-Mpack services deploying scripts aligned to Ambari-2.7.5
* [BIGTOP-3592] - Remove Ambari stack-select tool dependency from stack hooks
* [BIGTOP-3593] - Fix Bigtop Solr check Rat Issues
* [BIGTOP-3654] - Building Hadoop fails on ppc64le
* Release 3.0.0 (2021-10-15)
Release Notes - Bigtop - Version 3.0.0
** Sub-task
* [BIGTOP-3280] - Bump Hadoop to 3.2.1
* [BIGTOP-3283] - Bump HBase to 2.2.6
* [BIGTOP-3329] - Bump ambari to v2.7.5
* [BIGTOP-3382] - Upgrade Flink to 1.11.3
* [BIGTOP-3474] - Bump Hadoop to 3.2.2
* [BIGTOP-3475] - Bump ZooKeeper to 3.4.14
* [BIGTOP-3479] - Bump Tez to 0.10.0
* [BIGTOP-3480] - Bump Hive to 3.1.2
* [BIGTOP-3481] - Bump Spark to 3.0.1
* [BIGTOP-3484] - Bump Alluxio to 2.4.1
* [BIGTOP-3485] - Bump Solr to v8.7.0
* [BIGTOP-3488] - Bump Kafka to 2.4.1
* [BIGTOP-3490] - Bump Sqoop to 1.4.7
* [BIGTOP-3491] - Add Ubuntu 20.04 support to the Bigtop toolchain
* [BIGTOP-3492] - Add Ubuntu 20.04 support to the Docker provisioner
* [BIGTOP-3493] - Bump YCSB to 0.17.0
* [BIGTOP-3498] - Bump Phoenix to 5.1.0
* [BIGTOP-3500] - Bump Zeppelin to 0.9.0
* [BIGTOP-3510] - Drop sqoop2
* [BIGTOP-3511] - Drop Mahout
* [BIGTOP-3512] - Drop Giraph
* [BIGTOP-3514] - Bump GPDB to 5.28.5
* [BIGTOP-3517] - Bump Livy to 0.7.1
* [BIGTOP-3519] - Drop Flume
* [BIGTOP-3520] - Drop ignite-hadoop
* [BIGTOP-3521] - Drop QFS
* [BIGTOP-3522] - Drop Fedora 31 and add Fedora 33 support
* [BIGTOP-3523] - Drop Ubuntu 16.04 support
* [BIGTOP-3528] - Bump Oozie to 5.2.1
* [BIGTOP-3529] - Drop bigtop-tomcat
* [BIGTOP-3556] - Minimum chnages for upgrading Bigtop-ambari-mpack aligned with Ambari 2.7.5
** Bug
* [BIGTOP-3472] - Building Hadoop 3.2.1 fails on CentOS 7 due to cmake version mismatch
* [BIGTOP-3473] - Building Hadoop 3.2.1 fails in checking jar contents
* [BIGTOP-3476] - Fix build Oozie issues
* [BIGTOP-3477] - Fix puppet manifests for hadoop-3
* [BIGTOP-3478] - Fix version mismatch of Guava between Hadoop and HBase
* [BIGTOP-3482] - Fix toolchain not to break cmake by creating unnecessary symlink
* [BIGTOP-3483] - Upgrade R version on Ubuntu 18.04
* [BIGTOP-3486] - Fix version mismatch of Jetty between Hadoop and HBase
* [BIGTOP-3489] - Fix Livy build failure with Spark 3
* [BIGTOP-3494] - Add MapReduce settings to yarn.nodemanager.env-whitelist in yarn-site.xml
* [BIGTOP-3497] - libcrypto.so should be provided for libhadoop.so
* [BIGTOP-3499] - Fix Logstash build failure due to gem version incompatibility
* [BIGTOP-3501] - Update hadoop-kms resources based on hadoop-3
* [BIGTOP-3505] - Update hadoop-kms puppet manifests based on hadoop-3
* [BIGTOP-3506] - Update hadoop-httpfs resources based on hadoop-3
* [BIGTOP-3508] - Sqoop bin script doesn't work on Debian 10 if libslf4j-java is installed
* [BIGTOP-3516] - Remove dead HBase jar link for Hive
* [BIGTOP-3524] - Hadoop 3.2.2 build failure on Arm
* [BIGTOP-3526] - Remove phantomjs depdency from yarn-ui
* [BIGTOP-3531] - Fix packaging of Oozie 5.2.1
* [BIGTOP-3532] - Fix smoke-tests for Oozie 5.2.1
* [BIGTOP-3535] - Add zstd compression headers to add native lib support
* [BIGTOP-3537] - Fix puppetize.sh to work with the latest CentOS 8 Docker image
* [BIGTOP-3538] - Building GPDB fails on Fedora 33
* [BIGTOP-3539] - Building bigtop-groovy fails on all distros and platforms
* [BIGTOP-3540] - Fix toolchain to abort if R installation failed
* [BIGTOP-3541] - Smoke test on odpi-runtime failed
* [BIGTOP-3542] - Fix build failure of Hadoop on ppc64le
* [BIGTOP-3543] - Build failures on the ARM CI servers
* [BIGTOP-3544] - Fix Spark build on Debian 9
* [BIGTOP-3545] - Nexus configured by docker provisioner fails to download pentaho-aggdesigner-algorithm
* [BIGTOP-3546] - Could not find org.pentaho:pentaho-aggdesigner-algorithm:5.1.5-jhyde.
* [BIGTOP-3548] - Hive build failure caused by protoc-jar-maven-plugin missing aarch64 support
* [BIGTOP-3549] - HBase build failure caused by protobuf in xolstice
* [BIGTOP-3551] - Phantomjs caused Ambari build failure on non-x86
* [BIGTOP-3554] - Phoenix build failure caused by protoc-2.5.0
* [BIGTOP-3559] - Fix the download URL for pip2 in the GPDB deployment manifest
* [BIGTOP-3562] - Building Logstash is failing due to the unavailability of keyserver
* [BIGTOP-3563] - Building Hadoop for CentOS 8 fails due to cmake error
* [BIGTOP-3567] - Building Zeppelin fails due to the dependency downloading problem
* [BIGTOP-3568] - Fix Ambari-2.7.5 installation issues
* [BIGTOP-3569] - Applying GPDB Puppet manifest fails on arm64
* [BIGTOP-3570] - Fix Spark smoke test failures
* [BIGTOP-3571] - Ensure Hadoop and Flink are deployed in the correct order
* [BIGTOP-3573] - Tez smoke test fails on the ARM platform
* [BIGTOP-3574] - Starting Elasticsearch fails on ppc64le
* [BIGTOP-3575] - Hive rpm build warning due to missing dependency
* [BIGTOP-3576] - Deploying Ambari to Fedora 33 fails on ppc64le
* [BIGTOP-3577] - HBase smoke test partially fails on ppc64le
* [BIGTOP-3578] - Solr smoke test fails on ppc64le
* [BIGTOP-3579] - Spark smoke test fails on Debian 9 and Ubuntu 18.04
* [BIGTOP-3580] - Fix deployment failure on Debian 10 caused by the Debian 11 release
* [BIGTOP-3582] - Logstash RPM Build Fails
* [BIGTOP-3584] - Fix build failure of Ambari due to missing dependency on javax.el
* [BIGTOP-3587] - Deploying Ambari to Ubuntu 18.04 and 20.04 fails on ppc64le
* [BIGTOP-3588] - Pin redis-rb version for Logstash to 4.4.0
** Improvement
* [BIGTOP-3383] - Update puppet manifest for deploying Flink 1.11.1
* [BIGTOP-3384] - Update smoke test to work with Flink 1.11.1
* [BIGTOP-3400] - Clean up or disable husky installed via packaging Kibana
* [BIGTOP-3456] - Add hadoop-yarn-router and hadoop-hdfs-dfsrouter to hadoop services
* [BIGTOP-3457] - Add libhdfspp packages to hadoop
* [BIGTOP-3495] - Optional tools of hadoop-tools should be optional
* [BIGTOP-3507] - Solr: CVE-2020-13957 mitigation backport
* [BIGTOP-3513] - Update deb resources for hadoop-yarn-router and hadoop-hdfs-dfsrouter
* [BIGTOP-3527] - hadoop package build failures for Debian 10
* [BIGTOP-3536] - Fix build failure of Hadoop on Fedora 33
* [BIGTOP-3552] - Add missing files to ambari-agent RPM
* [BIGTOP-3555] - Drop smoke-tests/odpi-runtime
* [BIGTOP-3558] - Fix build failure of HBase on ppc64le
* [BIGTOP-3560] - Fix build failure of Zeppelin on ppc64le
* [BIGTOP-3561] - Fix build failure of Kibana on ppc64le
* [BIGTOP-3564] - Fix build failure of Flink on Cent OS 7 ppc64le
* [BIGTOP-3565] - Fix build failure of Alluxio on Cent OS 7 ppc64le
* [BIGTOP-3585] - Remove obsolete text replacement from do-component-build of Ambari
** Task
* [BIGTOP-3533] - Enable Apache Bigtop CI/CD for ppc64le
* Release 1.5.0 (2020-12-07)
Release Notes - Bigtop - Version 1.5.0
** Sub-task
* [BIGTOP-3165] - Bump Spark to 2.4.5
* [BIGTOP-3188] - Bump Zeppelin to 0.8.1
* [BIGTOP-3215] - Failed to build bigtop/puppet image for OpenSuSE
* [BIGTOP-3220] - Add support for Elasticsearch deb build
* [BIGTOP-3221] - Add support for Elasticsearch rpm build
* [BIGTOP-3222] - Add puppet deployment for Elasticsearch
* [BIGTOP-3223] - Add smoke tests for Elasticsearch
* [BIGTOP-3276] - Update supported distros in the toolchain manifests for v1.5.0
* [BIGTOP-3279] - Bump Zookeeper to 3.4.13
* [BIGTOP-3281] - Bump Tez to 0.9.2
* [BIGTOP-3282] - Bump Hive to 2.3.6
* [BIGTOP-3285] - Bump Kafka to 2.4.0
* [BIGTOP-3286] - Bump Ignite to 2.7.6
* [BIGTOP-3287] - Bump Hadoop to 2.10.0
* [BIGTOP-3288] - Update supported distros in the Docker build scripts for v1.5.0
* [BIGTOP-3289] - Bump Tomcat to 8.5.50
* [BIGTOP-3297] - Bump HBase to 1.5.0
* [BIGTOP-3298] - Bump Phoenix to 4.15.0-HBase-1.5
* [BIGTOP-3305] - Bump Flume to 1.9.0
* [BIGTOP-3306] - Bump Giraph to 1.2.0
* [BIGTOP-3313] - Bump solor to 6.6.6
* [BIGTOP-3315] - Bump Alluxio to 1.8.2
* [BIGTOP-3343] - Add Debian 10 and Ubuntu 18.04 support to the Docker provisioner
* [BIGTOP-3356] - Add CentOS 8 support to the Docker provisioner
* [BIGTOP-3363] - Drop Apex, Hama and Tajo in the 1.5.0 release
* [BIGTOP-3375] - Bump Livy to 0.7.0 and build it with Python3
** Bug
* [BIGTOP-2742] - broken zeppelin init script
* [BIGTOP-3029] - "--parser" is invalidated in puppet v4.x. Affects Debian-9 builds
* [BIGTOP-3208] - Exception in master branch (and branch-1.4): kafka-server failed to launch due to missing zookeeper AsyncCallback.MultiCallback
* [BIGTOP-3216] - Flink smoke test failed on Debian-9
* [BIGTOP-3261] - Fix broken BPS Dockerfile
* [BIGTOP-3265] - Fix TEZ build error
* [BIGTOP-3266] - Rat check failed for one file with unapproved/unknown licenses
* [BIGTOP-3290] - Fix build failure of Oozie
* [BIGTOP-3291] - Fix build failure of Sqoop
* [BIGTOP-3292] - Fix service configuration of sqoop2-server
* [BIGTOP-3295] - Fix build failure of hadoop-2.10.0 on CentOS 8
* [BIGTOP-3296] - Creating apt repository fails on Ubuntu 18.04
* [BIGTOP-3299] - Fix Zookeeper build to make other build success
* [BIGTOP-3302] - init scripts using su do not work on recent systemd
* [BIGTOP-3303] - Fix build failure of hbase-1.5.0 on Ubuntu
* [BIGTOP-3304] - Fix build failure of Flume against hive-2.3.6
* [BIGTOP-3308] - Openssl fails to load in hadoop checknative -a on Debian 9
* [BIGTOP-3309] - Missing build target for Debian 10 in BigTop 1.5
* [BIGTOP-3310] - URL of maven and ant package list page is changed
* [BIGTOP-3311] - Fix Alluxio build failure with upgraded hadoop version
* [BIGTOP-3312] - Fix Ambari build failure due to maven repo requires https now
* [BIGTOP-3314] - Fix flink build failure with upgraded hadoop version
* [BIGTOP-3316] - Fix HBase build failure on Arm platform
* [BIGTOP-3317] - Oozie sharedlib create command fails when uploading to HDFS
* [BIGTOP-3327] - Fix Zeppelin build issue after upgrading Spark-2.4.5
* [BIGTOP-3330] - oozie and oozie-client deb packages try to install the same jars in the same dir
* [BIGTOP-3331] - Provisioner Deployment failed on Fedora
* [BIGTOP-3332] - Add new provisioner yaml configuration for Fedora 31
* [BIGTOP-3333] - Fix Hive build after upgrading Spark to 2.4.5
* [BIGTOP-3334] - Fix Oozie build after upgrading Spark to 2.4.5
* [BIGTOP-3335] - Fix Mahout build after upgrading Spark to 2.4.5
* [BIGTOP-3336] - Fix Livy build on CentOS and Fedora
* [BIGTOP-3338] - Fix `./gradlew repo` to work with GPDB and QFS on Ubuntu 18.04
* [BIGTOP-3339] - Fix Ambari build failure due to using old Bower
* [BIGTOP-3341] - Support for Openssl 1.1.1
* [BIGTOP-3347] - Fix failures of Hive ProxyFileSystem against Hadoop 2.10.0
* [BIGTOP-3348] - Fix Hive test failures caused by NoSuchMethodError of ApplicationId.fromString
* [BIGTOP-3351] - Fix sqoop build error on Ubuntu 18.04
* [BIGTOP-3352] - Fix qfs build error on Ubuntu 18.04
* [BIGTOP-3355] - [Puppet] Make GPG check for repos a configuration and default to true
* [BIGTOP-3359] - Fix failure of installing Hadoop due to conflicting .build-id entry on CentOS 8
* [BIGTOP-3361] - No libcrypt.so.1 in Fedora-31
* [BIGTOP-3364] - Zeppelin build failed in Ubuntu16.04/18.04 and CentOS7
* [BIGTOP-3372] - Building Spark fails on Debian 9 and Ubuntu 16.04
* [BIGTOP-3376] - Make Mpack as a standalone component in Bigtop
* [BIGTOP-3377] - Fix deployment failures on Fedora 31
* [BIGTOP-3378] - Fix Livy deployment failure on Debian and Ubuntu
* [BIGTOP-3379] - Fix Spark build failure on CentOS 8
* [BIGTOP-3380] - Bump Tomcat to 8.5.57
* [BIGTOP-3386] - Building GPDB fails on CentOS 8
* [BIGTOP-3387] - Building QFS fails on CentOS 8
* [BIGTOP-3390] - Building Alluxio fails on Fedora 31
* [BIGTOP-3392] - All packaging jobs are failing on Fedora 31 for aarch64 and ppc64le
* [BIGTOP-3394] - Building Logstash is failing on CentOS 8, Debian 10 and Ubuntu 18.04
* [BIGTOP-3395] - Building Kafka is failing on Fedora 31 for ARM64
* [BIGTOP-3396] - Building Ambari is failing on Fedora 31 for ARM64
* [BIGTOP-3397] - Building Spark is failing on CentOS 7 for ARM64 and PPC64
* [BIGTOP-3398] - Fix GPDB puppet manifest to work
* [BIGTOP-3399] - Fix bigtop-groovy build failure
* [BIGTOP-3401] - Failed to build Centos-8 docker images for Arm64
* [BIGTOP-3406] - Fix Oozie smoke test to work
* [BIGTOP-3407] - Ensure the procps package is installed in Debian 10
* [BIGTOP-3408] - docker-hadoop.sh generates broken site.yaml from config.yaml containing multiple components
* [BIGTOP-3410] - Fix bigtop-tomcat build failure due to downloading problem
* [BIGTOP-3413] - QFS doesn't work with Hadoop's TeraGen
* [BIGTOP-3414] - Fix the default value of GPDB configuration for smoke test
* [BIGTOP-3416] - Fix YCSB to work with CentOS 8 and Fedora 31
* [BIGTOP-3418] - Fix Ambari deployment on CentOS 8, Fedora 31 and Debian 10
* [BIGTOP-3422] - Fix ambari-server setup failure due to PostgreSQL initdb error
* [BIGTOP-3425] - Deploying Ambari fails on Fedora 31
* [BIGTOP-3426] - Flink smoke test fails with fedora-31 and debian-10 on arm64
* [BIGTOP-3427] - Deploying GPDB fails due to the paramiko installation on some distros
* [BIGTOP-3429] - QFS smoke test fails on Ubuntu 16.04
* [BIGTOP-3430] - QFS smoke test fails on Fedora 31/arm64
* [BIGTOP-3437] - Building Logstash fails due to amazing_print version mismatch
* [BIGTOP-3439] - Oozie's smoke test fails on CentOS and Fedora
* [BIGTOP-3440] - Building flume fails on all distros
* [BIGTOP-3443] - Building Spark fails on Ubuntu 16.04
* [BIGTOP-3444] - Bump Hadoop to 2.10.1
* [BIGTOP-3446] - Fix toolchain task failure due to undefined variable in renv.pp
* [BIGTOP-3448] - Building Alluxio fails on all distros
* [BIGTOP-3449] - Failed to build Haddop-2.10.1 on Arm64
* [BIGTOP-3451] - Fix smoke test for SparkR
* [BIGTOP-3455] - Hive 2.2.x bug with DBTokenStore
* [BIGTOP-3458] - Fix broken dependency on groovy-all in the test framework
* [BIGTOP-3459] - Deploying GPDB fails on ARM64 CentOS 7
* [BIGTOP-3462] - Deploying Livy fails if the SPARK_HOME directory doesn't exist
** New Feature
* [BIGTOP-2961] - Add Apache Livy (incubating) to Bigtop stack
* [BIGTOP-3219] - Add Elasticsearch as component
* [BIGTOP-3293] - Add hadoop-kms package
* [BIGTOP-3319] - Add Logstash as Bigtop component
* [BIGTOP-3320] - Add Kibana as Bigtop component
* [BIGTOP-3325] - Spark LICENSE files should be exempted by RAT check
* [BIGTOP-3411] - Disable unnecessary scm check in Buildnumber-maven-plugin for Mpack
** Improvement
* [BIGTOP-3092] - kafka charm: support juju storage
* [BIGTOP-3168] - Kafka smoke tests implementation
* [BIGTOP-3214] - Install python libraries for Livy
* [BIGTOP-3217] - Add smoke tests for Apache Livy
* [BIGTOP-3234] - TEZ smoke tests implementation
* [BIGTOP-3236] - Zeppelin smoke tests implementation
* [BIGTOP-3237] - Add smoke tests for YCSB
* [BIGTOP-3259] - Update the default stack version for docker-provisioner to 1.4.0
* [BIGTOP-3300] - Add puppet manifests for hadoop-kms
* [BIGTOP-3301] - Add smoke-tests for hadoop-kms
* [BIGTOP-3337] - Remove Node.js from the toolchain
* [BIGTOP-3353] - hive.hwi.war.file configuration is no longer needed
* [BIGTOP-3358] - get_roles() function should fail if a component is not in roles_map
* [BIGTOP-3362] - Unable to install spark-python package on CentOS8 due to lack of python package
* [BIGTOP-3369] - RHEL8 does not have PowerTools repo but CodeReady Builder
* [BIGTOP-3371] - Unable to build Apache Ambari on RHEL8
* [BIGTOP-3374] - Add dependencies on the utilities provided by Bigtop to bigtop.bom
* [BIGTOP-3389] - Extend timeout for installing protobuf and R packages
* [BIGTOP-3391] - Support GPDB on Perl 5.30+ environment
* [BIGTOP-3405] - Make gpg_check in docker-hadoop.sh configurable
* [BIGTOP-3415] - Extend timeout for Spark smoke test
* [BIGTOP-3431] - Update github Readme.md to be more newbie friendly
* [BIGTOP-3441] - Suppress YCSB smoke test output
* [BIGTOP-3460] - Extend timeout for Ambari Server setup
** Wish
* [BIGTOP-3268] - Add ability to change limits for nagios checks in charm
** Task
* [BIGTOP-3015] - hadoop-spark bundle correction
* [BIGTOP-3123] - Define Bigtop 1.5.0 release BOM
* [BIGTOP-3318] - Use secure repo in bigtop-tests
* [BIGTOP-3322] - Lintian Warnings in Hadoop
* [BIGTOP-3340] - Add Masatake Iwasaki to team list
* [BIGTOP-3409] - Move bigtop website off from CMS: staging
* [BIGTOP-3419] - Automate Deployment to asf-site
* Release 1.4.0 (2019-03-24)
Release Notes - Bigtop - Version 1.4.0
** Sub-task
* [BIGTOP-2012] - Add new tests for webhdfs
* [BIGTOP-2993] - Switch to gradle XXX-pkg-ind feature developed in BIGTOP-2949 for Bigtop CI
* [BIGTOP-2994] - Document the new feature added in BIGTOP-2949
* [BIGTOP-2995] - Add example CI pipeline to build end-to-end from a commit to smoke test
* [BIGTOP-2996] - Update Smoke Test CI matrix against Bigtop master Distros
* [BIGTOP-3009] - Add gradle repo-ind
* [BIGTOP-3110] - [Puppet] Hive metastore can not startup successfully
* [BIGTOP-3114] - [Test] HBase Importtsv smoke tests are failing
* [BIGTOP-3115] - [Puppet] Alluxio master/worker can not startup successfully
* [BIGTOP-3117] - [Puppet] Can't run spark commands for Spark on Yarn deployment
* [BIGTOP-3118] - [Puppet] Failed to deploy GPDB
* [BIGTOP-3120] - [Puppet] Annoying warning message from Ambari snippet
* [BIGTOP-3121] - [Provisioner] Can't create docker containers after using Docker Provisioner on Amazon Linux
* [BIGTOP-3122] - CI matrix for smoke tests
* [BIGTOP-3124] - Remove package installation in provisioner/utils/smoke-tests.sh and polish the script
* [BIGTOP-3126] - [Puppet] Failed to deploy QFS due to Permission denied error at initailization
* [BIGTOP-3129] - Failed to run QFS smoke test
* [BIGTOP-3130] - Failed to run Alluxio smoke test
* [BIGTOP-3131] - Apex smoke test requires mvn to compile test jar
* [BIGTOP-3132] - Bump Alluxio up to 1.8.1
* [BIGTOP-3133] - [Puppet] Add a module to deploy bigtop-utils
* [BIGTOP-3134] - [Puppet] An upgrade to deploy Alluxio 1.8.1
* [BIGTOP-3136] - [Provisioner] Local built repo should have higher priority
* [BIGTOP-3138] - Maven installation failed on debian-9
* [BIGTOP-3139] - Failed to deploy Ambari on CentOS/Fedora cause no service command available
* [BIGTOP-3140] - [Test] TestHadoopExamples.groovy can have $USER = null when running in Docker
* [BIGTOP-3141] - Release number is not honored by the build system
* [BIGTOP-3142] - Better user expereince when calling docker-hadoop.sh -d with no cluster running
* [BIGTOP-3144] - [Test] QFS smoke test failed on multi-node cluster
* [BIGTOP-3146] - gradlew is not available in bigtop-tests/smoke-tests for running run_itest.sh
* [BIGTOP-3147] - Nexus proxy cache configuration is broken
* [BIGTOP-3148] - Error out when configure-nexus encounter any issue
* [BIGTOP-3149] - Support to enable Nexus proxy for Docker Provisioner
* [BIGTOP-3150] - [Provisioner] Raise proper exit code and error messages when provisioning failed
* [BIGTOP-3153] - Switch to docker cp based solution to build inside containers
* [BIGTOP-3154] - [Provisioner] Failed to bootstrap provisioning environment on Debian/Ubuntu
* [BIGTOP-3155] - Setup manual smoke test for Pull Requests
* [BIGTOP-3157] - Failed to start Ambari server and agent on Fedora 26
* [BIGTOP-3158] - [Test] Fix test specification with maven failsafe plugin
* [BIGTOP-3159] - Failed to deploy Alluxio due to Puppet compatibility issue
* [BIGTOP-3160] - [Provisioner] Treat both exit code 0 and 2 as success for Puppet execution
* [BIGTOP-3161] - Upgrade to Puppet 5.X
* [BIGTOP-3163] - Bump Hadoop to 2.8.5
* [BIGTOP-3164] - Bump Kafka to 1.1.1
* [BIGTOP-3166] - Update Kerberos module to comply with Puppet's syntax
* [BIGTOP-3167] - Nexus is always enabled for ./gradlew XXX-ind
* [BIGTOP-3169] - Enable local repo is not working on yum systems
* [BIGTOP-3170] - Loop and wait for daemon to be started up for Alluxio
* [BIGTOP-3171] - Update Kafka Puppet module for version 1.1.1
* [BIGTOP-3172] - [Provisioner] Support to specify components and smoke-tests when launching Docker Provisioner
* [BIGTOP-3173] - Fix bugs and improve usability of COMPONENT-pkg-ind
* [BIGTOP-3174] - ./gradlew repo-ind failed on Bigtop build slaves
* [BIGTOP-3175] - [Build] Support to specify commit SHA1 when building packages
* [BIGTOP-3176] - [Build] Support non X86 archs for COMPONENT-pkg-ind
* [BIGTOP-3177] - [Build] Exit w/o container left dangling when running docker in gradle wrapper
* [BIGTOP-3179] - Connection refused by www-us.apache.org mirror site
* [BIGTOP-3180] - Gradle 5 incompatible issue
* [BIGTOP-3181] - Build as non-root for COMPONENT-pkg-ind
* [BIGTOP-3182] - Helper message and documentation of new XXX-ind features
* [BIGTOP-3183] - Zeppelin build failed
* [BIGTOP-3185] - Bump Kafka to 2.1.1
* [BIGTOP-3186] - Bump Spark to 2.2.3
* [BIGTOP-3187] - Bump Flume to 1.9.0
* [BIGTOP-3189] - Allow to specify more properties/options at command line for docker provisioner
* [BIGTOP-3190] - Compatibility issue for Zeppelin with Spark 2.2.3
* [BIGTOP-3191] - Old Gradle version causes Kafka 2.1.1 build failed
* [BIGTOP-3192] - Remove Spark 1.6 from the stack
* [BIGTOP-3193] - Add REPO and MEMORY as options for docker-provisioner
* [BIGTOP-3195] - Add pkgs-ind to package all artifacts inside docker
* [BIGTOP-3196] - Drop Apache Crunch in Bigtop distribution
* [BIGTOP-3197] - [Docker] Treat both exit code 0 and 2 as success for Puppet execution
* [BIGTOP-3198] - [Sandbox] Support AARCH64/PPC64LE
* [BIGTOP-3199] - Can not run smoke test inside docker-provisioner
* [BIGTOP-3200] - Bugfix Integration test framework 2.0 and documentation
* [BIGTOP-3203] - [Sandbox] Architecture string is a mess for Distributions
* [BIGTOP-3206] - Missing /etc/init.d/functions when deploying Alluxio on Fedora 26
* [BIGTOP-3207] - [Provisioner] Do not exit when destroying got no cluster exists
* [BIGTOP-3209] - Revert Kafka to 0.10.2.2 and Flume to 1.8.0
* [BIGTOP-3210] - Missing /lib/lsb/init-functions when deploying Flink on Fedora 26
* [BIGTOP-3212] - Deploy QFS client failed due to no such directory error
* [BIGTOP-3213] - Bugs in pom.xml files when releasing Bigtop 1.4.0
** Bug
* [BIGTOP-2595] - Make Spark1 and Spark2 coexist
* [BIGTOP-2892] - The download page should provide instructions to check hashes and signatures
* [BIGTOP-2986] - Oozie build is failing
* [BIGTOP-3099] - Fix oozie build
* [BIGTOP-3102] - docker-hadoop.sh WARNING: The scale command is deprecated
* [BIGTOP-3107] - QFS cannot compile with newer Oracle SDK
* [BIGTOP-3112] - Update release KEYS file from dist.apache.org to apache.org/dist
* [BIGTOP-3113] - Update previous releases links to the archive.apache.org in the download page
* [BIGTOP-3125] - [provisioner] sbin/init is missed in puppet:opensuse-42.3
* [BIGTOP-3151] - Add flink smoke test
* [BIGTOP-3184] - URLConnection check fails with exception when it should return false
* [BIGTOP-3194] - Phoneix QueryServer PID file name in svc file is inconsistent with that in QueryServer's execution script
** New Feature
* [BIGTOP-2947] - Project Frontier: Bigtop Integration Test Framework 2.0
** Improvement
* [BIGTOP-1227] - Deploy artifacts to maven repository
* [BIGTOP-3085] - Hello world example for adding a new package
* [BIGTOP-3135] - Remove deprecated giraph-site.xml
* [BIGTOP-3152] - No need to Force the use of Netty over Hadoop RPC in Giraph
* [BIGTOP-3204] - Upgrade flink from 1.4.2 to 1.6.0 or higher
** Task
* [BIGTOP-3098] - Update maven plugins for project pom
* [BIGTOP-3105] - Sync up site changes from branch 1.3 to master
* [BIGTOP-3106] - Update links in download page
* [BIGTOP-3108] - Update version strings to 1.3.0 in the master
* [BIGTOP-3109] - Overhaul the deployment and testing modules
* [BIGTOP-3128] - Switch to new gitbox repository
* [BIGTOP-3162] - Define Bigtop 1.4.0 release BOM
* [BIGTOP-3178] - Fix two insecure maven repositories
* Release 1.3.0 (2018-8-16)
Release Notes - Bigtop - Version 1.3.0
** Sub-task
* [BIGTOP-2833] - [puppetize.sh] Support centos-7-aarch64 support
* [BIGTOP-2893] - Bump Hadoop to 2.8.1
* [BIGTOP-2894] - Bump HBASE to 1.3.1
* [BIGTOP-2895] - Bump Pig to 0.17.0
* [BIGTOP-2897] - Bump Phoenix to 4.11-HBASE-1.3
* [BIGTOP-2898] - Bug: regression in Phoenix build after BIGTOP-2895
* [BIGTOP-2899] - Bug: regression in Oozie build after BIGTOP-2895
* [BIGTOP-2949] - Add gradle task which leverage bigtop-ci/build.sh to build packages
** Bug
* [BIGTOP-2101] - ignite-hadoop contains an arch-dependent shared lib
* [BIGTOP-2213] - tez build downloads amd64 nodejs executable
* [BIGTOP-2292] - Remove Centos 6 Support
* [BIGTOP-2503] - Solr packaging is broken on both DEB and RPM
* [BIGTOP-2634] - package perl-Env does not exist in centos 6
* [BIGTOP-2679] - Streamline CI Jobs
* [BIGTOP-2723] - Fix asciidoctor-maven-plugin for HBase build on AArch64
* [BIGTOP-2737] - Spark charm doesn't handle HA or examples well
* [BIGTOP-2738] - spark-worker fails to start
* [BIGTOP-2748] - Fix a puppet compatibilty issue
* [BIGTOP-2749] - puppet: use jessie package on jessie, not trusty
* [BIGTOP-2750] - puppet: increase compatibility with future versions
* [BIGTOP-2753] - Initial support for Debian-9
* [BIGTOP-2754] - Revert BIGTOP-2730: Upgrade Zookeeper to version 3.4.10
* [BIGTOP-2804] - Drop Solr package and Puppet snippets
* [BIGTOP-2818] - Ambari downloads jdk
* [BIGTOP-2826] - Zeppelin RPM is broken: "missing" osgi package deps
* [BIGTOP-2829] - [iTest] build failed during Maven integration test phase
* [BIGTOP-2832] - Toolchain failed to install on Debian 8
* [BIGTOP-2835] - puppet fails when bigtop::jdk_preinstalled is true
* [BIGTOP-2836] - charm metric collector race condition
* [BIGTOP-2838] - Support ARM64 for packages.gradle
* [BIGTOP-2841] - Failed to build bigtop/slaves-ubuntu-16.04-aarch64
* [BIGTOP-2844] - zeppelin charm: spark config should match zeppelin spark config
* [BIGTOP-2847] - Building from git is broken
* [BIGTOP-2850] - Not able to build bigtop/slaves image for OpenSuSE 42.1
* [BIGTOP-2859] - Missing HIVE_VERSION when build hive rpms
* [BIGTOP-2860] - Fix TestSpark.groovy syntax error
* [BIGTOP-2863] - Test build failed for incompatible JavaDoc format with JDK-8-121 and later
* [BIGTOP-2864] - Tez with "Class path contains multiple SLF4J bindings" warnings
* [BIGTOP-2866] - Fix rmr depricated and people* No such file or directory error
* [BIGTOP-2878] - Download task does not work for git repositories
* [BIGTOP-2881] - Greenpulm 5.0 got released - lets switch the Bigtop to it
* [BIGTOP-2885] - gpdb: disable gpcloud on CentOS 6
* [BIGTOP-2890] - Download page must not link to snapshots / nightly builds
* [BIGTOP-2891] - Download page must link to ASF mirrors
* [BIGTOP-2903] - update protobuf rpm links
* [BIGTOP-2906] - Failed to start solr-server service using bigtop-deploy
* [BIGTOP-2907] - upgrading Ambari from 2.5.0 to 2.5.2
* [BIGTOP-2908] - giraph charm: release audit failure
* [BIGTOP-2909] - ppc64le: Zeppelin 0.7.2 build is failing
* [BIGTOP-2911] - Change Solr service ports to default 8983/8984
* [BIGTOP-2912] - Intialize dataset for solr smoke test
* [BIGTOP-2915] - Some files are missing ALv2 header
* [BIGTOP-2917] - Ignite smoke test failed with JDK8
* [BIGTOP-2926] - introduce bigtop version into bigtop/puppet images
* [BIGTOP-2929] - Fix typo in opensuse version name
* [BIGTOP-2930] - sqoop fedora26 : rsync missing
* [BIGTOP-2931] - hadoop debian-9 : Unmet build dependencies: libssl-dev
* [BIGTOP-2932] - hadoop fedora26: openssl in native code problem
* [BIGTOP-2934] - Consolidate puppet usage by installing puppet from distro
* [BIGTOP-2935] - provisioner: Use proper command line depending on puppet version
* [BIGTOP-2942] - update tez to 0.9
* [BIGTOP-2943] - hbase does not compile with maven-3.5.2
* [BIGTOP-2944] - Update hbase and fix compilation issue
* [BIGTOP-2950] - BIGTOP-2869 breaks RAT check
* [BIGTOP-2953] - qfs is not buildable under Debian 9
* [BIGTOP-2957] - Upgrade YCSB to 0.12.0
* [BIGTOP-2958] - Tez should use appropriate profile for Hadoop shims
* [BIGTOP-2968] - Bump Hive version to 2.3.2
* [BIGTOP-2973] - Hama packaging is broken with Hadoop 2.8+
* [BIGTOP-2976] - zookeeper-rest missing dependency on lsb-base
* [BIGTOP-2979] - JAVA_HOME inconsistent on non-x86 architectures
* [BIGTOP-2980] - Hama does not build on DEB type systems
* [BIGTOP-2981] - Packaging SparkR is broken due to BIGTOP-2959
* [BIGTOP-2984] - Rat check failed after BIGTOP-2698
* [BIGTOP-2987] - Phoenix build break
* [BIGTOP-2990] - Upgrade Phoenix version to 4.13.1-HBase-1.3
* [BIGTOP-2991] - Bump up Spark version to 2.2.1
* [BIGTOP-3001] - Change uid and gid for jenkins user in bigtop-toolchain
* [BIGTOP-3003] - Ant-1.9.9 tarball is removed from Apache mirrors
* [BIGTOP-3004] - Fix HBase build failure on Debian/Fedora
* [BIGTOP-3013] - kafka charm: fail to deploy using Bigtop-trunk-repos
* [BIGTOP-3014] - juju: use charm-env for shebangs
* [BIGTOP-3018] - detect-javahome script has a typo in variable name
* [BIGTOP-3023] - Bump qfs to 2.0.0
* [BIGTOP-3024] - Zeppelin build is failed after Spark is bumpped to 2.2.1
* [BIGTOP-3025] - ci.bigtop.apache.org certificate is expired and causes errors
* [BIGTOP-3026] - 404 error: http://ci.bigtop.apache.org/view/Packages/job/Bigtop-trunk-packages/
* [BIGTOP-3027] - Wrong Leveldbjni native binary for aarch64
* [BIGTOP-3030] - Fix Ambari build failure on non-x86 platforms
* [BIGTOP-3033] - Spark build on OpenSUSE is failed
* [BIGTOP-3035] - Provisioner failed because init is missed in Debian-9
* [BIGTOP-3036] - Download gradle and groovy via TLS and do signature checking on ant
* [BIGTOP-3037] - Download maven securely
* [BIGTOP-3040] - Solr's default configsets doesn't work with smoke test cases
* [BIGTOP-3041] - Failed to init hadoop hdfs using init-hdfs.sh
* [BIGTOP-3042] - HDFS TestHDFSQuota doesn't match Hadoop's definition
* [BIGTOP-3044] - Fix docker build command for simple sh
* [BIGTOP-3045] - Remove insecure maven repository URL from gradle config
* [BIGTOP-3046] - Not correct auto find latest maven dist
* [BIGTOP-3048] - Revert BIGTOP-3001 to bring packaging CI back
* [BIGTOP-3050] - cgroups: cannot found cgroup mount destination: unknown
* [BIGTOP-3052] - Maven version is fixed in security verification code
* [BIGTOP-3053] - Tez failed to build due to bower version is deprecated
* [BIGTOP-3054] - Missing Spark archive caused Zeppelin build failure
* [BIGTOP-3061] - Crunch build failure
* [BIGTOP-3076] - QFS build failed on ppc64le
* [BIGTOP-3077] - OpenSuse-42.3 packages install error
* [BIGTOP-3078] - ignite-shmem failed to build on ppc64le
* [BIGTOP-3081] - Update HBase/Ignite-hadoop arch info
* [BIGTOP-3082] - Fix build failure with flume-1.8+kafka-0.10.2.2
* [BIGTOP-3083] - HBase and iginite-hadoop build failed on Fedora-26 due to BIGTOP-3081
* [BIGTOP-3088] - provisioner failed to run puppet deployment on CentOS-7
* [BIGTOP-3089] - Update provision config files with changes in 1.3.0 release
* [BIGTOP-3090] - provisioner failed on fedora-26 when deploying jdk
* [BIGTOP-3091] - Set Bigtop repo to higher priority
** New Feature
* [BIGTOP-2868] - Travis integration for Jar files.
* [BIGTOP-3007] - expose hive config options for zookeeper
** Improvement
* [BIGTOP-2698] - Build/install protobuf-2.5 from source
* [BIGTOP-2730] - Bump zookeeper to 3.4.10
* [BIGTOP-2784] - Bump version of Solr to 6.5.1
* [BIGTOP-2787] - [bigtop-slaves] Support of CentOS 7 ARM64 bigtop-slaves
* [BIGTOP-2794] - [bigtop-puppet] Support CentOS 7 AArch64 bigtop puppet
* [BIGTOP-2809] - Support R integration for Spark
* [BIGTOP-2810] - Support R integration for Zeppelin
* [BIGTOP-2811] - Add R to toolchain for Spark and Zeppelin
* [BIGTOP-2819] - Polish the README.md for 1.2.1 release
* [BIGTOP-2824] - [sandbox] Support CentOS 7 AArch64 sandbox
* [BIGTOP-2825] - Upgrade gradle to the latest 4.0
* [BIGTOP-2834] - spark charm: refactor for restricted networks; lib cleanup
* [BIGTOP-2839] - Bump Hadoop version to 2.7.4
* [BIGTOP-2843] - Add provisioner config yaml for ubuntu-16.04-aarch64
* [BIGTOP-2846] - Add DSL documentation for GIT-based builds
* [BIGTOP-2848] - Add provisioner docker yaml config file CentOS-7 AArch64
* [BIGTOP-2851] - [bigtop-puppet] Add Debian 8 AArch64 bigtop puppet
* [BIGTOP-2852] - [bigtop-slaves] Add Debian 8 AArch64 bigtop-slaves
* [BIGTOP-2853] - [sandbox] Add Debian 8 AArch64 sandbox
* [BIGTOP-2854] - Add provisioner docker yaml config file Debian 8 AArch64
* [BIGTOP-2856] - [sandbox] Add a condition in detect_repo()
* [BIGTOP-2857] - Add aarch64 support for fedora-25
* [BIGTOP-2858] - Add AArch64 support for Debian 9
* [BIGTOP-2867] - spark charm: make bigtop version configurable
* [BIGTOP-2869] - Bump solr to 6.6.0
* [BIGTOP-2872] - Replace aarch64 orgnanization with the more-specific arm64v8 organization in Official docker
* [BIGTOP-2874] - juju bundle refresh (august 2017)
* [BIGTOP-2875] - giraph charm: update metadata/readme
* [BIGTOP-2882] - Bump Hadoop and all dependencies to actual releases
* [BIGTOP-2889] - Remove HADOOP_HOME_WARN_SUPPRESS setting
* [BIGTOP-2910] - zeppelin charm: support bigtop upgrade
* [BIGTOP-2914] - GPDB 5.1.0 has been release. Let's bump that
* [BIGTOP-2916] - fix deprecated gradle syntax
* [BIGTOP-2918] - Update distributions for Bigtop-1.3
* [BIGTOP-2919] - Update maven to 3.5.2
* [BIGTOP-2920] - Cleanup puppet recipies: remove deprecated platforms
* [BIGTOP-2922] - Drop arch specific bigtop-* images
* [BIGTOP-2925] - Missing license header for .travis.yml
* [BIGTOP-2936] - Add RedHat default Oracle Java install location to detection script
* [BIGTOP-2959] - Add SPARK_DIST_CLASSPATH to include libraries for HDFS and YARN
* [BIGTOP-2974] - Add puppet code to deploy SparkR package
* [BIGTOP-2989] - Building Hadoop with a pre-downloaded Tomcat
* [BIGTOP-2992] - Building Pig with pre-arranged Forrest
* [BIGTOP-3002] - For Kafka, it should be possible to set the broker.id config and log.dirs config.
* [BIGTOP-3005] - Add zkpeer-relation-changed hook to zookeeper charm.
* [BIGTOP-3010] - juju bundle refresh (feb 2018)
* [BIGTOP-3011] - zookeeper: support autopurge.purgeInterval and autopurge.snapRetainCount.
* [BIGTOP-3031] - Auto find latest maven dist
* [BIGTOP-3038] - Add rollingupgrade option in hadoop-hdfs-namenode.svc
* [BIGTOP-3039] - Change git browse link to Github
* [BIGTOP-3047] - Add nagios monitoring to zookeeper charm.
* [BIGTOP-3055] - Bump GPDB to 5.10.0
* [BIGTOP-3058] - Bump flume to 1.8.0
* [BIGTOP-3059] - Bump Ambari to 2.6.1
* [BIGTOP-3060] - juju bundle refresh (august 2018)
* [BIGTOP-3062] - Bump flink to 1.4.2
* [BIGTOP-3064] - Bump HBase to 1.3.2
* [BIGTOP-3065] - Bump Hadoop to 2.8.4
* [BIGTOP-3066] - Bump tez to 0.9.1
* [BIGTOP-3067] - Bump Hive to 2.3.3
* [BIGTOP-3068] - Bump Hama to 0.7.1
* [BIGTOP-3069] - Bump crunch to 0.15.0
* [BIGTOP-3103] - Update download page to comply with Apache announcement requirements
** Test
* [BIGTOP-2865] - HBase smoke test implementation
** Task
* [BIGTOP-2739] - refresh juju bundles with latest charm revs
* [BIGTOP-2877] - Drop Kite packaging
* [BIGTOP-2884] - Upgrade gcc to support C++11 on CentOS 6
* [BIGTOP-2924] - Bring back 1.2.1 changes into master
* [BIGTOP-2945] - Define Bigtop 1.3 release BOM
* [BIGTOP-2969] - Bump up Spark version to 2.2.0
* [BIGTOP-2970] - Bump Zeppelin version to 0.7.3
* [BIGTOP-3006] - Add Jun He to team list
* [BIGTOP-3063] - [Umbrella] Efforts for 1.3.0 release
* [BIGTOP-3074] - Drop oozie packaging
* [BIGTOP-3075] - Drop pig packaging
* [BIGTOP-3106] - Update links in download page
* Release 1.2.1 (2017-10-24)
Release Notes - Bigtop - Version 1.2.1
** Sub-task
* [BIGTOP-2165] - ignite-hadoop service doesn't start
* [BIGTOP-2396] - Create CI jobs for new Docker Provisioner
* [BIGTOP-2758] - [Sandbox] Support dryrun in build script
* [BIGTOP-2760] - [Sandbox] Upgrade to Bigtop 1.2
* [BIGTOP-2761] - Remove bigtop-deploy image build scripts
* [BIGTOP-2767] - Auto detect repo does not need OS code name since 1.2.0
* [BIGTOP-2769] - OS_TO_CODE_NAME has been removed in BIGTOP-2767
* [BIGTOP-2772] - [Sandbox] Add --dryrun mode into helper script and document