forked from apache/bigtop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGES.txt
1909 lines (1834 loc) · 126 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.0 (unreleased)
* 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
* [BIGTOP-1484] - Include python in toolchain
* [BIGTOP-1489] - move the tomcat_watchdog code out of install_solr.sh into a separate file in bigtop-utils in order to facilitate reusability
* [BIGTOP-1495] - Remove make build system
* [BIGTOP-1498] - Add RC Testing to Docker based Bigtop provisioner
* [BIGTOP-1501] - come up with a way to use Jenkins plugins/Groovy console to create jobs
* [BIGTOP-1510] - Minor README update aboud bigtop-deploy
* [BIGTOP-1517] - refactor vagrant provisioners to be configurable by yaml file
* [BIGTOP-1527] - Allow to fetch package's source code from Git
* [BIGTOP-1545] - [BigPetStore] Bump version of BPS data generator library to 0.2.1
* [BIGTOP-1547] - Confirm tachyon functioning in vagrant recipes.
* [BIGTOP-1555] - remove mapred-app from docs or code snippet (post-BIGTOP-1522), cleanup vagrant-puppet to core components.
* [BIGTOP-1557] - website misses ci and announce mailing lists info
* [BIGTOP-1558] - Make gradle easier to navigate
* [BIGTOP-1559] - Tests are failing in Apache CI build
* [BIGTOP-1569] - provide alias targets for building packages native to the OS
* [BIGTOP-1576] - Add Vagrant installation to bigtop_toolchain
* [BIGTOP-1578] - Refactor vagrant-puppet provisioner to have its configurations all come from yaml
* [BIGTOP-1581] - Allow multiple Flume agents to be executed as a service using Bigtop init.d script
* [BIGTOP-1583] - update the default yum repo in puppet site.pp
* [BIGTOP-1590] - Add a functionality to run integration tests for itest
* [BIGTOP-1591] - JarContentTest is failing on JDK7
* [BIGTOP-1593] - Fix types in FailureVars
* [BIGTOP-1600] - Improve front page content of website
* [BIGTOP-1601] - cleanup whitespaces across test-artifacts
* [BIGTOP-1603] - Rename docker-puppet and vagrant-puppet to better indicate its function and difference
* [BIGTOP-1612] - Update README for smoke-tests
* [BIGTOP-1613] - Add .gitignore for vagrant-puppet
* [BIGTOP-1614] - Add .gitignore file for docker-puppet
* [BIGTOP-1621] - Migrate itest to gradle
* [BIGTOP-1627] - Move enable_local_yum implementation to bigtop-deploy/utils/setup-env.sh to share with Docker provisioner
* [BIGTOP-1634] - Puppet class parameter and hiera conversion
* [BIGTOP-1640] - Add missing files for Apache Spark
* [BIGTOP-1645] - Add subpackages for spark history server and thrift server
* [BIGTOP-1651] - puppet: Format namenode and zkfc in noninteractive mode
* [BIGTOP-1653] - Add queries for customer, state, and product statistics w/ d3 friendly JSON output to analytics phase.
* [BIGTOP-1659] - gridgain-hadoop packages need to provide unversioned softlinks for accelerator jar files
* [BIGTOP-1667] - Clean up and simplify the install phase for Apache Spark
* [BIGTOP-1670] - puppet: Support Kerberos authentication on Hadoop component web GUIs
* [BIGTOP-1674] - Account for BPS simulation "burn-in" time
* [BIGTOP-1675] - Puppet: remove wheel group setting for bigtop_real_users
* [BIGTOP-1676] - Puppet: add deb repo auto deploy
* [BIGTOP-1681] - [BigPetStore] Clean up BPS SparkSQL analytics module, add new queries
* [BIGTOP-1683] - puppet hadoop-env.sh: Add option to configure tez environment
* [BIGTOP-1684] - puppet hadoop/yarn: Make container executor configurable
* [BIGTOP-1685] - puppet hadoop: Remove useless use of explicit hiera lookup
* [BIGTOP-1686] - puppet hadoop/mapred: Update and clean mapred template and namespace
* [BIGTOP-1691] - Heira site.yaml template needs to have repo uri
* [BIGTOP-1692] - hieradata/site.yaml is missing gridgain-hadoop component
* [BIGTOP-1693] - Puppet stdlib should be automatically installed by toolchain
* [BIGTOP-1696] - Provide build command to show BOM list
* [BIGTOP-1697] - Bootstrap: hook up toolchain into gradle build
* [BIGTOP-1698] - Following BIGTOP-1697 improve README entry on toolchain setup
* [BIGTOP-1700] - Package YARN Timeline Server service for Apache Hadoop
* [BIGTOP-1705] - puppet: Allow configuring which hue apps to install
* [BIGTOP-1709] - Enable "hadoop26" profile for Apache Tez
* [BIGTOP-1718] - add facility for printing out BOM in json format
* [BIGTOP-1721] - Remove unnecessary files from Sqoop package
* [BIGTOP-1725] - Exclude null values from BOM json output added in BIGTOP-1718
* [BIGTOP-1741] - Upgrade to Apache Phoenix 4.3.1
* [BIGTOP-1742] - Add ywkim as a maintainer for Apache Hive, Spark, Sqoop* and Phoenix
* [BIGTOP-1743] - Add RJ Nowling as committer to website
* [BIGTOP-1770] - Let the user specify which JDK package to be installed in vagrantconfig.yaml
* [BIGTOP-1771] - Let the user specify what components to be tested when running smoke-tests by Docker/VM provisioner
* [BIGTOP-1783] - Import BigPetStore Data Generator into BigTop
* [BIGTOP-1787] - puppet: Update hue.ini to match Hue 3.7.1 template
* [BIGTOP-1791] - Set group of /user/hue to "hue" in HDFS
* [BIGTOP-1794] - Update README for bigtop_toolchain
* [BIGTOP-1801] - Generalize subst pattern matching for BOM file
* [BIGTOP-1803] - Overide Vagrant configurations from environment variables
* [BIGTOP-1809] - Remove gridgain-hadoop component once ignite-hadoop gets added
* [BIGTOP-1829] - Tachyon configuration files should reside in /etc/tachyon/conf instead of /etc/tachyon
* [BIGTOP-1836] - Better UX for Docker provisioner by integrating it into gradle
* [BIGTOP-1851] - Upgrade to HBase 0.98.12
* [BIGTOP-1862] - Add release download link to the front page of the website
* [BIGTOP-1919] - Remove fixConditional methods in BPS data generator
* [BIGTOP-1923] - Bump Ignite to 1.2 with major fixes
* [BIGTOP-1932] - [BigPetStore] Add larger product collection
* [BIGTOP-1939] - Enable basic hdfs-nfs gateway configuration
** New Feature
* [BIGTOP-989] - Add Apache Kafka to Apache Bigtop
* [BIGTOP-1417] - Dockerize the puppetized vagrant deployer
* [BIGTOP-1448] - Include zookeeper C library in bigtop
* [BIGTOP-1480] - Define BOM for 1.0 release of Bigtop
* [BIGTOP-1552] - Add support for AmazonLinux to bigtop-deploy/puppet
* [BIGTOP-1716] - Define SCALA_VERSION in bigtop.bom
* [BIGTOP-1744] - Add BigPigPetstore File and REST Load Generation.
* [BIGTOP-1806] - Integrate Apache Ignite (incubating) with BigTop
* [BIGTOP-1918] - Add product enumeration to BPS data generator
* [BIGTOP-1931] - Add multinomial product purchasing model to BPS Data Generator
** Task
* [BIGTOP-1393] - Retire the make build system
* [BIGTOP-1525] - FailureExecutor : Is it going to be maintained/used?
* [BIGTOP-1556] - Cleanup some unused minor stuff.
* [BIGTOP-1595] - kill list
* [BIGTOP-1597] - Design flyers for upcoming SCALE conference
* [BIGTOP-1638] - Add Dasha Boudnik to dev list
* [BIGTOP-1648] - Update to Spark 1x to Spark 1.2.1
* [BIGTOP-1655] - Update VM and Docker provisioner to work with hiera converted puppet recipes
* [BIGTOP-1726] - Confirm that Spark 1.2.1 runs properly in BigTop, and run the BPS integration test.
* [BIGTOP-1755] - Upgrade to Spark 1.3.0
* [BIGTOP-1777] - Add cool ASCII-art logo of Bigtop to the build.gradle
* [BIGTOP-1822] - Puppet apt module should be automatically installed by toolchain
* [BIGTOP-1831] - Upgrade Mahout to 0.10
* [BIGTOP-1834] - Upgrade to Spark 1.3.1
* [BIGTOP-1854] - Trim Tachyon maintainers' list
* [BIGTOP-1873] - Puppet apt module version must be 2.0.1 or above after BIGTOP-1870
* [BIGTOP-1897] - Umbrella JIRA for CI overhaul
** Test
* [BIGTOP-1377] - Add a test case for performing block corruption recovery
* [BIGTOP-1560] - Add a test case for performing block corruption recovery
* [BIGTOP-1617] - Make clean-up commands in TestCLI more specific
* [BIGTOP-1629] - Move testDFSCLI from hcfs to hdfs directory
* [BIGTOP-1664] - make test unpack resources optional
** Wish
* [BIGTOP-1619] - change hadoop namenode port to 8020 (apache default port) in puppet script
* Release 0.8.0 (2014-09-06)
Release Notes - Bigtop - Version 0.8.0
- SUB-TASK
- [BIGTOP-1111] - Bump version of Hadoop to 2.2.0
- [BIGTOP-1165] - Ivy config for hive metastore looks incorrect, which breaks build on JDK 7
- [BIGTOP-1166] - Hive-jdbc doesn't compile on JDK 7, which breaks build
- [BIGTOP-1183] - Rename spark package to spark-core
- [BIGTOP-1184] - bump hadoop version to 2.3.0
- [BIGTOP-1202] - One-button-click way for installing all needed bits of testing framework
- [BIGTOP-1203] - Update toolchaing to automatically install Gradle into dev env.
- [BIGTOP-1208] - Add DFSIO test into longevity suite
- [BIGTOP-1209] - Add SLive test into longevity suite
- [BIGTOP-1242] - bump jsvc to 1.0.15
- [BIGTOP-1244] - bump flume to 1.5.0.1
- [BIGTOP-1278] - bump pig version to 0.12.1
- [BIGTOP-1279] - bump hive version to 0.12.0
- [BIGTOP-1280] - bump Oozie version to 4.0.1
- [BIGTOP-1281] - bump hbase version to 0.98.2
- [BIGTOP-1282] - bump Mahout version to 0.9
- [BIGTOP-1283] - bump Solr version to 4.6.0
- [BIGTOP-1284] - bump Spark version to 0.9.1
- [BIGTOP-1285] - Bump version of Phoenix to 4.0
- [BIGTOP-1291] - On a clean ~/.m2 hbase mvn install site will fail as install is executed first
- [BIGTOP-1293] - Include Hive 0.13 into the stack
- [BIGTOP-1302] - Update hbase smoke tests to escape Hbase's "event horizon"
- [BIGTOP-1330] - bump Giraph version to 1.1.0
- [BIGTOP-1331] - bump Hue version to 3.6.0
- [BIGTOP-1340] - Hbase build has to use hadoop-two.version sys. prop
- [BIGTOP-1350] - Bump version of Crunch to 0.10.0
- [BIGTOP-1354] - bump version of Solr to 4.9.0
- [BIGTOP-1426] - Bump version of Hadoop to 2.4.1
- [BIGTOP-1432] - Update HBase version to 0.98.5 in the BOM
- [BIGTOP-1433] - Fix Hive build after BIGTOP-1429
- [BIGTOP-1434] - Maven build failing with NoClassDefFoundError at maven-site-plugin:3.0-beta-3:site (packaging-documentation) @ sqoop-docs
- [BIGTOP-1435] - Fix Crunch build after BIGTOP-1429
- BUG
- [BIGTOP-282] - the licensing status of the MovieLens data files needs to be cleared up
- [BIGTOP-831] - Hadoop branch-2 (and trunk?) are failing when built with JDK7u11
- [BIGTOP-922] - Existing Puppet recipes are failing to initialize HDFS dictories on the first run
- [BIGTOP-986] - install-flume.sh uses -x instead of -e
- [BIGTOP-996] - Document steps needed to run BT tests on a fresh host
- [BIGTOP-997] - TestCLI fails test id 5: comparator fails
- [BIGTOP-1042] - Add support for Hadoop 2.1.x-beta
- [BIGTOP-1048] - ZooKeeper installation use "zookeeper-server.pid" as default while ZooKeeper expects zookeeper_server.pid
- [BIGTOP-1072] - Vagrant scripts for spinning up and "hydrating" bigtop vms
- [BIGTOP-1092] - Add Hue documentation package
- [BIGTOP-1097] - introduce bigtop-groovy package
- [BIGTOP-1124] - solrctl should be able to auto-detect JAVA_HOME
- [BIGTOP-1125] - Return value does not reflect status checks
- [BIGTOP-1128] - FIX and modularize mahout sample data sets
- [BIGTOP-1132] - Phoenix RPM specfile does not create symlinks
- [BIGTOP-1141] - Add TestYarnNode to test yarn node
- [BIGTOP-1143] - Oozie configuration file is incomplete
- [BIGTOP-1146] - Flume NG package is broken because of org.hbase.asynchbase deps. mismanagement
- [BIGTOP-1150] - update Spark debian packaging to the latest format
- [BIGTOP-1153] - Crunch package doesn't depend on anything
- [BIGTOP-1164] - Get whole Bigtop stack building on JDK 7
- [BIGTOP-1167] - got "Permission denied" when creating vagrant home folder in provision.sh
- [BIGTOP-1168] - hue build fails (unresolvable maven dependencies)
- [BIGTOP-1169] - Hue rpm build fails
- [BIGTOP-1174] - missing dependency setting on init-hdfs.sh in puppet recipes
- [BIGTOP-1181] - Add pyspark to spark package
- [BIGTOP-1187] - Spark service packages have extraneous core in the name
- [BIGTOP-1191] - master pom.xml file formatting is out of whack
- [BIGTOP-1197] - iTest PackageManagerTests are failing
- [BIGTOP-1199] - Makefile for deb packing needs to support zip archives
- [BIGTOP-1205] - GRADLE_OPTS missing closing " in toolchain jenkins.sh.*
- [BIGTOP-1217] - Spark test-artifact missing repository for install
- [BIGTOP-1218] - Add JDK7 to Bigtop toolchain
- [BIGTOP-1220] - Gradle task order isn't enforced properly with dependsOn
- [BIGTOP-1221] - Expand and updated FUSE tests
- [BIGTOP-1223] - TestSlive does not fully remove root directory after an iteration
- [BIGTOP-1225] - TestHDFSQuota can fail if tests are run out of order
- [BIGTOP-1226] - TestSLive setup() already being used, need to rename
- [BIGTOP-1232] - test artifact build fails in io-longevity
- [BIGTOP-1234] - TestFileAppend shouldn't reuse client during testMultipleOutputStreamFailure()
- [BIGTOP-1236] - TestCLI expecting permissions incorrectly
- [BIGTOP-1238] - TestCLI has misspelled 'NAMNEODE' that is used without protocol name
- [BIGTOP-1239] - TestCLI: make ports optional in regex comparators
- [BIGTOP-1246] - Fix the shell-object bug in HttpFs smoke tests
- [BIGTOP-1250] - TestTextSnappy fails
- [BIGTOP-1252] - Update ant from 1.9.2 to 1.9.3
- [BIGTOP-1253] - TestSLive calling setpDir() instead of setupDir()
- [BIGTOP-1254] - add gradle specific files to .gitignore
- [BIGTOP-1255] - init-hcfs.json needs to encode privileges as strings, not numbers.
- [BIGTOP-1256] - Spark package deployment should reflect BIGTOP-1183
- [BIGTOP-1258] - Spark puppet deploy might fail as /etc/spark can not be created
- [BIGTOP-1259] - spark-worker service should be started after spark-master if ran on the same node
- [BIGTOP-1260] - Puppet deployment should reflect on the new name of spark package
- [BIGTOP-1268] - Jenkins Job Bigtop-trunk-Hadoop failed from 3/15/2014 due to protoc version
- [BIGTOP-1274] - yarn ResourceManager should be started before starting NodeManagers
- [BIGTOP-1290] - Zookeeper build is failing on Ant 1.9.3
- [BIGTOP-1294] - asciidoc is missed from centos and sles environments of bigtop_toolchain
- [BIGTOP-1295] - package.mk misteriously missing mkdir for RPMS that leads to SUSE build to fail
- [BIGTOP-1300] - need to bump ant version to 1.9.4 in bigtop_toolchain
- [BIGTOP-1303] - Pig 0.12.1 build is broken at the site target. Stack build can't proceed
- [BIGTOP-1304] - bigtop_toolchain needs to install Scala 2.10 to support Spark build
- [BIGTOP-1306] - RPM licensing metadata is inconsistent and wrong
- [BIGTOP-1313] - Ant 1.9.4 update is missed from ant.pp recipe.
- [BIGTOP-1319] - hive-rpm target is broken
- [BIGTOP-1322] - hbase_install.sh shall be called with bash
- [BIGTOP-1324] - Fix typo in testHDFSConf.xml of TestCLI
- [BIGTOP-1336] - Puppet recipes failed to deploy kerberos enabled hadoop cluster
- [BIGTOP-1337] - Logging success messages in service startup and shutdown only after verification.
- [BIGTOP-1345] - remove bigtop-packages/src/root@mgrover-centos6-2.ent.cloudera.com
- [BIGTOP-1346] - Generalize evaluation regexp in packages.gradle
- [BIGTOP-1355] - Hive 0.13 deb build is broken
- [BIGTOP-1358] - adjust toolchain to use JDK7 by default
- [BIGTOP-1359] - fix a few issues with our puppet_toolchain code
- [BIGTOP-1371] - Spark-master service fails to start due to missing /usr/lib/spark/work
- [BIGTOP-1380] - Pig might run out of memory during site construction
- [BIGTOP-1382] - Hadoop site.csv components additions: yarn & mapred-app
- [BIGTOP-1390] - JDK Woes
- [BIGTOP-1394] - package test manifest got out of date
- [BIGTOP-1396] - update metadata for bigtop-groovy and phoenix
- [BIGTOP-1397] - hive-hbase package is missing after move to the latest Hive
- [BIGTOP-1398] - hadoop-hdfs-fuse can't be installed on Ubuntu 14.04
- [BIGTOP-1399] - add --help to alternative invocation to support newer Ubuntus
- [BIGTOP-1400] - Whirr is failing with PermGen error: needs to be bumped up
- [BIGTOP-1401] - Create man pages for YARN, HDFS and MAPRED.
- [BIGTOP-1402] - Update bigtop gradle to 2.x
- [BIGTOP-1405] - Gradle 2.0 installation from toolchain is broken
- [BIGTOP-1415] - Remove redundant jars from spark package.
- [BIGTOP-1418] - [BigPetStore] build.gradle - wrong variable name (hadoopClusterRuntime instead of runtime)
- [BIGTOP-1420] - Update Phoenix version to 4.1.0 in the BOM
- [BIGTOP-1421] - Phoenix build is missing some variables
- [BIGTOP-1425] - gradle build can fail with NPE in an obscure way
- [BIGTOP-1427] - HBase build should build hbase-***-hadoop2 by default
- [BIGTOP-1428] - update tests to reflect new home for hbase user
- [BIGTOP-1429] - Apache build of Bigtop test artifacts fails to find correct Hbase jars
- [BIGTOP-1430] - incorrect version of spark-core prevents test artifacts from compiling
- [BIGTOP-1438] - asciidoc is no longer needed by Sqoop
- [BIGTOP-1439] - split jdk7 and jdk6 in Bigtop toolchain
- [BIGTOP-1440] - a few usability updates to bigtop_toolchain
- [BIGTOP-1441] - bigtop_toolchain fails on Ubuntu
- [BIGTOP-1442] - need to add proper clean up for the toolchain puppet code
- [BIGTOP-1444] - Phoenix RPM build is broken after BIGTOP-1421
- IMPROVEMENT
- [BIGTOP-840] - Refactor Bigtop puppet code for better integration with newer Puppet and Whirr
- [BIGTOP-848] - Allow to build stack on top of an arbitrary Hadoop SHA
- [BIGTOP-952] - init-hdfs.sh is dog slow. Let's replace it with a direct HDFS API calls and better layout management
- [BIGTOP-992] - Create HowToContribute wiki page
- [BIGTOP-1019] - Remove mysql requirement constraint from sqoop tests
- [BIGTOP-1026] - Big Top Mapred/Itest assertions should report specific commands which fail
- [BIGTOP-1029] - Add support for HBase 0.96+
- [BIGTOP-1085] - spark packages needs to be split
- [BIGTOP-1110] - Define BOM for 0.8.0 release of Bigtop
- [BIGTOP-1130] - Update Build Requirements on our web pages
- [BIGTOP-1137] - provide a way to request a major version of JDK
- [BIGTOP-1138] - hadoop-conf-pseudo package uses the deprecated fs.default.name parameter
- [BIGTOP-1139] - bigtop-tomcat and bigtop-jsvc don't depend on bigtop-utils
- [BIGTOP-1144] - Need to update command 'puppet apply' in file bigtop-deploy/puppet/README.md
- [BIGTOP-1147] - README.md improvments
- [BIGTOP-1152] - speed up spark build
- [BIGTOP-1155] - New logo !
- [BIGTOP-1161] - Have a way to dynamically select components to be deployed by Puppet recipes.
- [BIGTOP-1163] - puppet apply shows db init error if the oozie server is already running
- [BIGTOP-1171] - Puppetize the Vagrant deployer
- [BIGTOP-1178] - Clusterize the puppetized vagrant deployer.
- [BIGTOP-1195] - Higher level interface to smokes.
- [BIGTOP-1200] - Implement Generic Text File to define HCFS filesystem semantics
- [BIGTOP-1201] - Enhance (gradleize) the build to ease development, deployment; abstract implementation
- [BIGTOP-1207] - Create a foundation layer to build longevity and performance tests for the stack
- [BIGTOP-1210] - integrate BIGTOP-952 with plain text HCFS FS definition from BIGTOP-1200
- [BIGTOP-1213] - TestHadoopExamples smokes: orderering of tests; other improvements
- [BIGTOP-1222] - Simplify and gradleize a subset of the bigtop smokes
- [BIGTOP-1224] - Provide a simple order for tests
- [BIGTOP-1241] - BIGTOP should update protobuf to 2.5 from 2.4.x
- [BIGTOP-1257] - Make TestHadoopExamples modular enough to support longevity tests.
- [BIGTOP-1269] - BigPetStore: Create build w/ gradle
- [BIGTOP-1289] - Update component versions in the pom.xml (including hadoop)
- [BIGTOP-1296] - Fix permission and Update README for vagrant-puppet recipe
- [BIGTOP-1311] - allow easy site publishing
- [BIGTOP-1312] - Add dynamic menus, update, links, modern CSS to bigtop site.
- [BIGTOP-1314] - Deprecate make build
- [BIGTOP-1316] - enhance Shell for better checking of return code & output logging
- [BIGTOP-1321] - TestCLI: check assumptions before the test run
- [BIGTOP-1342] - Make TestCLI usable for both HDFS and HCFS
- [BIGTOP-1347] - Support better entropy performance on vagrant VMs
- [BIGTOP-1348] - vagrant-puppet provisioning is too slow on installing packages
- [BIGTOP-1372] - Bigtop needs feature that takes in multiple arguments to build specific components at command line
- [BIGTOP-1374] - Add dynamic override of BOM variables into Gradle build
- [BIGTOP-1391] - Improve README.md so that the markdown rendering is pretty and easy to read
- NEW FEATURE
- [BIGTOP-1039] - Add packaging for Shark analytics
- [BIGTOP-1089] - BigPetStore: A polyglot big data processing blueprint
- [BIGTOP-1188] - Smoke tests for HttpFs
- [BIGTOP-1192] - Add utilities to facilitate cluster failure testing into bigtop-test-framework
- [BIGTOP-1212] - Pick or build a framework for building fake data sets
- [BIGTOP-1272] - BigPetStore: Productionize the Mahout recommender
- [BIGTOP-1351] - Init script for HBase Thrift2 server is missing
- TASK
- [BIGTOP-236] - The user installed by hbase gets an incorrect home directory
- [BIGTOP-1240] - Formatting Guidelines
- TEST
- [BIGTOP-1040] - Add integration tests for Shark component
* Release 0.7.0 (2013-10-28)
- SUB-TASK
- [BIGTOP-932] - Allow puppet recipes to automatically pull in needed files from web
- [BIGTOP-964] - Bump hive version to 0.11
- [BIGTOP-993] - Add packaging for Phoenix
- [BIGTOP-1053] - Bump version of Hadoop to 2.0.6-alpha
- [BIGTOP-1073] - Bump version of HBase to 0.94.11
- [BIGTOP-1074] - Bump version of Hue to 2.5.0
- [BIGTOP-1075] - bump version of Flume to 1.4.0
- [BIGTOP-1076] - bump version of Crunch to 0.7.0
- [BIGTOP-1077] - Bump version of Hive to 0.11.0
- [BIGTOP-1078] - bump version of Datafu to 1.0.0
- [BIGTOP-1079] - bump version of Solr to 4.5.0
- [BIGTOP-1083] - Spark version was changed with incubating process.
- [BIGTOP-1101] - Bump version of HBase to 0.94.12
- BUG
- [BIGTOP-990] - /usr/lib/bigtop-utils/ should be owned by bigtop-utils package
- [BIGTOP-998] - Consolidate Hue packages
- [BIGTOP-1005] - Create versionless symlinks in hadoop client directory
- [BIGTOP-1006] - Explicitly state the working directory to be used in init scripts instead of relying on user's home directories
- [BIGTOP-1008] - /usr/lib/bigtop-utils directory is not owned by bigtop-utils package in RPMs
- [BIGTOP-1010] - libsnappy not included in the final hadoop RPM
- [BIGTOP-1011] - bigtop-detect-javahome has a quirky search order
- [BIGTOP-1017] - Revert a commit that introduces some unneeded dependencies
- [BIGTOP-1027] - 'bigtop-detect-classpath' helper script missing from bigtop-utils
- [BIGTOP-1033] - itest-common: fix debian install to avoid conffile prompt
- [BIGTOP-1034] - Custom user's home directory's creation fails in init-hdfs.sh
- [BIGTOP-1036] - Hue's oozie app package should depend on hue jobsub package
- [BIGTOP-1037] - Provide a mechanism to control the sourcing of defaults files
- [BIGTOP-1044] - hive and hive-jdbc versions should be kept in sync
- [BIGTOP-1045] - Be consistent with shells, bigtop-detect-javahome, and bigtop-utils versions
- [BIGTOP-1046] - Pig's use of BIGTOP_DEFAULTS_DIR is evaluated at the wrong time
- [BIGTOP-1051] - Spark archive should come in tar.gz format
- [BIGTOP-1052] - Increase environment configurability/debugging of Mahout Tests
- [BIGTOP-1055] - Spark package doesn't create PREFIX/bin directory and sets wrong permissions
- [BIGTOP-1059] - Add path option for pig.jar to pig smoke pom.xml
- [BIGTOP-1070] - Add BIGTOP_CLASSPATH functionality to tomcat deployment
- [BIGTOP-1071] - bigtop-detect-javahome should select the first possible candidate in the list
- [BIGTOP-1081] - deb spark packing needs to set SOURCE_DIR
- [BIGTOP-1082] - spark package tests are missing
- [BIGTOP-1084] - spark build on CentOS 5 and SLES11 is broken
- [BIGTOP-1086] - fix miscellaneous failures in package tests
- [BIGTOP-1087] - flume rpm package needs to own /usr/lib/flume/tools
- [BIGTOP-1088] - oozie packages need to own /etc/oozie/conf.dist/tomcat-deployment.{default,secure}
- [BIGTOP-1090] - hue packaging needs to handle mutable bits (app.reg and hue.pth)
- [BIGTOP-1094] - spark SPEC mistakenly re-defines alternatives command on SLES/OpenSUSE
- [BIGTOP-1095] - oozie packaging doesn't remove tomcat alternatives
- [BIGTOP-1096] - alternatives within the alternatives-managed sub-directory could be harmful
- [BIGTOP-1098] - now that Spark has had its first incubator release we have to adjust bigtop accordingly
- [BIGTOP-1099] - sync up the versions used for smoke tests with the BOM versions
- [BIGTOP-1100] - the new Tomcat deployment style would benefit from a few usability tweaks
- [BIGTOP-1103] - Remaining fixes of BIGTOP_DEFAULTS_DIR evaluation
- [BIGTOP-1107] - Update to the official Hue 2.5.1 release
- [BIGTOP-1108] - Solr 4.5.0 has been formally released and we should start using the official release bits
- [BIGTOP-1112] - sqoop-client should require bigtop-utils
- [BIGTOP-1114] - Hue metastore app is missing from core registration and Debian packages
- [BIGTOP-1115] - update package test manifest for Bigtop 0.7.0
- [BIGTOP-1117] - hive-hcatalog integration has a few issues
- [BIGTOP-1119] - phoenix DEB packages differ in a few ways from RPM counterparts
- IMPROVEMENT
- [BIGTOP-927] - Update puppet recipes to support Ubuntu
- [BIGTOP-938] - Upgrade to Junit 4.11
- [BIGTOP-955] - HBase installation should advertise its location and configuration
- [BIGTOP-1004] - Hadoop packages do not include version independent symlinks
- [BIGTOP-1021] - Update HBase version to 0.94.9
- [BIGTOP-1031] - README has outdated/ambiguous information
- [BIGTOP-1041] - Add Puppet support for Spark cluster deployment
- [BIGTOP-1056] - some changes are introduced into Spark build: needs to be updated here
- [BIGTOP-1063] - Add Scala 2.9.3 to bigtop-toolchain
- [BIGTOP-1069] - Remove descriptions about JDK5 dependency
- [BIGTOP-1080] - Change /usr/bin scripts to be alternatives instead of flat files
- [BIGTOP-1106] - update our puppet deployment topology
- NEW FEATURE
- [BIGTOP-811] - Add /var/lib/bigtop as a location to install SQL connectors and other plug-ins
- [BIGTOP-1023] - Define BOM for 0.7.0 release of Bigtop
- TASK
- [BIGTOP-715] - Add Spark packaging
- [BIGTOP-939] - Make usage of bigtop-tomcat more dynamic
- TEST
- [BIGTOP-719] - Add TestTextSnappy to test hadoop fs -text with snappy compressed files
- [BIGTOP-1030] - Develop integration tests for new Spark component
- [BIGTOP-1057] - Add TeraGen / TeraSort Benchmakring
* Release 0.6.0 (2013-06-10)
- SUB-TASK
- [BIGTOP-239] - HBase init scripts are shut down in the wrong order
- [BIGTOP-812] - HttpFS is using Tomcat 6.0.32 which has numerous vulnerabilities
- [BIGTOP-813] - add integration test for HCatlog
- [BIGTOP-814] - add packaging test for HCatlog
- [BIGTOP-822] - Bump version of Hadoop to 2.0.5
- [BIGTOP-824] - Bump version of Hive to 0.10
- [BIGTOP-832] - Bump version of Hue to 2.3.0
- [BIGTOP-833] - Update HCatalog packaging for Bigtop 0.6.0 integration
- [BIGTOP-839] - add packaging test for Sqoop 2
- [BIGTOP-852] - Improve HDFS helper script
- [BIGTOP-854] - add package testing manifest for HCatalog
- [BIGTOP-855] - add integration tests for HCatalog
- [BIGTOP-861] - init-hdfs.sh does not work from init scripts
- [BIGTOP-862] - All the Apache Hadoop services ought to start nicely and in order
- [BIGTOP-863] - verify the existence of the initscripts with typo
- [BIGTOP-864] - update the appliance for the location of the init-hdfs.sh script
- [BIGTOP-880] - Bump version of Datafu to 0.0.6
- [BIGTOP-891] - TestPigTest doesn't run against YARN cluster
- [BIGTOP-915] - bump version of Oozie to 3.3.2
- [BIGTOP-916] - Bump version of Pig to 0.11.1
- [BIGTOP-917] - Bump version of Solr to 4.2.1
- [BIGTOP-926] - Bump version of Giraph to 1.0
- [BIGTOP-933] - Need to add ASF license text to bigtop-toolchain files
- [BIGTOP-962] - Bump Sqoop version to 1.99.2
- [BIGTOP-963] - bump version of Whirr to 0.8.2
- [BIGTOP-980] - bigtop-toolchaing user module can't create 'jenkins' user
- BUG FIXES
- [BIGTOP-275] - scoping of variable in puppet code is incorrect
- [BIGTOP-379] - Package testing for Bigtop 0.5.0 release
- [BIGTOP-445] - yarn default file has the wrong name
- [BIGTOP-463] - should we reconsider /usr/lib vs. /usr/libexec decision?
- [BIGTOP-483] - Smoke test of Hadoop fails with clitest missing testConf.xml file
- [BIGTOP-489] - TestCLI with two test cases fails ID - 146 and 147 related to refreshServiceAcl
- [BIGTOP-504] - provide a functionality for detecting libjvm.so in bigtop-utils
- [BIGTOP-545] - package testing manifest in trunk needs to be updated
- [BIGTOP-553] - Metadata for packages needs to be harmonized between RPM and Debain
- [BIGTOP-584] - Fix hive smoke test failures in trunk
- [BIGTOP-624] - running start on a service already running should return success
- [BIGTOP-637] - Update boxgrinder appliance for the coming release
- [BIGTOP-786] - Not able to find wiki link on Bigtop homepage
- [BIGTOP-804] - org.apache.bigtop.itest.pmanager.PackageManagerTest.testLookupGcc fails on some systems
- [BIGTOP-808] - hadoop-conf-pseudo package breaks hadoop-conf alternatives during upgrades
- [BIGTOP-809] - Remove harmless scary message from solr build
- [BIGTOP-815] - Move the trunk forward now that 0.5.0 is released
- [BIGTOP-818] - Updated list of supported platforms on Bigtop's homepage and readme file
- [BIGTOP-823] - Remove obsolete slf4j removal in hive packaging
- [BIGTOP-826] - Wrong return code returned when stopping Hue on RHEL/SUSE
- [BIGTOP-827] - Ubuntu Install Instructutions Fail with a 404
- [BIGTOP-829] - Hue status returned wrong information on SLES
- [BIGTOP-830] - Add $(APACHE_MIRROR) for bigtop-tomcat
- [BIGTOP-834] - Remove workaround for MAPREDUCE-4814 in historyserver
- [BIGTOP-835] - The shell exec method must have variants which have timeout and can run in background