forked from apache/bigtop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
2380 lines (2262 loc) · 153 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 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
* [BIGTOP-2814] - Make provisioner config names be consistent with OS names in CI
* [BIGTOP-2815] - Puppet should be able to generate multiple repo files
* [BIGTOP-2816] - Fix provisioner config name for ubuntu-16.04
** Bug
* [BIGTOP-2295] - Docker tests should consume current builds
* [BIGTOP-2679] - Streamline CI Jobs
* [BIGTOP-2716] - Solr build failed when OpenJDK8u_121 is used
* [BIGTOP-2729] - AMBARI-20686: Add ID to allow compilation with recent maven
* [BIGTOP-2737] - Spark charm doesn't handle HA or examples well
* [BIGTOP-2738] - spark-worker fails to start
* [BIGTOP-2740] - hbase 1.1.3 does not work on ppc64le
* [BIGTOP-2743] - hbase shell does not work on ppc64le
* [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-2751] - ambari: Storm 1.1.0-SNAPSHOT is no longer available, use released version
* [BIGTOP-2753] - Initial support for Debian-9
* [BIGTOP-2754] - Revert BIGTOP-2730: Upgrade Zookeeper to version 3.4.10
* [BIGTOP-2755] - Gradle needs cacerts file in place on fedora
* [BIGTOP-2756] - Get rid of Permission Denied when creating/destroying Docker Provisioner cluster
* [BIGTOP-2762] - Zeppelin installation failed due to JDK not installed
* [BIGTOP-2763] - Add /user/zeppelin directory for running Spark job on YARN in Zeppelin
* [BIGTOP-2764] - deployment failure when roles include spark::common and spark::yarn*
* [BIGTOP-2765] - fix roles logic for spark/zeppelin charms
* [BIGTOP-2766] - [Puppet] Spark worker startup failed due to default master_url is yarn
* [BIGTOP-2771] - ambari: build failed due to using third-party ConcurrentHashMap instead of the standard one unnecessarily
* [BIGTOP-2774] - gradlew toolchain does not work on Ubuntu 16.04.2/Puppet 3.8.5
* [BIGTOP-2775] - Make open jdk 8 available on bigtop/puppet:debian-8
* [BIGTOP-2781] - [Provisioner] 127.0.0.1 does not successfully inserted after BIGTOP-2756
* [BIGTOP-2788] - Corrects Apex patch for version 3.6.0
* [BIGTOP-2789] - Ambari: installing ODPi mpack fails due to changing its file name
* [BIGTOP-2790] - Ambari: deploying cluster fails due to ambari-agent version mismatch
* [BIGTOP-2793] - BIGTOP-2790 broke Ambari build on rpm-based system
* [BIGTOP-2796] - Bigtop Zookeeper(3.4.6) package conflict with Ubuntu 16.04 Zookeeper(3.4.8)
* [BIGTOP-2797] - zeppelin charm external role handling
* [BIGTOP-2798] - Apex component has duplicate slf4j binding
* [BIGTOP-2799] - [Puppet] Flink deployment failure on all supported OS
* [BIGTOP-2800] - provisioner fails for kerberos on centos-7
* [BIGTOP-2801] - charm race condition when gathering metrics
* [BIGTOP-2803] - Minor issues in bigtop.bom
* [BIGTOP-2805] - ycsb: turn of autodetection of dependencies by rpm
* [BIGTOP-2806] - hue is not installable on debian, ubuntu
* [BIGTOP-2808] - Handle deletion of symlinks: update gradle
* [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-2850] - Not able to build bigtop/slaves image for OpenSuSE 42.1
* [BIGTOP-2870] - testHCFS should be using USER_NAME for expected output
* [BIGTOP-2871] - Make run_itest report Standard Error from tests to stderr
* [BIGTOP-2873] - A few cosmetic changes to run_itest.sh output
* [BIGTOP-2879] - BIGTOP-2749 breaks deployments on Debian-8
* [BIGTOP-2890] - Download page must not link to snapshots / nightly builds
* [BIGTOP-2891] - Download page must link to ASF mirrors
* [BIGTOP-2900] - Crunch build failed because of OS OOM killer on OpenJDK 1.8.0-144
* [BIGTOP-2901] - disable GPDB because of build failure on OpenSuSE 42.1
* [BIGTOP-2903] - update protobuf rpm links
* [BIGTOP-2908] - giraph charm: release audit failure
** Improvement
* [BIGTOP-2355] - Update Mahout version to 0.13.0
* [BIGTOP-2677] - layer-spark: Improve sparkpi action output
* [BIGTOP-2730] - Bump zookeeper to 3.4.10
* [BIGTOP-2770] - Juju charm/bundle refresh
* [BIGTOP-2777] - make hbase charm more robust
* [BIGTOP-2778] - Delete PermSize / MaxPermsize options, no longer support by Java 8
* [BIGTOP-2783] - new charm icons for zookeeper and zeppelin
* [BIGTOP-2795] - spark charm: fix sparkpi and rework start/stop logic
* [BIGTOP-2802] - Some packages don't create necessary groups on debian-based system if the users correspond to them already exist
* [BIGTOP-2807] - Upgrade Spark to 2.1.1
* [BIGTOP-2812] - Upgrade Zeppelin version to 0.7.2
* [BIGTOP-2819] - Polish the README.md for 1.2.1 release
* [BIGTOP-2821] - expose extra config options for spark
* [BIGTOP-2827] - juju bundle refresh (june 2017)
* [BIGTOP-2828] - Since BIGTOP-2775 JDK version has been specified by Bigtop Puppet
** New Feature
* [BIGTOP-2253] - Rewrite Bigtop Docker Provisioner to use native solutions and support multi-host cluster deployment
* [BIGTOP-2779] - new hive charm
* [BIGTOP-2822] - spark charm: leverage puppet config, gpu enablement
** Task
* [BIGTOP-2739] - refresh juju bundles with latest charm revs
* [BIGTOP-2747] - new charm revs for bigtop-1.2
* [BIGTOP-2776] - Bump Apache Apex version to 3.6.0
* [BIGTOP-2785] - Define Bigtop 1.2.1 release BOM
* [BIGTOP-2786] - Push Bigtop 1.2.1 Docker build slaves to Docker Hub
* [BIGTOP-2877] - Drop Kite packaging
* Release 1.2.0 (2017-04-04)
Release Notes - Bigtop - Version 1.2.0
** Sub-task
* [BIGTOP-1406] - package Ambari in Bigtop
* [BIGTOP-1408] - create basic end-to-end tests for Ambari integration
* [BIGTOP-1409] - consider using ambari shell
* [BIGTOP-1624] - Add puppet recipes for deploying kafka
* [BIGTOP-2179] - Apache Tajo to bigtop: packaging as deb/rpm
* [BIGTOP-2180] - Apache Tajo to bigtop: make tests
* [BIGTOP-2224] - Let's bump groovy version for smokes to 2.4.10
* [BIGTOP-2254] - Replace the Docker orchestration tool from Vagrant to Docker Compose
* [BIGTOP-2285] - Add qfs rpm and debian packaging code
* [BIGTOP-2293] - Add puppet recipes for qfs components
* [BIGTOP-2312] - Add environment check
* [BIGTOP-2314] - Added deb and rpm package of Apache Apex to bigtop.
* [BIGTOP-2315] - Add smoke test for apex
* [BIGTOP-2316] - Add apex puppet receipes
* [BIGTOP-2317] - Add smoke tests for QFS
* [BIGTOP-2319] - Build initial smoke-tests distribution
* [BIGTOP-2326] - Build salves need to have the toolchain run again to install qfs dependencies
* [BIGTOP-2345] - Create Flink packaging
* [BIGTOP-2357] - Create puppet recipes
* [BIGTOP-2468] - Add Juju hadoop-processing bundle
* [BIGTOP-2469] - Add cloud-weather-report test plan
* [BIGTOP-2491] - Update provisioner/docker-hadoop.sh to bind with provisioner/utils
* [BIGTOP-2492] - Split flink debian packaging
* [BIGTOP-2505] - Support systemd containers, clean up hiera.yaml handling, fix exec (-e) flag
* [BIGTOP-2518] - Add node to the build slave configuration
* [BIGTOP-2526] - Bump flink version to 1.1.3
* [BIGTOP-2530] - Create Greenplum packages
* [BIGTOP-2531] - Create Greenplum deployment scripts
* [BIGTOP-2532] - Create Greenplum test
* [BIGTOP-2600] - Bump Groovy version to 2.4.10
* [BIGTOP-2601] - Bump Ignite to 1.9
* [BIGTOP-2613] - create bigtop/puppet docker image or fedora 25
* [BIGTOP-2614] - create bigtop/slave docker image for fedora 25
* [BIGTOP-2620] - Bump oozie version to 4.3.0
* [BIGTOP-2624] - Bump Phoenix version to 4.9.0
* [BIGTOP-2625] - update crunch for JAVA 8
* [BIGTOP-2626] - HBase build fails when JAVA 8 is used
* [BIGTOP-2627] - Kite 1.1.0 build fails when JAVA 8 is used
* [BIGTOP-2646] - Move Vagrant Provisioner from bigtop-deploy/vm to provisioner directory
* [BIGTOP-2647] - Clean up code under bigtop-deploy/vm after everything moved to provisioner directory
* [BIGTOP-2657] - Upgrade to Hue 3.11.0
* [BIGTOP-2668] - Polish and update Docker Provisioner configurations
* [BIGTOP-2672] - Update gradle wrapper for Docker Provisioner
* [BIGTOP-2700] - Adding tests to test the doas feature of httpfs
* [BIGTOP-2701] - Update hcfs tests so it can work in both casers where fs.trash.interval is disabled or enabled.
* [BIGTOP-2702] - Fix Sandbox creation script
* [BIGTOP-2704] - Include ODPi runtime tests option into the battery of smoke tests
* [BIGTOP-2705] - provide puppet deployment code for Ambari
** Bug
* [BIGTOP-976] - package deployment tests are CDH specific: _has_ to be removed or fixed
* [BIGTOP-1533] - failed to load/initialize native-bzip2 library system-native
* [BIGTOP-2047] - detect JAVA_HOME for JDK8, remove obsolete detection code (JDK6/oracle JDK)
* [BIGTOP-2133] - Running BPSGenerator using fat-jar fails on Mac OS X
* [BIGTOP-2134] - Wrong package name in bigpetstore-mapreduce/arch.dot
* [BIGTOP-2135] - PigCSVCleaner fails due to the lack of the dependent jar
* [BIGTOP-2136] - A comment about parameter substitution in BPS_analytics.pig is slightly wrong
* [BIGTOP-2138] - deb: make bigtop-jsvc a wrapper package for jsvc package
* [BIGTOP-2220] - flume-agent.init incorrectly handles flume.conf
* [BIGTOP-2225] - Bump toolchain gradle to 2.10
* [BIGTOP-2229] - bigtop deploy to support centos-7
* [BIGTOP-2231] - build.gradle carries one too many sets of repositories
* [BIGTOP-2261] - adding bigtop/puppet:fedora-22 build support for ppc64le
* [BIGTOP-2274] - CLONE - rpm: need to make bigtop-jsvc a wrapper package for jsvc package
* [BIGTOP-2301] - Bigtop Homepage shows wrong url to CI
* [BIGTOP-2302] - Use apt instead of yum in setup-env-debian.sh
* [BIGTOP-2303] - Fix the indentation in docker-hadoop.sh
* [BIGTOP-2308] - Clean up build directory after sucessfull build of package
* [BIGTOP-2318] - Release assembly needs to be updated
* [BIGTOP-2340] - BIGTOP-2319 is incomplete: the code for smoke-tests is missing
* [BIGTOP-2342] - Set yarn.log.server.url to point to JH server
* [BIGTOP-2346] - Do not use gradle delete() for sources and build directories
* [BIGTOP-2347] - Clean up build directory after sucessfull build of package (2nd try)
* [BIGTOP-2350] - HCatalog WebHCat server's default file incorrectly specifies HCAT_PREFIX AND HADOOP_PREFIX
* [BIGTOP-2353] - fix qfs suse build
* [BIGTOP-2354] - qfs does not build on fedora
* [BIGTOP-2358] - Update the URL for Bigtop-trunk-packages job on README
* [BIGTOP-2359] - Add .DS_Store to .gitignore
* [BIGTOP-2362] - Enabling bigtop docker provisioner for ppc64le (ubuntu 15.04)
* [BIGTOP-2366] - Support https:// repositories for DEB systems
* [BIGTOP-2367] - QFS packages do not handle /var/run/qfs properly
* [BIGTOP-2372] - Puppet deploy README points to non-existing repo
* [BIGTOP-2373] - kinit path is not correctly configured in hue.ini template for CentOs by puppet module
* [BIGTOP-2374] - Toolchain needs clear warning for Puppet <3
* [BIGTOP-2376] - Update Tomcat and remove obsolete downloads
* [BIGTOP-2377] - Update to Hadoop 2.7.2
* [BIGTOP-2378] - Do not use archive.apache.org for ant download
* [BIGTOP-2379] - update maven to 3.3.9 and refactor toolchain
* [BIGTOP-2380] - support opensuse-42.1 (leap)
* [BIGTOP-2382] - Parameterise and expose "default_hdfs_superuser" for hue.ini
* [BIGTOP-2399] - Maven artifacts are still on 2.6.0 version of Apache Hadoop
* [BIGTOP-2400] - Get groovy plugins used by Maven in sync with Bigtop groovy runtime
* [BIGTOP-2401] - a commiter name is missing in the "Who we are" page
* [BIGTOP-2402] - yet another commiter name is missing in the "Who we are" page
* [BIGTOP-2404] - puppetize.sh fails on Ubuntu 14.04 because of the lack of apt-get update
* [BIGTOP-2405] - Rollback BIGTOP-2049 as the original issue was fixed in the upstream
* [BIGTOP-2406] - init scripts do not work reliable on systemd systems
* [BIGTOP-2412] - arm dockerfile breaks RAT
* [BIGTOP-2413] - QFS README.md breaks RAT
* [BIGTOP-2419] - Fix symlinks on packaging Crunch rpm and deb
* [BIGTOP-2421] - Ignite RPM is broken: "missing" osgi package deps
* [BIGTOP-2423] - Fix hard-coded port number in Sqoop smokes
* [BIGTOP-2425] - crunch needs JDK8 javadoc
* [BIGTOP-2427] - jsvc build not recognizing ARM as valid platform
* [BIGTOP-2430] - Adding Dockerfile to build puppet image for ubuntu-16.04-ppc64le
* [BIGTOP-2431] - Adding Dockerfile to build slaves image for ubuntu-16.04-ppc64le
* [BIGTOP-2433] - mvn is missing in Bigtop Toolchain
* [BIGTOP-2434] - Change Spark test to unpack jar file and retrieve resources
* [BIGTOP-2439] - flink: fix adduser and register init.d scripts on DEB systemes
* [BIGTOP-2441] - spark smoke test doesn't work relying on yarn-client submittion
* [BIGTOP-2445] - Adding Dockerfile to build deploy image for ubuntu-16.04-ppc64le
* [BIGTOP-2448] - Adding Dockerfile to build puppet image for ubuntu-16.04-arm
* [BIGTOP-2449] - Adding Dockerfile to build slaves image for ubuntu-16.04-x86
* [BIGTOP-2450] - Adding Dockerfile to build slaves image for ubuntu-16.04-arm
* [BIGTOP-2460] - docker-hadoop.sh fails when deploying on ubunt 16.04 images
* [BIGTOP-2463] - Regression: bigtop-jsvc build fails on ppc64le architecture
* [BIGTOP-2464] - Outdated descriptions in vagrant-puppet-vm/README.md
* [BIGTOP-2471] - qfs does not build on opensuse:42.1
* [BIGTOP-2472] - zeppelin puppet module needs to expose ZEPPELIN_WAR_TEMPDIR
* [BIGTOP-2473] - Mahout puppet script fails to find Package[hadoop]
* [BIGTOP-2474] - Improve handling of gradle home
* [BIGTOP-2487] - Alluxio /var/log/alluxio is not created
* [BIGTOP-2488] - Redundant zookeeper/lib directory
* [BIGTOP-2494] - Use systemd within bigtop/deploy docker image for debian-8, centos-7, fix centos-7 provisioner
* [BIGTOP-2495] - hive-hbase package is broken
* [BIGTOP-2509] - Path error in bigtop-packages/src/common/solr/tomcat-deployment.sh
* [BIGTOP-2512] - Wrong help message in docker-hadoop.sh
* [BIGTOP-2513] - Some RAT exclude rules defined in build.gradle are not defined in pom.xml
* [BIGTOP-2523] - Incorrect cycle dependency during puppet deployment causes error at Debian 8
* [BIGTOP-2527] - Recreate all bigtop docker images and install "host" on debian
* [BIGTOP-2528] - provisioner fails to add short host name
* [BIGTOP-2529] - Vagrant Provisioner failed to start up daemons
* [BIGTOP-2533] - Use TLS for downloading sources
* [BIGTOP-2535] - frontend-maven-plugin fails on ppc64le
* [BIGTOP-2536] - tarball.destination is ignored when set
* [BIGTOP-2537] - Hive smoke test identifies as org.apache.bigtop.itest.hadoop.mapreduce
* [BIGTOP-2542] - Some files related to docker provisioner breaks RAT
* [BIGTOP-2543] - Some minor problems on provisioner/docker/docker-hadoop.sh
* [BIGTOP-2545] - Add ZOOKEEPER-2594 to bigtop
* [BIGTOP-2546] - Make debian/ubuntu toolchain install more resistent agains failures
* [BIGTOP-2549] - "Expected" and "actual" values are mistakenly switched in some JUnit method invocation
* [BIGTOP-2551] - docker-hadoop.sh --create fails with "Error: Could not match |$index" message
* [BIGTOP-2553] - namenode ports are not configured for non-HA mode
* [BIGTOP-2556] - Building Hadoop fails because Tomcat 6.0.45 is not downloadable from Apache mirror
* [BIGTOP-2557] - BIGTOP-2536 broke DataFu, QFS and YCSB
* [BIGTOP-2558] - Add ppc64le and arm64 node to the build slave configuration
* [BIGTOP-2559] - Revert JIRA BIGTOP-2535
* [BIGTOP-2560] - Spark charm failing automated tests
* [BIGTOP-2563] - zeppelin build fails on ppc64le
* [BIGTOP-2564] - HBase build fails on Power
* [BIGTOP-2565] - upgrade Spark to version 1.6.2
* [BIGTOP-2566] - Specify KAFKA_VERSION in build command for Flume
* [BIGTOP-2569] - Spark 2.0
* [BIGTOP-2570] - ease hadoop charm debugging
* [BIGTOP-2582] - Adding Spark1 components for Spark 1.x family
* [BIGTOP-2585] - Zookeeper service does not start if kerberos is disabled
* [BIGTOP-2587] - vagrant-puppet-vm fails with "Could not find class node_with_components"
* [BIGTOP-2588] - Spark 2.0.1 installation fails on DEB
* [BIGTOP-2589] - spark1 build break
* [BIGTOP-2590] - Flume build break on RPM
* [BIGTOP-2591] - Fix bug in BIGTOP-2569
* [BIGTOP-2593] - Build fail caused by tomcat 6.0.45 version
* [BIGTOP-2594] - Workaround to fix Hive Build, by using SPARK1 Version
* [BIGTOP-2596] - Phoenix build fails
* [BIGTOP-2597] - crunch build failed
* [BIGTOP-2599] - Zeppelin 0.6.2 build fails on Power
* [BIGTOP-2602] - ignite-hadoop build break
* [BIGTOP-2603] - NN/RM charm should include a spark user/group
* [BIGTOP-2604] - Build flink-dist with proper shading
* [BIGTOP-2605] - Addendum for BIGTOP-2514
* [BIGTOP-2606] - spark1 build fails when RPM is sellected
* [BIGTOP-2608] - upgrade Hadoop to 2.7.3
* [BIGTOP-2609] - upgrade Kafka to version 0.10.0.0
* [BIGTOP-2610] - upgrade mahout to version 0.12.2
* [BIGTOP-2612] - Need bigtop/puppet image for Fedora-25
* [BIGTOP-2618] - bigtop-jsvc build fails with OpenJDK-1.8
* [BIGTOP-2621] - JAVA_HOME is not set on Fedora-25+JAVA-1.8 for x86
* [BIGTOP-2623] - Zeppelin 0.6.2 build fails on all platforms
* [BIGTOP-2628] - sqoop2 build fails when JAVA 8 is used
* [BIGTOP-2632] - bigtop 1.1.0 sqoop2 wrote rpm error
* [BIGTOP-2635] - ubuntu on ppc64le is missing a apt-get update
* [BIGTOP-2636] - Fix giraph after upgrade to Hadoop-2.7.3
* [BIGTOP-2637] - Fix flume because of kafka 0.10 update
* [BIGTOP-2638] - Update to kafka 0.10.1.0
* [BIGTOP-2640] - Incomplete patch BIGTOP-2635 - Bigtop stack build fails on Ubuntu 16.04-ppc64le
* [BIGTOP-2643] - Force giraph to compile by removing findbugs from all pom.xml
* [BIGTOP-2644] - CI compiles random greenplum source
* [BIGTOP-2648] - Gradle 2.7 SSL Problems
* [BIGTOP-2649] - Default Java8 blocks default debian jdk
* [BIGTOP-2650] - Docker build should pull up to date packages
* [BIGTOP-2651] - Delete obsolete docker images and build files.
* [BIGTOP-2652] - tajo rpm packaging seriously broken
* [BIGTOP-2653] - upgrading to Spark 2.1
* [BIGTOP-2654] - spark 2.1 binaries need either SPARK_HOME or non existing find-spark-home exe
* [BIGTOP-2655] - Help spark find the native hadoop libs
* [BIGTOP-2656] - regression - spark 2.1 upgrade breaks rpm packaging
* [BIGTOP-2661] - Docker deploy images should pull upstream images
* [BIGTOP-2662] - provisioner: Add support for JDK8 on debian
* [BIGTOP-2663] - puppet hadoop module: Consolidate memory resource settings
* [BIGTOP-2664] - create provisioner test for trunk packages with jdk8
* [BIGTOP-2665] - Fix hue for opensuse
* [BIGTOP-2669] - Create bigtop-1.2 repository
* [BIGTOP-2673] - Need to back port HADOOP-11628 for JDK8
* [BIGTOP-2674] - docker-hadoop option -C does not work correctly any more
* [BIGTOP-2675] - [Puppet] Kafka can only be deployed on master node
* [BIGTOP-2676] - Smoke test fails on Spark 2
* [BIGTOP-2678] - Add hive-hbase role to install hive-hbase rpm
* [BIGTOP-2689] - Upgrade Zeppelin to version 0.7
* [BIGTOP-2690] - gradlew toolchain fails trying to download Ant 1.9.8
* [BIGTOP-2692] - Flume init script should load only '.conf' extension files
* [BIGTOP-2693] - Update readme for build and configuring git repo for packages
* [BIGTOP-2695] - arch.dot for bigpetstore-spark is outdated
* [BIGTOP-2699] - Zeppeling CI build is broken
* [BIGTOP-2707] - localhost is missing in docker provisioner instances
* [BIGTOP-2708] - puppet code always installs hdfs by default
* [BIGTOP-2710] - qfs debian build is breaking because it is confused about Maven home
* [BIGTOP-2711] - fix rat problems
* [BIGTOP-2715] - Tiny typo in the README.md
* [BIGTOP-2718] - Mark tez package as arch dependent
* [BIGTOP-2719] - Mark zeppelin package as arch dependent
* [BIGTOP-2721] - libsnappy reference path is not correct for hadoop/ubuntu16 build
* [BIGTOP-2724] - putting a final nail in Java's 7 coffin
* [BIGTOP-2725] - a few usability improvements to run_itest.sh
* [BIGTOP-2726] - Bump ambari version to 2.5
* [BIGTOP-2727] - fix deployment tasks
** Improvement
* [BIGTOP-1608] - Create Unified testing solution: Smoke-Tests and Test-Artifacts
* [BIGTOP-1843] - Upgrade Sqoop to 1.4.6
* [BIGTOP-2077] - Bump HBase version to 1.1
* [BIGTOP-2118] - Update HBase to 0.98.17
* [BIGTOP-2306] - Add support for specifying git repository access credentials
* [BIGTOP-2309] - Update submodules after git clone
* [BIGTOP-2327] - Bump up Phoenix to 4.7.0
* [BIGTOP-2330] - Bump Tachyon version to 0.8.2
* [BIGTOP-2332] - Upgrade Tajo version to 0.11.1
* [BIGTOP-2333] - Make Apache Pig work with HBase 1.1 on Hadoop 2
* [BIGTOP-2337] - Fix script to make deb in Tajo
* [BIGTOP-2351] - Vagrant VM is missing /user/vagrant HDFS directory
* [BIGTOP-2352] - Packaged Vagrant box has incorrect host info on restart
* [BIGTOP-2370] - Upgrade DataFu version to 1.3.0
* [BIGTOP-2381] - Making Zookeeper hosts templatize in puppet module of hue
* [BIGTOP-2384] - Refactor toolchain code to extract packages version out of every action
* [BIGTOP-2385] - Reformat bigtop_toolchain/manifests/packages.pp to ease maintenance
* [BIGTOP-2393] - Add ARM64 support for build environment
* [BIGTOP-2395] - Create separate page to point "Download now" link to
* [BIGTOP-2403] - Remove affiliation column in the team list
* [BIGTOP-2407] - Making "force_username_lowercase" variable templatize in puppet module of hue
* [BIGTOP-2408] - group_filter variable value is not templatize in puppet module of hue
* [BIGTOP-2409] - nt_domain configuration option for hue to connect to Active Directory
* [BIGTOP-2410] - Making "ldap_username_pattern" variable templatize in puppet module of hue
* [BIGTOP-2411] - Add OS-neutral wrappers to build all native packages and repositories
* [BIGTOP-2416] - Upgrade Crunch to 0.13.0
* [BIGTOP-2429] - Add Solr to gradle smokes
* [BIGTOP-2443] - inject unzip method to ZipInputStream, accepting regex for include
* [BIGTOP-2455] - support pre-installed java environment
* [BIGTOP-2458] - Add option to disable IP hostname checking for DataNode registration
* [BIGTOP-2459] - Add option to disable vmem check for NodeManager
* [BIGTOP-2466] - HBase puppet scripts co-deploy ZK and Datanode along with HBase
* [BIGTOP-2478] - Zookeeper does not have any smoke tests
* [BIGTOP-2479] - Update qfs maintainer to kstinson
* [BIGTOP-2490] - Spark in HA when Zookeeper is available
* [BIGTOP-2504] - Kafka should be able to bind to something other than 0.0.0.0/the default interface
* [BIGTOP-2506] - Zookeeper: non default interface for client
* [BIGTOP-2507] - Make buildstamp configurable by a bom file
* [BIGTOP-2516] - Add Zeppelin Charm
* [BIGTOP-2521] - Problem with deprecated methods in puppet code with puppet option parser=future
* [BIGTOP-2522] - Add spark processing juju bundle
* [BIGTOP-2547] - Don't render ip-hostname-check in hdfs-site.xml if default
* [BIGTOP-2548] - Refresh charms for Juju 2.0 and Xenial
* [BIGTOP-2554] - expose bind-host options in hieradata
* [BIGTOP-2555] - hadoop charms should use bind-host overrides
* [BIGTOP-2561] - add juju bundle for hadoop-spark
* [BIGTOP-2571] - cwr driven updates to the zeppelin juju charm
* [BIGTOP-2575] - zk charm test updates
* [BIGTOP-2576] - For small clusters it is useful to turn replace-datanode-on-failure off
* [BIGTOP-2577] - kafka charm test updates
* [BIGTOP-2578] - Puppet needs to be updated for Hive Server2
* [BIGTOP-2579] - Puppet needs to be updated for Hive Metastore service
* [BIGTOP-2611] - Adding Fedora-25 with Java 1.8 support
* [BIGTOP-2616] - refresh juju hadoop-processing bundle
* [BIGTOP-2617] - refresh juju spark-processing bundle
* [BIGTOP-2682] - update juju bundles with recent charm revs
* [BIGTOP-2688] - Add flag for provisioning of Yum Repo
* [BIGTOP-2694] - Added Hernan Vivani (hvivani) as elasticsearch maintainer
* [BIGTOP-2696] - Build out VM for sandboxes
* [BIGTOP-2697] - Back port HADOOP-12366 into Bigtop
* [BIGTOP-2712] - Juju CI driven updates
* [BIGTOP-2714] - Update Groovy in the toolchain to 2.4.10
** New Feature
* [BIGTOP-1641] - Add packaging for Apache Tajo
* [BIGTOP-2282] - Define Bigtop 1.2 release BOM
* [BIGTOP-2296] - Provide a way to build Docker container with functional stack
* [BIGTOP-2339] - add centos-7 to the provisioiner matrix
* [BIGTOP-2435] - Add Juju charms for hadoop component
* [BIGTOP-2451] - Adding Ubuntu 16.04 support to Bigtop
* [BIGTOP-2452] - Adding Dockerfile to build deploy image for ubuntu-16.04-x86
* [BIGTOP-2476] - Add Zookeeper Charm
* [BIGTOP-2477] - Add Juju charm for spark component
* [BIGTOP-2481] - Add HBase Charm
* [BIGTOP-2482] - Adding Pig charm
* [BIGTOP-2483] - Add Mahout Charm
* [BIGTOP-2486] - Add Kafka Charm
* [BIGTOP-2524] - Add Greenplum component
* [BIGTOP-2615] - Provide a tool to build pseudo cluster docker images
* [BIGTOP-2660] - Add Giraph Charm
** Task
* [BIGTOP-2289] - Set master version to 1.2.0-SNAPSHOT
* [BIGTOP-2334] - Update latest release link on the website
* [BIGTOP-2335] - ci link should use https:// authority
* [BIGTOP-2368] - OpenStack config bigtop repo-url changes.
* [BIGTOP-2371] - Add Oozie to gradle smoke tests
* [BIGTOP-2414] - Rename Tachyon to Alluxio
* [BIGTOP-2415] - readme spelling error
* [BIGTOP-2456] - Update Apache Apex version to 3.4.0
* [BIGTOP-2497] - Upgrade Apache Phoenix to 4.8.1
* [BIGTOP-2500] - Remove hadoop jars from TEZ_HOME/lib and create appropriate symlinks
* [BIGTOP-2525] - committer test: add myself to team-list.xml
* [BIGTOP-2538] - Bump version of Solr to 4.10.4
* [BIGTOP-2550] - Update juju hadoop bundle for Juju 2.0 and Xenial
* [BIGTOP-2567] - Upgrade Flume version to 1.7.0
* [BIGTOP-2568] - Upgrade Kafka version to 0.9.0.1
* [BIGTOP-2592] - Upgrade to Spark 2.0.2
* [BIGTOP-2622] - Add Kengo Seki to team list
* [BIGTOP-2629] - Add Jonathan Kelly to team list
* [BIGTOP-2670] - Bump up Apache Apex version to 3.5.0
* [BIGTOP-2687] - Remove /usr/share/java/*.jar from Sqoop2 catalina.properties
* [BIGTOP-2703] - refresh juju charms/bundles with metric and CI support
* [BIGTOP-2722] - Remove workaround allowing build by root in Tez
** Test
* [BIGTOP-2534] - Flume tests fail with java.lang.NoClassDefFoundError: org/apache/commons/io/Charsets
** Wish
* [BIGTOP-2680] - Update kafka to 0.10.1.1
* Release 1.1.0 (2016-01-30)
Release Notes - Bigtop - Version 1.1.0
** Sub-task
* [BIGTOP-1494] - Introduce Groovy DSL to replace bigtop.mk
* [BIGTOP-1499] - released source code is not same with source code in branch
* [BIGTOP-1898] - Dockerfiles to build bigtop/puppet docker images for 1.0 release
* [BIGTOP-1899] - Migrate CI master to EC2 instance donated by Amazon EMR team
* [BIGTOP-1901] - Provide bigtop/deploy images on dockerhub for CI and users to consume docker provisioner
* [BIGTOP-1947] - Fix RAT plugin configuration to be able to RAT-validate all published artifacts
* [BIGTOP-1959] - Avoid running top-level assembly while doing deploy for subprojects
* [BIGTOP-1965] - Remove the link to 0.8.0 from the website
* [BIGTOP-1973] - Add new tests for HDFS Balancer functionality
* [BIGTOP-1975] - Smoke tests for Spark SQL
* [BIGTOP-1981] - Add new tests for test, text, count commands
* [BIGTOP-1983] - Move BigPetStore data generator to bigtop-data-generators
* [BIGTOP-1984] - Extract samplers library from BigPetStore data generator
* [BIGTOP-1985] - Extract name generator from BigPetStore data generator
* [BIGTOP-1986] - Extract location dataset from BigPetStore data generator
* [BIGTOP-1990] - Add gradle multi-project build files for bigtop-data-generators
* [BIGTOP-1991] - Add BigTop Weatherman
* [BIGTOP-1992] - Fix RAT check errors resulting from BPS data generator move
* [BIGTOP-1995] - Update BigPetStore to use external locations data
* [BIGTOP-2000] - Add BigTop Data Generators to maintainers file
* [BIGTOP-2009] - Add new tests for chgrp, cp, ls, mv, du, put, get, mkdir, stat and touchz
* [BIGTOP-2025] - Make BOM to be a directional graph
* [BIGTOP-2033] - Build order of the stack is broken
* [BIGTOP-2051] - Get rid of hair-brain environment vars left after make-based build
* [BIGTOP-2055] - Refactor packages.gradle to get rid of excessive data containers; make code cleaner
* [BIGTOP-2087] - The 1.0 release package artifacts on Bigtop jenkins is broken due to CI transition
* [BIGTOP-2096] - ignite-hadoop service should restart upon changes in the package or configs
* [BIGTOP-2097] - cleaning up the ignite-service
* [BIGTOP-2104] - Packages upgrade to Spark 1.5.1
* [BIGTOP-2105] - Puppet recipes improvements after Spark is bumped to 1.5.1
* [BIGTOP-2107] - Ignite package still shows website at the incubator
* [BIGTOP-2113] - Spark master doesn't bind to the host: ignores SPARK_MASTER_IP
* [BIGTOP-2122] - Add zeppelin packages
* [BIGTOP-2123] - Add zeppelin Puppet recipes
* [BIGTOP-2149] - Zeppeling 0.5.5 has been officially released. Change the source ref
* [BIGTOP-2154] - spark-shell doesn't start anymore without Hive libs in the classpath
* [BIGTOP-2166] - Zeppelin shouldn't be build against constant version of Ignite
* [BIGTOP-2167] - Zeppelin interpreter list doesn't include Ignite
* [BIGTOP-2169] - Zeppeling has more upstream dependencies
* [BIGTOP-2174] - Bump up ignite-hadoop version to the latest 1.5.0-b1
* [BIGTOP-2185] - Exclude Zeppelin interpreter.json from RAT check
* [BIGTOP-2219] - Comb the smoke-tests to make code base easier for refactoring
* [BIGTOP-2226] - Remove gradle wrapper folder in smoke-tests
* [BIGTOP-2234] - TestBlockRecovery incorrectly fails on a single node cluster
* [BIGTOP-2235] - Allow smoke-tests to use filename regexps instead of explicite listings
* [BIGTOP-2245] - TestFuseHCFS might fall on '+' op. involving String and GString; class name is wrong
* [BIGTOP-2267] - Zeppeling 0.5.6 is out; let's bump it in our stack
* [BIGTOP-2271] - Update maven rat config to match one from gradle
* [BIGTOP-2277] - release assembly needs to include bigtop_toolchain
* [BIGTOP-2278] - Wrap separate maven release steps into convenient gradle task
** Bug
* [BIGTOP-1022] - Giraph build script should also specify ZooKeeper, HBase, and Hive versions
* [BIGTOP-1318] - Consider not forking compute-classpath.sh for spark
* [BIGTOP-1344] - spec files assume RPMs being built on Red Hat
* [BIGTOP-1352] - Refactor puppet code for installing JDK7
* [BIGTOP-1658] - puppet recipe updates for latest spark (1.3+ )
* [BIGTOP-1690] - Puppet should automatically create data directories
* [BIGTOP-1789] - Spark 1.3.0 incompatible with Hive 1.1.0
* [BIGTOP-1805] - Upgrade Hadoop to 2.7 if released
* [BIGTOP-1838] - Pig build does not publish artifacts of build
* [BIGTOP-1877] - Upgrade Crunch to 0.12.0
* [BIGTOP-1886] - Kafka server can not create a log-cleaner.log file
* [BIGTOP-1892] - Current required version of gradle 2.4 is not used everywhere
* [BIGTOP-1893] - Compilation of hadoop-yarn-client failed
* [BIGTOP-1894] - Snappy development packages are missing from bigtop_toolchain
* [BIGTOP-1896] - bigtop_toolchain broken bei ant update
* [BIGTOP-1902] - typo in bigtop-deploy/vm/vagrant-puppet-vm/vagrantconfig.yaml
* [BIGTOP-1905] - Update Hue build for the upcoming 3.9 release
* [BIGTOP-1909] - Include compiled .mo files for HUE i18n
* [BIGTOP-1913] - Update hive to 1.2.1
* [BIGTOP-1916] - Update Website for 1.0
* [BIGTOP-1917] - Simplify gradle creating apt/yum repositories for better CI
* [BIGTOP-1936] - Provide JDK8 for Bigtop
* [BIGTOP-1937] - redhat-lsb is required by kafka daemon
* [BIGTOP-1938] - kafka packages /usr/bin on RPM
* [BIGTOP-1940] - Consider removing tests expecting 'sudo' from skip-list
* [BIGTOP-1946] - Missing ASL header in some of iTest files
* [BIGTOP-1948] - Need to upgrade groovy-eclipse-batch as it keeps pulling from non-existing repo
* [BIGTOP-1949] - Sqoop 1.4.5 artifacts aren't getting resolved in the release...
* [BIGTOP-1950] - Upgrade maven-assembly plugin: StackOverFlowException is thrown
* [BIGTOP-1951] - Fix licenses in the source files
* [BIGTOP-1954] - Change the component name in the MAINTAINERS.txt
* [BIGTOP-1956] - Multi RS HBase requires unique hbase.tmp.dir to be set for each RS on a node
* [BIGTOP-1958] - Upgrade default repositories and docker images to 1.0
* [BIGTOP-1960] - The smoke-test wrapper in bigtop-deploy can only be used in redhat series of Linux
* [BIGTOP-1963] - Upgrade Mahout to 0.11.0
* [BIGTOP-1966] - site's index.xml is malformatted
* [BIGTOP-1967] - Update the front-page of the website with new CI hostname
* [BIGTOP-1987] - Recover resources/kmeans_data.txt for Spark smokes
* [BIGTOP-1996] - Dockerfiles for bigtop-slaves
* [BIGTOP-1999] - website link to the release bits is broken and points to the top-level mirror's directory
* [BIGTOP-2003] - Bigtop puppet fails to deploy on Ubuntu due to a hiera 1.3.0 bug
* [BIGTOP-2004] - Download task fails with Gradle 2.6
* [BIGTOP-2007] - bigtop.mk version of the stack needs to be bumped to 1.1.0-SNAPSHOT
* [BIGTOP-2008] - build.gradle has out-of-date version
* [BIGTOP-2014] - [VM provisioner] Missing FQDN on Ubuntu causes puppet deployment malfunction
* [BIGTOP-2016] - tez does not build on opensuse
* [BIGTOP-2017] - Rebase bigtop-slaves on bigtop-puppet
* [BIGTOP-2019] - BigPetStore Spark isn't compiling due to changes in SQL API
* [BIGTOP-2026] - Phoenix build defines HBASE_VERSION in two different places.
* [BIGTOP-2027] - Bump gradle version, the wrapper to 2.7
* [BIGTOP-2028] - Enhance puppet config of zookeeper to support kerberized clients
* [BIGTOP-2032] - Tez install does not set up tez jars on hdfs causing Pig to fail
* [BIGTOP-2037] - BIGTOP-1746 Added Files Without Apache License Headers
* [BIGTOP-2038] - Pig destination name incorrect
* [BIGTOP-2039] - Solr download URL is incorrect
* [BIGTOP-2040] - Mahout can not be build with Maven 3.0.5 - build containers need to be upgraded
* [BIGTOP-2041] - Spark pkg name is incorrect
* [BIGTOP-2042] - Tachyon name is incorrect
* [BIGTOP-2043] - Kafka source incorrect
* [BIGTOP-2044] - Unnecessary printout has been introduced by BIGTOP-1494
* [BIGTOP-2046] - puppet module search path
* [BIGTOP-2050] - Description of clean tasks have null entries
* [BIGTOP-2052] - Remove obsolete environment variables
* [BIGTOP-2053] - After rebasing on Hadoop 2.7.1 yarn module should be returned to ignite-hadoop build
* [BIGTOP-2054] - Update Pig
* [BIGTOP-2056] - Remove top-level check-env.sh
* [BIGTOP-2057] - null check doesn't safeguard against non-existing values in the BOM config
* [BIGTOP-2059] - Bump Ignite to 1.4
* [BIGTOP-2061] - toolchain is failing because add-apt-repository command isn't available off-hand
* [BIGTOP-2062] - cluster.yaml declares undefined vars; apply is broken
* [BIGTOP-2066] - init-hdfs.sh is broken by recent hadoop update
* [BIGTOP-2068] - Cannot Build Bigtop-Utils packages
* [BIGTOP-2071] - Gstring.empty doesn't exist
* [BIGTOP-2074] - spark-worker doesn't start during deploy from master
* [BIGTOP-2082] - Remove x86 Assembler Code from zookeeper
* [BIGTOP-2083] - smoke-tests are still on hadoop 2.6.0
* [BIGTOP-2084] - rename all puppet modules to have an underscore rather a dash
* [BIGTOP-2085] - gradle toolchain should install necessary puppet modules
* [BIGTOP-2086] - Install essential puppet modules along with puppet itself
* [BIGTOP-2088] - Support protobuf installation for OPENPOWER
* [BIGTOP-2089] - Fix bigtop.sh generation
* [BIGTOP-2090] - Remove left-over junk after BIGTOP-2053
* [BIGTOP-2094] - ignite-hadoop fails to deploy after BIGTOP-2084
* [BIGTOP-2098] - Update bigtop_deploy to current state of puppetize.sh
* [BIGTOP-2114] - hive is broken after BIGTOP-2104
* [BIGTOP-2115] - phoenix is broken after BIGTOP-2104
* [BIGTOP-2120] - opensuse: Hue packages are broken after BIGTOP-1905
* [BIGTOP-2121] - Missing ':' in bigtop::roles description
* [BIGTOP-2126] - Fix default repo locations in the deployment site.pp
* [BIGTOP-2127] - opensuse: fix kerberos python module
* [BIGTOP-2128] - ignite-hadoop man page still refers to the Incubator
* [BIGTOP-2131] - [Docker] bigtop slaves images should be built without cache
* [BIGTOP-2139] - crunch compile fails with Insufficient memory on POWER
* [BIGTOP-2140] - hbase compile fails with Insufficient memory on POWER
* [BIGTOP-2144] - Update default repos in Bigtop Provisioner
* [BIGTOP-2147] - Minor nits in bigpetstore-spark/README.md
* [BIGTOP-2148] - generator.SparkDriver outputs empty data in cluster mode
* [BIGTOP-2150] - Reversing directional build behavior
* [BIGTOP-2152] - Fix conflict with libressl-devel from mysql-devel
* [BIGTOP-2155] - Fix Hue 3.9.0 build failed on Fedora
* [BIGTOP-2156] - Fix Sqoop 1.4.5 build failed on OpenSuSE
* [BIGTOP-2159] - unable to build RPM for zeppelin
* [BIGTOP-2162] - phoenix-core-*-tests.jar should be located at $PHOENIX_HOME
* [BIGTOP-2168] - A erroneous typo in FailureVars#loadProps method
* [BIGTOP-2171] - shared gradle directory on slave containers should be writable for non-root users
* [BIGTOP-2172] - get rid of gradlew inside of subprojects
* [BIGTOP-2173] - smoke-tests need to pass-through system properties
* [BIGTOP-2175] - BIGTOP_HOME should be either asserter or replaced with setup logic
* [BIGTOP-2176] - Package version of ignite-hadoop has illegal "-" character
* [BIGTOP-2177] - Build dependecies list has wrong component name for ignite
* [BIGTOP-2181] - Setting Ignite version to use '.' broke Zeppelin build.
* [BIGTOP-2187] - toolchain creates user with different ids on different systems
* [BIGTOP-2188] - bigtop/puppet:ubuntu-14.04 image does not support ppc64le
* [BIGTOP-2189] - bigtop/slave:ubuntu-14.04 image does not support ppc64le
* [BIGTOP-2190] - libprotobuf8 2.5.0 installation fails on ubuntu 14.04 for ppc64le
* [BIGTOP-2191] - openjdk-7 is missing in bigtop/slave:ubuntu-14.04-ppc64le docker image
* [BIGTOP-2196] - Docker configuration for ubuntu-15.04-ppc64le
* [BIGTOP-2198] - adding bigtop/slaves:ubuntu-15.04 support for ppc64le
* [BIGTOP-2199] - Add change introduced by BIGTOP-2171
* [BIGTOP-2200] - Fix download path for protobuf ubuntu-15.04 on ppc64le
* [BIGTOP-2201] - Fix BIGTOP-2200 again
* [BIGTOP-2215] - Enable autopurge in zookeeper
* [BIGTOP-2221] - rpmbuild is missing in bigtop/slaves:trunk-opensuse-13.2 docker image
* [BIGTOP-2222] - Hadoop do-component-build should pull in and use BOM
* [BIGTOP-2223] - .dockerignore doesn't have ASL header
* [BIGTOP-2236] - GRADLE_USER_HOME should be set for bigtop/slaves images only
* [BIGTOP-2237] - Nullify the standard output when generating gradle cache
* [BIGTOP-2238] - Provisioner should propagate hdfs ssh keys for testing
* [BIGTOP-2240] - add -XX:PermSize=1024m -XX:MaxPermSize=1024m to build environment
* [BIGTOP-2242] - Running ./gradlew should only require JAVA_HOME for test task
* [BIGTOP-2243] - :itest-common:test is broken without JAVA_HOME being set
* [BIGTOP-2244] - CI provisioner tests are failing after BIGTOP-2227 change
* [BIGTOP-2246] - Add smoke tests for HCFS
* [BIGTOP-2247] - Expand HDFS smoke test suite
* [BIGTOP-2252] - provisional hdfs ssh keys couldn't be found during deployment
* [BIGTOP-2255] - bigtop/deploy:ubuntu-15.04 image does not support ppc64le
* [BIGTOP-2256] - Promote return codes from docker to the CI while building images
* [BIGTOP-2272] - moved hdfs ssh key are failing rat check
* [BIGTOP-2275] - Update configuration files for jsvc
* [BIGTOP-2276] - Zeppeling added war_tempdir location, which needs to be set
* [BIGTOP-2281] - Add HIVE-12875 to Bigtop
* [BIGTOP-2288] - Hadoop time-server fails to start
* [BIGTOP-2299] - test resources are breaking rat
** Improvement
* [BIGTOP-1126] - Add Hama to Bigtop
* [BIGTOP-1131] - Update Build Requirements on our web pages
* [BIGTOP-1309] - Gradle environment overhaul
* [BIGTOP-1443] - Update front page of website
* [BIGTOP-1809] - Remove gridgain-hadoop component once ignite-hadoop gets added
* [BIGTOP-1888] - Upgrade Flume to 1.6.0
* [BIGTOP-1908] - Move bigtop-deploy's dockerfiles into a centralized docker place
* [BIGTOP-1910] - Adjust the dependency for hue-beeswax
* [BIGTOP-1914] - improve puppet README.md file
* [BIGTOP-1915] - Upgrade Oozie to 4.2.0
* [BIGTOP-1920] - Include YCSB in Bigtop
* [BIGTOP-1921] - Puppet recipe for YCSB
* [BIGTOP-1923] - Bump Ignite to 1.2 with major fixes
* [BIGTOP-1941] - Upgrade Phoenix to 4.4.0
* [BIGTOP-1942] - Upgrade Phoenix to 4.6.0
* [BIGTOP-1943] - Upgrade SCALA version to 2.10.4
* [BIGTOP-1944] - Upgrade Spark version to 1.5.1
* [BIGTOP-1955] - Upgrade Ignite Hadoop component version from 1.2.0 to 1.3.0
* [BIGTOP-1964] - Upgrade Tez version to 0.6.2
* [BIGTOP-1970] - Ignite IGFS now fully supports mutiltenancy: deployment should configure it with HDFS backing
* [BIGTOP-1971] - Support Spark SQL CLI with Apache Hive out of the box
* [BIGTOP-1974] - Revise SPARK_HOME/conf/spark-env.sh
* [BIGTOP-1993] - Bump groovy to 2.4.4 in the development toolchain
* [BIGTOP-1997] - Bump bigtop-groovy runtime to 2.4.4
* [BIGTOP-1998] - Toolchain installer needs to switch from CGI to Lua mirror selection
* [BIGTOP-2005] - Remove SCALA_HOME requirement
* [BIGTOP-2018] - Create a puppetizing script
* [BIGTOP-2020] - Add Gradle RAT plugin to the top-level project
* [BIGTOP-2063] - Provide default config to deploy hive on top of Ignite
* [BIGTOP-2065] - Update deployment README.md to reflect on better deployment experience
* [BIGTOP-2080] - Investigate removing Scala from the toolchain
* [BIGTOP-2081] - implement a nexus docker container for CI
* [BIGTOP-2091] - Build ignite-hadoop assembly with specific version of Spark
* [BIGTOP-2102] - Upgrade YCSB to 0.4.0
* [BIGTOP-2103] - [Docker] Move bigtop/slaves image build to gradle
* [BIGTOP-2110] - [Docker] Cache packages required by gradle to execute into bigtop/slaves images
* [BIGTOP-2119] - Bump Mahout version to 0.11.1
* [BIGTOP-2141] - Have a way to specify alternative BOM file in the build time
* [BIGTOP-2142] - Source cleanup: bigtop-repos shouldn't be top-level.
* [BIGTOP-2143] - [Puppet] Automatically generate default repo
* [BIGTOP-2153] - Simplify and complete storage dir creation
* [BIGTOP-2163] - Add a phoenix-pherf sub-package for Phoenix
* [BIGTOP-2164] - Phoenix Queryserver should write it's logs into /var/log/phoenix/
* [BIGTOP-2192] - Start generating ubuntu-14.04 deployment image
* [BIGTOP-2194] - Add Ubuntu configuration to the docker provisioner
* [BIGTOP-2239] - Smoke tests should have a single location for logger configuration
* [BIGTOP-2259] - Check for smoke-test projects should be generalized
** New Feature
* [BIGTOP-1149] - Package Kite
* [BIGTOP-1746] - Introduce the concept of roles in bigtop cluster deployment
* [BIGTOP-1769] - Zeppelin Integration
* [BIGTOP-1976] - Replace Pair type with Apache Commons Lang Pair type
** Task
* [BIGTOP-1701] - Upgrade to Hive 1.1.0
* [BIGTOP-1795] - Upgrade bigtop_toolchain to Maven 3.2.5
* [BIGTOP-1821] - Add smoke tests for Ignite Hadoop Bigtop module
* [BIGTOP-1897] - Umbrella JIRA for CI overhaul
* [BIGTOP-1925] - Add ywkim as a maintainer for YCSB
* [BIGTOP-1953] - Upgrade bigtop_toolchain to Maven 3.3.3
* [BIGTOP-2069] - Update README.md to reflect CTR trial
* [BIGTOP-2078] - Define Bigtop 1.1 release BOM
* [BIGTOP-2146] - Upgrade bigtop toolchain ant version to 1.9.6
* [BIGTOP-2214] - Bump up ignite-hadoop version to the latest stable 1.5.0.final
* [BIGTOP-2297] - Update provisioner pointers to (future) 1.1 release repos
** Test
* [BIGTOP-2158] - Update README.md to reflect the acceptance of CTR model
* [BIGTOP-2232] - Add smoke tests for HDFS
* [BIGTOP-2249] - Add YARN smoke tests
* Release 1.0.0 (2015-05-29)
Release Notes - Bigtop - Version 1.0.0
** Sub-task
* [BIGTOP-1105] - Fix lintian errors in the hadoop package
* [BIGTOP-1334] - Add DFS tests to TestCLI
* [BIGTOP-1392] - Hive basic smoke test fails
* [BIGTOP-1461] - Add a simple Hive validation to smoke-tests.
* [BIGTOP-1465] - Include Sqoop1 in bigtop 0.9
* [BIGTOP-1468] - Include zookeeper 3.4.6
* [BIGTOP-1486] - Upgrade Hue to 3.7
* [BIGTOP-1535] - Add Spark ETL script to BigPetStore
* [BIGTOP-1537] - [BigPetStore] Add Spark Product Recommender example
* [BIGTOP-1543] - hive-0.14 in bigtop
* [BIGTOP-1550] - Spark update to 1.1.0
* [BIGTOP-1563] - Puppet deployment needs to setup user hdfs keys for password-less logins
* [BIGTOP-1571] - Remove Whirr from the BOM
* [BIGTOP-1594] - Upgrade Pig to 0.14.0
* [BIGTOP-1609] - Use openjdk7 for CentOS
* [BIGTOP-1615] - Tests dependencies are on old Hadoop versions (2.3.0, 2.4.1)
* [BIGTOP-1632] - Support JMX monitoring when multiple HBase RS is brought up in a node
* [BIGTOP-1649] - Upgrade Apache Flume to 1.5.2
* [BIGTOP-1707] - Upgrade Hadoop to 2.6.0
* [BIGTOP-1727] - Fix a build failure for Spark 1.2.1
* [BIGTOP-1728] - jackson dependency management for Spark 1.2.1 and Hadoop 2.6.0
* [BIGTOP-1738] - Update HBase because javadoc broken
* [BIGTOP-1765] - Bump the stack version to 1.0
* [BIGTOP-1768] - Use openjdk in ubuntu14, Remove references to jdk6
* [BIGTOP-1842] - Remove gridgain-hadoop from BOM
* [BIGTOP-1899] - Migrate CI master to EC2 instance donated by Amazon EMR team
* [BIGTOP-1900] - Upgrade bigtop/slaves images on bigtop's dockerhub
* [BIGTOP-1901] - Provide bigtop/deploy images on dockerhub for CI and users to consume docker provisioner
* [BIGTOP-1947] - Fix RAT plugin configuration to be able to RAT-validate all published artifacts
** Bug
* [BIGTOP-894] - Pig compilation fails on RPM systems on Bigtop trunk
* [BIGTOP-965] - IntegrationTestHiveSmokeBulk not being run
* [BIGTOP-972] - fix packagetest package remove logic
* [BIGTOP-977] - hive smoke tests are full of internal infrastructure details irrelevant to Bigtop
* [BIGTOP-1050] - Permissions on YARN LCE should be 4754
* [BIGTOP-1104] - Fix lintian errors
* [BIGTOP-1121] - implement tests for HDFS snapshots
* [BIGTOP-1135] - Hue has google analytics enabled by default
* [BIGTOP-1194] - redhat-lsb-core is sufficient in spec files
* [BIGTOP-1277] - Remove Windows files from unix packaging
* [BIGTOP-1287] - Mahout smokes : Remove dirchlet/meanshift clustering
* [BIGTOP-1327] - bigpetstore.arch is out of date
* [BIGTOP-1356] - Generate hive.install on the fly
* [BIGTOP-1357] - Get rid of HCatalog packaging code
* [BIGTOP-1381] - Datafu and Spark .deb build is broken
* [BIGTOP-1384] - Implement Gradle Wrapper for smoke tests and cleanup.
* [BIGTOP-1395] - Simplifying non-component versions evaluation
* [BIGTOP-1445] - Pig fails with clean .ivy and .m2
* [BIGTOP-1446] - Spark fails with clean .m2
* [BIGTOP-1451] - smoke-tests (gradle based) Mahout need to run a real smoke test.
* [BIGTOP-1457] - Hue do-component-build does not set version properly
* [BIGTOP-1458] - Maven build severly broken
* [BIGTOP-1459] - Remove hadoop-client jar from packages that bundle it
* [BIGTOP-1460] - maven dependencies broken
* [BIGTOP-1462] - Failed to build spark by gradle
* [BIGTOP-1467] - version of hadoop-auth in oozie is wrong
* [BIGTOP-1472] - Hadoop RPM build is broken after BIGTOP-1462
* [BIGTOP-1487] - Documentation for use case and deployment models for failure tests.
* [BIGTOP-1488] - bigtop_toolchain hardcode the apache mirror sites for downloading maven
* [BIGTOP-1490] - Adding GridGain to BigTop
* [BIGTOP-1491] - Update docker-puppet README
* [BIGTOP-1497] - Add tachyon to bigtop
* [BIGTOP-1502] - Improve puppet deployment for new gridgain component
* [BIGTOP-1504] - Bigtop docker provision does not work on mac
* [BIGTOP-1506] - bigtop-utils won't detect JAVA_HOME in some cases
* [BIGTOP-1508] - fix Puppet warnings under Puppet 3
* [BIGTOP-1509] - Update deployment README after BIGTOP-1047
* [BIGTOP-1511] - TestCLI: make TestCLI compatible with Hadoop 2.4 (HADOOP-8691)
* [BIGTOP-1513] - FailureExecutor.groovy is in the wrong module, causing compiler errors.
* [BIGTOP-1521] - Bigtop smoke-tests hierarchy and fast failure
* [BIGTOP-1522] - nodemanager deployment needs to include hadoop-mapreduce package
* [BIGTOP-1523] - Gradle install for test artifacts uses wrong sequence of the targets
* [BIGTOP-1524] - FailureExecutor breaks smoke tests : Smoke tests should run from source
* [BIGTOP-1526] - property file for FailureVars can not be placed to {{/}}
* [BIGTOP-1534] - Update README.md to reflect new build system and other changes
* [BIGTOP-1541] - Support Debian jessie in Bigtop_toolchain; cleanup of pp files
* [BIGTOP-1542] - Debian Packages will not build
* [BIGTOP-1544] - [BigPetStore] Use of java.io.File and check for directory existence will fail with non-POSIX DFSs (HDFS, S3, etc.)
* [BIGTOP-1548] - hue uses snapshot dependency to removed snapshot
* [BIGTOP-1549] - spark compile broken
* [BIGTOP-1551] - build stops because gradle does not handle symlinks well
* [BIGTOP-1553] - puppet installation fails when components value is a single item instead of a list
* [BIGTOP-1554] - bigtop-deploy/puppet/config/site.csv was wrongfully committed.
* [BIGTOP-1562] - Critical tachyon pupet improvements.
* [BIGTOP-1564] - docker-puppet doesn't use vagrantconfg.yaml for configuration parameters
* [BIGTOP-1566] - Puppet README file needs to reflect multiple modules directoty requirement
* [BIGTOP-1567] - puppet cannot install components whatever given to it
* [BIGTOP-1568] - bigtop01 needs gradle
* [BIGTOP-1570] - docker-puppet fails to deploy due to stdlib can not be found
* [BIGTOP-1574] - Phoenix packaging requires build and classpath changes after PHOENIX-1455
* [BIGTOP-1579] - Implement patching for Bigtop
* [BIGTOP-1580] - Improve Bigtop Toolchain: Versioning of Packages
* [BIGTOP-1585] - test artifacts tasks include extra tasks for nonexisting components
* [BIGTOP-1586] - BigPetStore-Spark only works on the East Coast .
* [BIGTOP-1587] - Fix typos in install-tomcat.sh
* [BIGTOP-1588] - Current Bigtop Pig does not build because of API Change in Hive
* [BIGTOP-1589] - Prioritization is broken in bigtop-detect-javahome
* [BIGTOP-1592] - Integration test IntegrationTestClusterFailures is failing
* [BIGTOP-1596] - bigtop build fails because it tries to write to forrest installation
* [BIGTOP-1604] - Create a MAINTAINERS.txt File
* [BIGTOP-1605] - Tachyon RPM does not depend on bigtop utils
* [BIGTOP-1606] - Tachyon webapp directory not located where expected
* [BIGTOP-1610] - Fix /etc/profile.d/bigtop.sh scripts
* [BIGTOP-1611] - mahoutsmokes aren't compiling
* [BIGTOP-1618] - iTest integration tests need only to be bound to verify goal
* [BIGTOP-1620] - Hadoop deb Packages for architecture "all" containing binaries
* [BIGTOP-1626] - Add bmahe as a maintainer for Apache Flume
* [BIGTOP-1633] - Pig compile fails again
* [BIGTOP-1635] - hue compile on vanilla debian
* [BIGTOP-1636] - Missing patches and files for hue
* [BIGTOP-1639] - Add Olaf Flebbe to dev list
* [BIGTOP-1642] - Restructure and enhance toolchain
* [BIGTOP-1652] - Fix BigPetStore-Spark Data format regression
* [BIGTOP-1654] - change some hadoop puppet variables from local to node scope
* [BIGTOP-1656] - add tez variables to hadoop-env.sh
* [BIGTOP-1657] - bigtop-deploy puppets to support tez
* [BIGTOP-1660] - Upgrade to Hive-1.0
* [BIGTOP-1662] - puppet: Fix hadoop configuration file incompleteness due to hiera conversion
* [BIGTOP-1663] - TestHadoopSmoke is failing because of improper set-up
* [BIGTOP-1665] - Update Wiki pages on how to develop and build Bigtop
* [BIGTOP-1668] - puppet: Adjust kerberos module for current Debian
* [BIGTOP-1669] - puppet: Hadoop: Separate dependencies on Kerberos keytabs
* [BIGTOP-1677] - Tez packaging is still failing
* [BIGTOP-1678] - Use openjdk7 for AmazonLinux
* [BIGTOP-1687] - Puppet: fix wrong array representation for hadoop-zookeeper::server::ensemble
* [BIGTOP-1694] - puppet: Make httpfs subscribe to core-site and hdfs-site
* [BIGTOP-1699] - sqoop does not build on debian
* [BIGTOP-1703] - Limt override of JAVA_OPTS in install_solr.sh to cause minimal side-effects
* [BIGTOP-1706] - Make TestBlockRecovery runnable under all users
* [BIGTOP-1710] - Spark 1.1.0 does not build for DEB
* [BIGTOP-1711] - add packages to compile hue
* [BIGTOP-1712] - Specification for Docker images.
* [BIGTOP-1722] - upgrade tachyon to 0.6.0
* [BIGTOP-1723] - update Tachyon Maintainers
* [BIGTOP-1724] - Update centos vagrant box
* [BIGTOP-1729] - Install Hive has typo in HCATALOG option
* [BIGTOP-1731] - Gradle mustRunAfter doesn't work is expected
* [BIGTOP-1732] - remove has_ssh in Docker provisioner
* [BIGTOP-1733] - fix local_yum implementation
* [BIGTOP-1745] - Add Mark Grover as committer on the website
* [BIGTOP-1748] - Remove assert on fs.trash.interval from TestCLI and TestDFSCLI
* [BIGTOP-1751] - Puppet deployment ignores bigtop_repo_uri variable
* [BIGTOP-1756] - Add HADOOP_MAPRED_HOME property to common
* [BIGTOP-1757] - bigtop_toolchain has to differentiate between centos6 and centos7
* [BIGTOP-1758] - Remove redundant property checks from TestHadoopExamples
* [BIGTOP-1761] - Delete testConf.xml from hadoop-smoke resources
* [BIGTOP-1763] - Handle broken symlinks when copying jars
* [BIGTOP-1764] - Fix copying mapreduce jars to HDFS for Oozie
* [BIGTOP-1774] - Update mailing list page
* [BIGTOP-1775] - Fix typos and mistakes on mailing list page
* [BIGTOP-1776] - Resolve an warning on packaging Hadoop RPM
* [BIGTOP-1778] - spark-1.3.0 broke hive
* [BIGTOP-1779] - giraph compile broken
* [BIGTOP-1780] - bigtop_toolchain: JAVA_HOME incorrect, remove JAVA6_HOME
* [BIGTOP-1781] - tachyon fails to build
* [BIGTOP-1790] - Top level menu says 'Power By' - needs to be fixed
* [BIGTOP-1793] - bigtop_toolchain: remove JAVA_HOME/bin from PATH
* [BIGTOP-1798] - init-hdfs.sh uses groovy but no dependency in package description given
* [BIGTOP-1804] - Not again: srpm target fails on SUSE
* [BIGTOP-1808] - hive 1.0.0 : kerberos does not work correctly
* [BIGTOP-1810] - Spark thriftserver service does not indicate success
* [BIGTOP-1812] - fix bps pig integration test
* [BIGTOP-1813] - Create /user/hbase HDFS directory
* [BIGTOP-1814] - Puppet deployment code needs to work with ignite-hadoop component
* [BIGTOP-1815] - Tez build is broken in the container
* [BIGTOP-1816] - Puppet deploy is broken on Ubuntu
* [BIGTOP-1817] - bigtop-utils deb is missing init-hcfs.groovy file
* [BIGTOP-1818] - ignite-hadoop-service debian is missed; causing Puppet deploy to fail
* [BIGTOP-1824] - Tachyon master and worker daemon script does not work propertly
* [BIGTOP-1827] - Tachyon package name conflict on Debian/Ubuntu
* [BIGTOP-1828] - Puppet: Tachyon does not get formatted before tachyon daemons are started up
* [BIGTOP-1830] - Move apache-forrest installation from bigtop_toolchain to pig compile
* [BIGTOP-1832] - hdfs-site.xml: update shortcut reader and remove obsolete shortcut reader users
* [BIGTOP-1833] - Bump Ignite to 1.1.0
* [BIGTOP-1835] - Update project RDF file
* [BIGTOP-1839] - Building RPM for Zookeeper 3.4.6 is broken
* [BIGTOP-1840] - datafu does not pick up pig dependency from local repository
* [BIGTOP-1841] - toolchain can not set java correctly in fedora
* [BIGTOP-1845] - toolchain can not drop bigtop.sh in fedora because of puppet syntax error
* [BIGTOP-1848] - spark deb packages broken
* [BIGTOP-1849] - toolchain can not set java home correctly in CentOS 7
* [BIGTOP-1850] - Update Hue to 3.8
* [BIGTOP-1853] - Phoenix build does not properly override Hadoop version property
* [BIGTOP-1855] - Remove Obsolete Jobtracker settings from mapred-site.xml
* [BIGTOP-1857] - Support yarn-built-in proxy
* [BIGTOP-1859] - Unable to build Hue packages on Amazon Linux
* [BIGTOP-1860] - ignite-hadoop release URL should point to apache dist server, not a mirror
* [BIGTOP-1861] - giraph does not build
* [BIGTOP-1865] - circular dependency between bigtop-groovy and bigtop-utils
* [BIGTOP-1866] - openssl-devel is required by hue RPM package
* [BIGTOP-1867] - Upgrade Gradle version to 2.4
* [BIGTOP-1868] - Address the custom 'clean' warning
* [BIGTOP-1869] - Hue 3.8.1 refinements
* [BIGTOP-1870] - Latest version of Puppet::Apt doesn't work for our deployment recipes
* [BIGTOP-1872] - Improve HUE puppet recipies
* [BIGTOP-1874] - HBase build failed due to Codehaus repository is out of service
* [BIGTOP-1875] - Oozie build failed due to Codehaus repository is out of service
* [BIGTOP-1876] - Update puppet recipes for Sqoop2
* [BIGTOP-1879] - vagrant-puppet-vm is broken
* [BIGTOP-1886] - Kafka server can not create a log-cleaner.log file
* [BIGTOP-1893] - Compilation of hadoop-yarn-client failed
* [BIGTOP-1894] - Snappy development packages are missing from bigtop_toolchain
* [BIGTOP-1896] - bigtop_toolchain broken bei ant update
* [BIGTOP-1902] - typo in bigtop-deploy/vm/vagrant-puppet-vm/vagrantconfig.yaml
* [BIGTOP-1916] - Update Website for 1.0
* [BIGTOP-1937] - redhat-lsb is required by kafka daemon
* [BIGTOP-1938] - kafka packages /usr/bin on RPM
* [BIGTOP-1946] - Missing ASL header in some of iTest files
* [BIGTOP-1949] - Sqoop 1.4.5 artifacts aren't getting resolved in the release...
* [BIGTOP-1950] - Upgrade maven-assembly plugin: StackOverFlowException is thrown
* [BIGTOP-1951] - Fix licenses in the source files
* [BIGTOP-1958] - Upgrade default repositories and docker images to 1.0
** Improvement
* [BIGTOP-1047] - Support Puppet 3.x
* [BIGTOP-1204] - Add support for AmazonLinux
* [BIGTOP-1235] - Speed-up init-hdfs.sh for complete HCFS compliant provisioning
* [BIGTOP-1275] - BigPetStore: Add all 50 states
* [BIGTOP-1301] - Groovy 2.3.0 is out! Let's bundle it into the stack
* [BIGTOP-1325] - Update TestHDFSCLI to include tests from upstream
* [BIGTOP-1366] - Updated, Richer Model for Generating Data for BigPetStore
* [BIGTOP-1388] - Use cluster failure tests during other tests with command line parametrization
* [BIGTOP-1414] - Add Apache Spark implementation to BigPetStore
* [BIGTOP-1423] - Add Groovy installation to the bigtop_toolchain
* [BIGTOP-1449] - Add RC Testing support to vagrant recipe
* [BIGTOP-1450] - Eliminate broken hive test artifacts in favor of smoke-tests.
* [BIGTOP-1478] - Start tomcat watchdog as part of solr init scripts
* [BIGTOP-1481] - Log files are cluttered with messages from tar