├── .asf.yaml ├── .dockerignore ├── .github └── pull_request_template.md ├── .gitignore ├── .travis.yml ├── BUILDING.txt ├── CHANGES.txt ├── Jenkinsfile.site ├── LICENSE ├── MAINTAINERS.txt ├── NOTICE ├── README.md ├── bigtop-bigpetstore ├── README.md ├── bigpetstore-spark │ ├── README.md │ ├── arch.dot │ ├── build.gradle │ ├── settings.gradle │ └── src │ │ ├── main │ │ └── scala │ │ │ └── org │ │ │ └── apache │ │ │ └── bigpetstore │ │ │ └── spark │ │ │ ├── analytics │ │ │ ├── PetStoreStatistics.scala │ │ │ └── RecommendProducts.scala │ │ │ ├── datamodel │ │ │ ├── DataModel.scala │ │ │ └── IOUtils.scala │ │ │ ├── etl │ │ │ └── ETL.scala │ │ │ └── generator │ │ │ └── SparkDriver.scala │ │ └── test │ │ └── scala │ │ └── org │ │ └── apache │ │ └── bigpetstore │ │ └── spark │ │ ├── TestFullPipeline.scala │ │ ├── analytics │ │ └── AnalyticsSuite.scala │ │ ├── datamodel │ │ └── IOUtilsSuite.scala │ │ ├── etl │ │ └── ETLSuite.scala │ │ └── generator │ │ └── SparkDriverSuite.scala └── bigpetstore-transaction-queue │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── build.gradle │ ├── settings.gradle │ └── src │ ├── main │ └── java │ │ └── org │ │ └── apache │ │ └── bigtop │ │ └── bigpetstore │ │ └── qstream │ │ ├── FileLoadGen.java │ │ ├── HttpLoadGen.java │ │ ├── LoadGen.java │ │ ├── LoadGenFactory.java │ │ ├── SimpleHttpServer.java │ │ └── Utils.java │ └── test │ └── java │ └── org │ └── apache │ └── bigtop │ └── bigpetstore │ └── qstream │ └── TestLoadGen.java ├── bigtop-ci ├── build.sh ├── entrypoint.sh └── jenkins │ ├── README │ └── jobsCreator.groovy ├── bigtop-data-generators ├── README.md ├── bigpetstore-data-generator │ ├── README.md │ ├── build.gradle │ ├── groovy_example_drivers │ │ ├── MonteCarloExponentialSamplingExample.groovy │ │ └── MonteCarloGaussianSamplingExample.groovy │ ├── settings.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── bigtop │ │ │ └── datagenerators │ │ │ └── bigpetstore │ │ │ ├── Constants.java │ │ │ ├── CustomerGenerator.java │ │ │ ├── DataLoader.java │ │ │ ├── ProductGenerator.java │ │ │ ├── PurchasingModelGenerator.java │ │ │ ├── StoreGenerator.java │ │ │ ├── TransactionGenerator.java │ │ │ ├── cli │ │ │ ├── Driver.java │ │ │ └── Simulation.java │ │ │ ├── datamodels │ │ │ ├── Customer.java │ │ │ ├── PetSpecies.java │ │ │ ├── Product.java │ │ │ ├── Store.java │ │ │ ├── Transaction.java │ │ │ └── inputs │ │ │ │ ├── InputData.java │ │ │ │ └── ProductCategory.java │ │ │ └── generators │ │ │ ├── customer │ │ │ ├── CustomerLocationPDF.java │ │ │ ├── CustomerSampler.java │ │ │ ├── CustomerSamplerBuilder.java │ │ │ └── CustomerStorePDF.java │ │ │ ├── products │ │ │ ├── ProductBuilderIterator.java │ │ │ ├── ProductCategoryBuilder.java │ │ │ ├── ProductFieldValue.java │ │ │ ├── ProductFilterIterator.java │ │ │ ├── ProductIterator.java │ │ │ ├── cartesian │ │ │ │ ├── CartesianProduct.java │ │ │ │ ├── CartesianProductBase.java │ │ │ │ └── CartesianProductField.java │ │ │ ├── collections │ │ │ │ ├── MediumProductCollection.java │ │ │ │ └── SmallProductCollection.java │ │ │ └── rules │ │ │ │ ├── AlwaysTrueRule.java │ │ │ │ ├── AndRule.java │ │ │ │ ├── FieldPredicate.java │ │ │ │ ├── NotRule.java │ │ │ │ ├── OrRule.java │ │ │ │ └── Rule.java │ │ │ ├── purchase │ │ │ ├── MarkovModelProductCategorySampler.java │ │ │ ├── MarkovPurchasingModel.java │ │ │ ├── MarkovPurchasingModelSampler.java │ │ │ ├── MultinomialPurchasingModel.java │ │ │ ├── MultinomialPurchasingModelSampler.java │ │ │ ├── PurchasingModel.java │ │ │ ├── PurchasingModelSamplerBuilder.java │ │ │ └── PurchasingProcesses.java │ │ │ ├── store │ │ │ ├── StoreLocationIncomePDF.java │ │ │ ├── StoreLocationPopulationPDF.java │ │ │ ├── StoreSampler.java │ │ │ └── StoreSamplerBuilder.java │ │ │ └── transaction │ │ │ ├── CategoryWeightFunction.java │ │ │ ├── CustomerInventory.java │ │ │ ├── CustomerInventoryBuilder.java │ │ │ ├── CustomerTransactionParameters.java │ │ │ ├── CustomerTransactionParametersBuilder.java │ │ │ ├── CustomerTransactionParametersSampler.java │ │ │ ├── CustomerTransactionParametersSamplerBuilder.java │ │ │ ├── ProductCategoryInventory.java │ │ │ ├── ProductCategoryUsageSimulator.java │ │ │ ├── ProductCategoryUsageTrajectory.java │ │ │ ├── ProposedPurchaseTimeSampler.java │ │ │ ├── TransactionPurchasesHiddenMarkovModel.java │ │ │ ├── TransactionPurchasesSamplerBuilder.java │ │ │ ├── TransactionSampler.java │ │ │ ├── TransactionSamplerBuilder.java │ │ │ ├── TransactionTimePDF.java │ │ │ └── TransactionTimeSamplerBuilder.java │ │ └── test │ │ └── java │ │ └── org │ │ └── apache │ │ └── bigtop │ │ └── datagenerators │ │ └── bigpetstore │ │ ├── datamodels │ │ └── TestProduct.java │ │ └── generators │ │ ├── customer │ │ ├── TestCustomerLocationPDF.java │ │ ├── TestCustomerSampler.java │ │ └── TestCustomerSamplerBuilder.java │ │ ├── products │ │ ├── cartesian │ │ │ ├── TestCartesianProductBase.java │ │ │ └── TestCartesianProductField.java │ │ └── rules │ │ │ ├── TestAlwaysTrueRule.java │ │ │ ├── TestAndRule.java │ │ │ ├── TestFieldPredicate.java │ │ │ ├── TestNotRule.java │ │ │ └── TestOrRule.java │ │ ├── purchase │ │ ├── TestProductCategoryMarkovModelSampler.java │ │ ├── TestPurchasingModelSampler.java │ │ ├── TestPurchasingModelSamplerBuilder.java │ │ └── TestPurchasingProcesses.java │ │ ├── store │ │ ├── TestStoreLocationIncomePDF.java │ │ ├── TestStoreLocationPopulationPDF.java │ │ ├── TestStoreSampler.java │ │ └── TestStoreSamplerBuilder.java │ │ └── transaction │ │ ├── TestCustomerInventory.java │ │ ├── TestCustomerInventoryBuilder.java │ │ ├── TestCustomerTransactionParameters.java │ │ ├── TestCustomerTransactionParametersBuilder.java │ │ ├── TestCustomerTransactionParametersSampler.java │ │ ├── TestCustomerTransactionParametersSamplerBuilder.java │ │ ├── TestProductCategoryInventory.java │ │ ├── TestProductCategoryUsageSimulator.java │ │ ├── TestProductCategoryUsageTrajectory.java │ │ ├── TestTransactionPurchasesHiddenMarkovModel.java │ │ └── TestTransactionTimePDF.java ├── bigtop-location-data │ ├── README.md │ ├── build.gradle │ ├── settings.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── bigtop │ │ │ └── datagenerators │ │ │ └── locations │ │ │ ├── Location.java │ │ │ ├── LocationConstants.java │ │ │ └── LocationReader.java │ │ └── resources │ │ └── input_data │ │ ├── ACS_12_5YR_S1903 │ │ ├── ACS_12_5YR_S1903.txt │ │ ├── ACS_12_5YR_S1903_metadata.csv │ │ └── ACS_12_5YR_S1903_with_ann.csv │ │ ├── population_data.csv │ │ └── zips.csv ├── bigtop-name-generator │ ├── README.md │ ├── build.gradle │ ├── settings.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── bigtop │ │ │ │ └── datagenerators │ │ │ │ └── namegenerator │ │ │ │ ├── NameGenerator.java │ │ │ │ ├── NameReader.java │ │ │ │ └── Names.java │ │ └── resources │ │ │ └── input_data │ │ │ └── namedb │ │ │ ├── data │ │ │ └── data.dat │ │ │ └── namedb.info │ │ └── test │ │ └── java │ │ └── org │ │ └── apache │ │ └── bigtop │ │ └── datagenerators │ │ └── namegenerator │ │ └── TestNameGenerator.java ├── bigtop-samplers │ ├── README.md │ ├── build.gradle │ ├── settings.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── bigtop │ │ │ └── datagenerators │ │ │ └── samplers │ │ │ ├── SeedFactory.java │ │ │ ├── markovmodels │ │ │ ├── MarkovModel.java │ │ │ ├── MarkovModelBuilder.java │ │ │ └── MarkovProcess.java │ │ │ ├── pdfs │ │ │ ├── ConditionalProbabilityDensityFunction.java │ │ │ ├── ExponentialPDF.java │ │ │ ├── GaussianPDF.java │ │ │ ├── JointPDF.java │ │ │ ├── MultinomialPDF.java │ │ │ ├── ProbabilityDensityFunction.java │ │ │ └── UniformPDF.java │ │ │ ├── samplers │ │ │ ├── BoundedMultiModalGaussianSampler.java │ │ │ ├── ConditionalSampler.java │ │ │ ├── DoubleSequenceSampler.java │ │ │ ├── ExponentialSampler.java │ │ │ ├── GammaSampler.java │ │ │ ├── GaussianSampler.java │ │ │ ├── MonteCarloSampler.java │ │ │ ├── RouletteWheelSampler.java │ │ │ ├── Sampler.java │ │ │ ├── SequenceSampler.java │ │ │ ├── StatefulMonteCarloSampler.java │ │ │ ├── UniformIntSampler.java │ │ │ └── UniformSampler.java │ │ │ └── wfs │ │ │ ├── ConditionalWeightFunction.java │ │ │ ├── DiscreteWeightFunction.java │ │ │ ├── MultinomialWF.java │ │ │ └── WeightFunction.java │ │ └── test │ │ └── java │ │ └── org │ │ └── apache │ │ └── bigtop │ │ └── datagenerators │ │ └── samplers │ │ ├── markovmodels │ │ ├── TestMarkovModelBuilder.java │ │ └── TestMarkovProcess.java │ │ ├── pdfs │ │ └── TestMultinomialPDF.java │ │ └── samplers │ │ ├── TestBoundedMultiModalGaussianSampler.java │ │ ├── TestExponentialSampler.java │ │ ├── TestGaussianSampler.java │ │ ├── TestRouletteWheelSampler.java │ │ ├── TestSequenceSampler.java │ │ └── TestUniformIntSampler.java ├── bigtop-weatherman │ ├── README.md │ ├── build.gradle │ ├── settings.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── bigtop │ │ │ └── datagenerators │ │ │ └── weatherman │ │ │ ├── WeatherGenerator.java │ │ │ ├── WeatherRecord.java │ │ │ └── internal │ │ │ ├── Driver.java │ │ │ ├── PrecipitationSampler.java │ │ │ ├── TemperatureSampler.java │ │ │ ├── WeatherConstants.java │ │ │ ├── WeatherParametersReader.java │ │ │ ├── WeatherRecordBuilder.java │ │ │ ├── WeatherSampler.java │ │ │ ├── WeatherSamplerBuilder.java │ │ │ ├── WeatherStationParameters.java │ │ │ └── WindSpeedSampler.java │ │ └── resources │ │ └── input_data │ │ └── weather_parameters.csv ├── build.gradle └── settings.gradle ├── bigtop-deploy ├── juju │ ├── hadoop-hbase │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bundle-local.yaml │ │ ├── bundle.yaml │ │ ├── ci-info.yaml │ │ ├── copyright │ │ └── tests │ │ │ ├── 01-bundle.py │ │ │ └── tests.yaml │ ├── hadoop-kafka │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bundle-local.yaml │ │ ├── bundle.yaml │ │ ├── ci-info.yaml │ │ ├── copyright │ │ └── tests │ │ │ ├── 01-bundle.py │ │ │ └── tests.yaml │ ├── hadoop-processing │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bundle-local.yaml │ │ ├── bundle.yaml │ │ ├── ci-info.yaml │ │ ├── copyright │ │ └── tests │ │ │ ├── 01-bundle.py │ │ │ └── tests.yaml │ ├── hadoop-spark │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bundle-local.yaml │ │ ├── bundle.yaml │ │ ├── ci-info.yaml │ │ ├── copyright │ │ └── tests │ │ │ ├── 01-bundle.py │ │ │ └── tests.yaml │ └── spark-processing │ │ ├── README.md │ │ ├── bundle-local.yaml │ │ ├── bundle.yaml │ │ ├── ci-info.yaml │ │ ├── copyright │ │ └── tests │ │ ├── 01-bundle.py │ │ └── tests.yaml └── puppet │ ├── README.md │ ├── hiera.yaml │ ├── hieradata │ ├── bigtop │ │ ├── cluster.yaml │ │ └── repo.yaml │ └── site.yaml │ ├── manifests │ ├── bigtop_repo.pp │ ├── cluster.pp │ ├── jdk.pp │ ├── python.pp │ ├── site.pp │ └── yumrepo.pp │ └── modules │ ├── alluxio │ ├── manifests │ │ └── init.pp │ └── templates │ │ └── alluxio-site.properties │ ├── bigtop-util │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── Rakefile │ ├── lib │ │ └── puppet │ │ │ └── parser │ │ │ └── functions │ │ │ └── get_roles.rb │ └── spec │ │ └── functions │ │ └── get_roles_spec.rb │ ├── bigtop_utils │ ├── manifests │ │ └── init.pp │ └── tests │ │ └── init.pp │ ├── flink │ ├── manifests │ │ └── init.pp │ └── templates │ │ └── flink-conf.yaml │ ├── hadoop │ ├── files │ │ ├── hdfs │ │ │ ├── id_hdfsuser │ │ │ └── id_hdfsuser.pub │ │ ├── http.keystore │ │ └── http.truststore │ ├── lib │ │ └── facter │ │ │ ├── hadoop_storage_dirs.rb │ │ │ └── hadoop_storage_locations.rb │ ├── manifests │ │ └── init.pp │ └── templates │ │ ├── container-executor.cfg │ │ ├── core-site.xml │ │ ├── hadoop-env.sh │ │ ├── hadoop-hdfs │ │ ├── hdfs-site.xml │ │ ├── httpfs-env.sh │ │ ├── httpfs-site.xml │ │ ├── kms-env.sh │ │ ├── kms-site.xml │ │ ├── mapred-site.xml │ │ ├── ssl-client.xml │ │ ├── ssl-server.xml │ │ ├── taskcontroller.cfg │ │ └── yarn-site.xml │ ├── hadoop_hbase │ ├── manifests │ │ └── init.pp │ ├── templates │ │ ├── hbase-env.sh │ │ ├── hbase-site.xml │ │ └── jaas.conf │ └── tests │ │ └── init.pp │ ├── hadoop_hive │ ├── manifests │ │ └── init.pp │ ├── templates │ │ └── hive-site.xml │ └── tests │ │ └── init.pp │ ├── hadoop_zookeeper │ ├── files │ │ └── java.env │ ├── manifests │ │ └── init.pp │ ├── templates │ │ ├── client-jaas.conf │ │ ├── server-jaas.conf │ │ └── zoo.cfg │ └── tests │ │ └── init.pp │ ├── hcatalog │ ├── manifests │ │ └── init.pp │ ├── templates │ │ ├── hcatalog-server │ │ └── webhcat.xml │ └── tests │ │ └── init.pp │ ├── kafka │ ├── manifests │ │ └── init.pp │ └── templates │ │ └── server.properties │ ├── kerberos │ ├── lib │ │ └── facter │ │ │ └── kadm_keytab.rb │ ├── manifests │ │ └── init.pp │ ├── templates │ │ ├── kadm5.acl │ │ ├── kdc.conf │ │ └── krb5.conf │ └── tests │ │ └── init.pp │ ├── livy │ ├── manifests │ │ └── init.pp │ └── templates │ │ ├── livy-env.sh │ │ ├── livy.conf │ │ └── log4j.properties │ ├── nfs │ └── manifests │ │ ├── client.pp │ │ ├── client │ │ ├── install.pp │ │ ├── params.pp │ │ └── service.pp │ │ └── init.pp │ ├── phoenix │ └── manifests │ │ └── init.pp │ ├── ranger │ ├── manifests │ │ └── init.pp │ └── templates │ │ └── ranger-admin │ │ └── install.properties │ ├── solr │ ├── manifests │ │ └── init.pp │ ├── templates │ │ ├── jaas.conf │ │ └── solr │ └── tests │ │ └── init.pp │ ├── spark │ ├── manifests │ │ └── init.pp │ ├── templates │ │ ├── spark-defaults.conf │ │ └── spark-env.sh │ └── tests │ │ └── init.pp │ ├── tez │ ├── manifests │ │ └── init.pp │ ├── templates │ │ └── environment │ └── tests │ │ └── init.pp │ └── zeppelin │ ├── manifests │ └── init.pp │ ├── templates │ ├── interpreter.json │ ├── zeppelin-env.sh │ └── zeppelin-site.xml │ └── tests │ └── init.pp ├── bigtop-packages └── src │ ├── charm │ ├── README.md │ ├── hadoop │ │ ├── layer-hadoop-namenode │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── actions.yaml │ │ │ ├── actions │ │ │ │ └── smoke-test │ │ │ ├── copyright │ │ │ ├── layer.yaml │ │ │ ├── metadata.yaml │ │ │ ├── metrics.yaml │ │ │ ├── reactive │ │ │ │ └── namenode.py │ │ │ ├── tests │ │ │ │ ├── 01-basic-deployment.py │ │ │ │ └── tests.yaml │ │ │ └── wheelhouse.txt │ │ ├── layer-hadoop-plugin │ │ │ ├── README.md │ │ │ ├── actions.yaml │ │ │ ├── actions │ │ │ │ └── smoke-test │ │ │ ├── copyright │ │ │ ├── layer.yaml │ │ │ ├── metadata.yaml │ │ │ ├── reactive │ │ │ │ └── apache_bigtop_plugin.py │ │ │ └── tests │ │ │ │ ├── 01-basic-deployment.py │ │ │ │ └── tests.yaml │ │ ├── layer-hadoop-resourcemanager │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── actions.yaml │ │ │ ├── actions │ │ │ │ ├── mrbench │ │ │ │ ├── nnbench │ │ │ │ ├── parseBenchmark.py │ │ │ │ ├── smoke-test │ │ │ │ ├── teragen │ │ │ │ ├── terasort │ │ │ │ └── testdfsio │ │ │ ├── copyright │ │ │ ├── layer.yaml │ │ │ ├── metadata.yaml │ │ │ ├── metrics.yaml │ │ │ ├── reactive │ │ │ │ └── resourcemanager.py │ │ │ ├── tests │ │ │ │ ├── 01-basic-deployment.py │ │ │ │ └── tests.yaml │ │ │ └── wheelhouse.txt │ │ └── layer-hadoop-slave │ │ │ ├── README.md │ │ │ ├── actions.yaml │ │ │ ├── actions │ │ │ └── smoke-test │ │ │ ├── copyright │ │ │ ├── layer.yaml │ │ │ ├── metadata.yaml │ │ │ ├── reactive │ │ │ └── hadoop_status.py │ │ │ └── tests │ │ │ ├── 01-basic-deployment.py │ │ │ └── tests.yaml │ ├── hbase │ │ └── layer-hbase │ │ │ ├── README.md │ │ │ ├── actions.yaml │ │ │ ├── actions │ │ │ ├── perf-test │ │ │ ├── restart │ │ │ ├── smoke-test │ │ │ ├── start │ │ │ ├── start-hbase-master │ │ │ ├── start-hbase-regionserver │ │ │ ├── stop │ │ │ ├── stop-hbase-master │ │ │ └── stop-hbase-regionserver │ │ │ ├── config.yaml │ │ │ ├── copyright │ │ │ ├── icon.svg │ │ │ ├── layer.yaml │ │ │ ├── lib │ │ │ └── charms │ │ │ │ └── layer │ │ │ │ └── bigtop_hbase.py │ │ │ ├── metadata.yaml │ │ │ ├── reactive │ │ │ └── hbase.py │ │ │ ├── tests │ │ │ ├── 01-basic-deployment.py │ │ │ ├── 02-smoke-test.py │ │ │ └── tests.yaml │ │ │ └── wheelhouse.txt │ ├── hive │ │ └── layer-hive │ │ │ ├── README.md │ │ │ ├── actions.yaml │ │ │ ├── actions │ │ │ ├── restart │ │ │ └── smoke-test │ │ │ ├── config.yaml │ │ │ ├── copyright │ │ │ ├── icon.svg │ │ │ ├── layer.yaml │ │ │ ├── lib │ │ │ └── charms │ │ │ │ └── layer │ │ │ │ └── bigtop_hive.py │ │ │ ├── metadata.yaml │ │ │ ├── reactive │ │ │ └── hive.py │ │ │ └── tests │ │ │ ├── 01-basic-deployment.py │ │ │ ├── 02-smoke-test.py │ │ │ └── tests.yaml │ ├── kafka │ │ └── layer-kafka │ │ │ ├── README.md │ │ │ ├── actions.yaml │ │ │ ├── actions │ │ │ ├── create-topic │ │ │ ├── kafkautils.py │ │ │ ├── list-topics │ │ │ ├── list-zks │ │ │ ├── read-topic │ │ │ ├── smoke-test │ │ │ └── write-topic │ │ │ ├── config.yaml │ │ │ ├── copyright │ │ │ ├── icon.svg │ │ │ ├── layer.yaml │ │ │ ├── lib │ │ │ └── charms │ │ │ │ └── layer │ │ │ │ └── bigtop_kafka.py │ │ │ ├── metadata.yaml │ │ │ ├── reactive │ │ │ └── kafka.py │ │ │ └── tests │ │ │ ├── 01-deploy.py │ │ │ ├── 02-smoke-test.py │ │ │ ├── 10-config-changed.py │ │ │ └── tests.yaml │ ├── spark │ │ └── layer-spark │ │ │ ├── README.md │ │ │ ├── actions.yaml │ │ │ ├── actions │ │ │ ├── connectedcomponent │ │ │ ├── decisiontree │ │ │ ├── kmeans │ │ │ ├── linearregression │ │ │ ├── list-jobs │ │ │ ├── logisticregression │ │ │ ├── matrixfactorization │ │ │ ├── pagerank │ │ │ ├── pca │ │ │ ├── pregeloperation │ │ │ ├── reinstall │ │ │ ├── remove-job │ │ │ ├── restart-spark-job-history-server │ │ │ ├── shortestpaths │ │ │ ├── smoke-test │ │ │ ├── spark-submit │ │ │ ├── sparkbench │ │ │ ├── sparkpi │ │ │ ├── sql │ │ │ ├── start-spark-job-history-server │ │ │ ├── stop-spark-job-history-server │ │ │ ├── stronglyconnectedcomponent │ │ │ ├── submit │ │ │ ├── svdplusplus │ │ │ └── svm │ │ │ ├── config.yaml │ │ │ ├── copyright │ │ │ ├── icon.svg │ │ │ ├── layer.yaml │ │ │ ├── lib │ │ │ └── charms │ │ │ │ └── layer │ │ │ │ └── bigtop_spark.py │ │ │ ├── metadata.yaml │ │ │ ├── reactive │ │ │ └── spark.py │ │ │ ├── scripts │ │ │ └── sparkpi.sh │ │ │ ├── tests │ │ │ ├── 01-basic-deployment.py │ │ │ ├── 02-smoke-test.py │ │ │ ├── 03-scale-standalone.py │ │ │ ├── 04-test-config.py │ │ │ ├── 10-test-ha.py │ │ │ └── tests.yaml │ │ │ └── wheelhouse.txt │ ├── zeppelin │ │ └── layer-zeppelin │ │ │ ├── README.md │ │ │ ├── actions.yaml │ │ │ ├── actions │ │ │ ├── reinstall │ │ │ ├── restart │ │ │ └── smoke-test │ │ │ ├── copyright │ │ │ ├── icon.svg │ │ │ ├── layer.yaml │ │ │ ├── lib │ │ │ └── charms │ │ │ │ └── layer │ │ │ │ └── bigtop_zeppelin.py │ │ │ ├── metadata.yaml │ │ │ ├── reactive │ │ │ └── zeppelin.py │ │ │ ├── resources │ │ │ ├── flume-tutorial │ │ │ │ └── note.json │ │ │ └── hdfs-tutorial │ │ │ │ └── note.json │ │ │ ├── tests │ │ │ ├── 01-basic-deployment.py │ │ │ ├── 02-zeppelin-smoke.py │ │ │ ├── 03-zeppelin-spark-smoke.py │ │ │ ├── 04-zeppelin-config.py │ │ │ └── tests.yaml │ │ │ └── wheelhouse.txt │ └── zookeeper │ │ └── layer-zookeeper │ │ ├── README.md │ │ ├── actions.yaml │ │ ├── actions │ │ ├── restart │ │ └── smoke-test │ │ ├── config.yaml │ │ ├── copyright │ │ ├── files │ │ └── check_zookeeper.py │ │ ├── icon.svg │ │ ├── layer.yaml │ │ ├── lib │ │ └── charms │ │ │ └── layer │ │ │ └── bigtop_zookeeper.py │ │ ├── metadata.yaml │ │ ├── metrics.yaml │ │ ├── reactive │ │ └── zookeeper.py │ │ └── tests │ │ ├── 01-deploy-smoke.py │ │ ├── 10-bind-address.py │ │ ├── 20-snapshots.py │ │ └── tests.yaml │ ├── common │ ├── alluxio │ │ ├── alluxio-job-master.svc │ │ ├── alluxio-job-worker.svc │ │ ├── alluxio-master.svc │ │ ├── alluxio-worker.svc │ │ ├── do-component-build │ │ ├── init.d.tmpl │ │ ├── install_alluxio.sh │ │ └── patch0-fix-license-check.diff │ ├── bigtop-groovy │ │ ├── do-component-build │ │ └── install_groovy.sh │ ├── bigtop-jsvc │ │ ├── do-component-build │ │ └── install_jsvc.sh │ ├── bigtop-select │ │ ├── LICENSE │ │ ├── distro-select │ │ └── install_select.sh │ ├── bigtop-utils │ │ ├── LICENSE │ │ ├── bigtop-detect-classpath │ │ ├── bigtop-detect-javahome │ │ ├── bigtop-detect-javalibs │ │ ├── bigtop-monitor-service │ │ └── bigtop-utils.default │ ├── flink │ │ ├── do-component-build │ │ ├── flink-jobmanager.svc │ │ ├── flink-taskmanager.svc │ │ └── install_flink.sh │ ├── hadoop │ │ ├── conf.empty │ │ │ ├── core-site.xml │ │ │ ├── hdfs-site.xml │ │ │ ├── mapred-site.xml │ │ │ └── yarn-site.xml │ │ ├── conf.pseudo │ │ │ ├── README │ │ │ ├── core-site.xml │ │ │ ├── hadoop-metrics.properties │ │ │ ├── hdfs-site.xml │ │ │ ├── mapred-site.xml │ │ │ └── yarn-site.xml │ │ ├── conf.secure │ │ │ ├── configuration.xsl │ │ │ ├── core-site.xml │ │ │ ├── hadoop-env.sh │ │ │ ├── hadoop-metrics.properties │ │ │ ├── hadoop-policy.xml │ │ │ ├── hdfs-site.xml │ │ │ ├── log4j.properties │ │ │ ├── mapred-queue-acls.xml │ │ │ ├── mapred-site.xml │ │ │ ├── masters │ │ │ ├── slaves │ │ │ └── taskcontroller.cfg │ │ ├── do-component-build │ │ ├── hadoop-fuse-dfs.1 │ │ ├── hadoop-fuse.default │ │ ├── hadoop-hdfs-datanode.service │ │ ├── hadoop-hdfs-datanode.svc │ │ ├── hadoop-hdfs-dfsrouter.service │ │ ├── hadoop-hdfs-dfsrouter.svc │ │ ├── hadoop-hdfs-journalnode.service │ │ ├── hadoop-hdfs-journalnode.svc │ │ ├── hadoop-hdfs-namenode.service │ │ ├── hadoop-hdfs-namenode.svc │ │ ├── hadoop-hdfs-secondarynamenode.service │ │ ├── hadoop-hdfs-secondarynamenode.svc │ │ ├── hadoop-hdfs-zkfc.service │ │ ├── hadoop-hdfs-zkfc.svc │ │ ├── hadoop-hdfs.tmpfile │ │ ├── hadoop-httpfs.svc │ │ ├── hadoop-kms.svc │ │ ├── hadoop-layout.sh │ │ ├── hadoop-mapreduce-historyserver.service │ │ ├── hadoop-mapreduce-historyserver.svc │ │ ├── hadoop-yarn-nodemanager.service │ │ ├── hadoop-yarn-nodemanager.svc │ │ ├── hadoop-yarn-proxyserver.service │ │ ├── hadoop-yarn-proxyserver.svc │ │ ├── hadoop-yarn-resourcemanager.service │ │ ├── hadoop-yarn-resourcemanager.svc │ │ ├── hadoop-yarn-router.service │ │ ├── hadoop-yarn-router.svc │ │ ├── hadoop-yarn-timelineserver.service │ │ ├── hadoop-yarn-timelineserver.svc │ │ ├── hadoop-yarn.tmpfile │ │ ├── hadoop.1 │ │ ├── hdfs.1 │ │ ├── hdfs.conf │ │ ├── hdfs.default │ │ ├── httpfs.default │ │ ├── init-hcfs.groovy │ │ ├── init-hcfs.json │ │ ├── init-hdfs.sh │ │ ├── install_hadoop.sh │ │ ├── kms.default │ │ ├── mapred.1 │ │ ├── mapreduce.conf │ │ ├── mapreduce.default │ │ ├── patch0-HADOOP-18867-branch-3.3.diff │ │ ├── patch1-HADOOP-19116-3.3.6.diff │ │ ├── patch10-HDFS-17754-branch-3.3.diff │ │ ├── patch2-HADOOP-18583.diff │ │ ├── patch3-fix-broken-dir-detection.diff │ │ ├── patch4-HADOOP-19551.diff │ │ ├── patch5-fix-kms-shellprofile.diff │ │ ├── patch6-fix-httpfs-sh.diff │ │ ├── patch7-remove-phantomjs-in-yarn-ui.diff │ │ ├── patch8-YARN-11528-triple-beam.diff │ │ ├── patch9-HDFS-17226.diff │ │ ├── patch9-HDFS-17287.diff │ │ ├── yarn.1 │ │ ├── yarn.conf │ │ └── yarn.default │ ├── hbase │ │ ├── do-component-build │ │ ├── hbase.1 │ │ ├── hbase.nofiles.conf │ │ ├── hbase.svc │ │ ├── install_hbase.sh │ │ ├── patch0-upgrade-maven-site-plugin.diff │ │ └── regionserver-init.d.tpl │ ├── hive │ │ ├── do-component-build │ │ ├── hive-hcatalog-server.default │ │ ├── hive-hcatalog-server.svc │ │ ├── hive-hcatalog.1 │ │ ├── hive-metastore.default │ │ ├── hive-metastore.svc │ │ ├── hive-server2.default │ │ ├── hive-server2.svc │ │ ├── hive-site.xml │ │ ├── hive-webhcat-server.default │ │ ├── hive-webhcat-server.svc │ │ ├── hive.1 │ │ ├── install_hive.sh │ │ └── patch1-add-rat-excludes.diff │ ├── kafka │ │ ├── do-component-build │ │ ├── install_kafka.sh │ │ ├── kafka-server.svc │ │ ├── kafka.default │ │ └── patch0-KAFKA-14661.diff │ ├── livy │ │ ├── do-component-build │ │ ├── install_livy.sh │ │ ├── livy-server.svc │ │ └── patch0-python-executable-version.diff │ ├── phoenix │ │ ├── do-component-build │ │ ├── install_phoenix.sh │ │ └── phoenix.default │ ├── ranger │ │ ├── do-component-build │ │ ├── install_ranger.sh │ │ ├── patch0-RANGER-4952.diff │ │ └── patch3-RANGER-3206-commit-2.diff │ ├── solr │ │ ├── do-component-build │ │ ├── install_solr.sh │ │ ├── logging.properties │ │ ├── schema.xml │ │ ├── solr-server.init.debian │ │ ├── solr.default │ │ ├── solr.in.sh │ │ ├── solrconfig.xml │ │ ├── solrctl.sh │ │ └── solrd │ ├── spark │ │ ├── LICENSE-binary │ │ ├── do-component-build │ │ ├── install_spark.sh │ │ ├── licenses-binary │ │ │ ├── LICENSE-AnchorJS.txt │ │ │ ├── LICENSE-CC0.txt │ │ │ ├── LICENSE-JLargeArrays.txt │ │ │ ├── LICENSE-JTransforms.txt │ │ │ ├── LICENSE-antlr.txt │ │ │ ├── LICENSE-arpack.txt │ │ │ ├── LICENSE-automaton.txt │ │ │ ├── LICENSE-blas.txt │ │ │ ├── LICENSE-bootstrap.txt │ │ │ ├── LICENSE-cloudpickle.txt │ │ │ ├── LICENSE-d3.min.js.txt │ │ │ ├── LICENSE-dagre-d3.txt │ │ │ ├── LICENSE-datatables.txt │ │ │ ├── LICENSE-dnsjava.txt │ │ │ ├── LICENSE-f2j.txt │ │ │ ├── LICENSE-graphlib-dot.txt │ │ │ ├── LICENSE-heapq.txt │ │ │ ├── LICENSE-istack-commons-runtime.txt │ │ │ ├── LICENSE-jakarta-annotation-api │ │ │ ├── LICENSE-jakarta-ws-rs-api │ │ │ ├── LICENSE-jakarta.activation-api.txt │ │ │ ├── LICENSE-jakarta.xml.bind-api.txt │ │ │ ├── LICENSE-janino.txt │ │ │ ├── LICENSE-javassist.html │ │ │ ├── LICENSE-javax-transaction-transaction-api.txt │ │ │ ├── LICENSE-javolution.txt │ │ │ ├── LICENSE-jaxb-runtime.txt │ │ │ ├── LICENSE-jline.txt │ │ │ ├── LICENSE-jodd.txt │ │ │ ├── LICENSE-join.txt │ │ │ ├── LICENSE-jquery.txt │ │ │ ├── LICENSE-json-formatter.txt │ │ │ ├── LICENSE-jsp-api.txt │ │ │ ├── LICENSE-kryo.txt │ │ │ ├── LICENSE-leveldbjni.txt │ │ │ ├── LICENSE-machinist.txt │ │ │ ├── LICENSE-matchMedia-polyfill.txt │ │ │ ├── LICENSE-minlog.txt │ │ │ ├── LICENSE-modernizr.txt │ │ │ ├── LICENSE-mustache.txt │ │ │ ├── LICENSE-netlib.txt │ │ │ ├── LICENSE-paranamer.txt │ │ │ ├── LICENSE-pmml-model.txt │ │ │ ├── LICENSE-protobuf.txt │ │ │ ├── LICENSE-py4j.txt │ │ │ ├── LICENSE-pyrolite.txt │ │ │ ├── LICENSE-re2j.txt │ │ │ ├── LICENSE-reflectasm.txt │ │ │ ├── LICENSE-respond.txt │ │ │ ├── LICENSE-sbt-launch-lib.txt │ │ │ ├── LICENSE-scala.txt │ │ │ ├── LICENSE-scopt.txt │ │ │ ├── LICENSE-slf4j.txt │ │ │ ├── LICENSE-sorttable.js.txt │ │ │ ├── LICENSE-spire.txt │ │ │ ├── LICENSE-vis-timeline.txt │ │ │ ├── LICENSE-xmlenc.txt │ │ │ ├── LICENSE-zstd-jni.txt │ │ │ └── LICENSE-zstd.txt │ │ ├── patch0-SPARK-41063.diff │ │ ├── spark-env.sh │ │ ├── spark-history-server.svc │ │ ├── spark-master.svc │ │ ├── spark-thriftserver.svc │ │ └── spark-worker.svc │ ├── tez │ │ ├── do-component-build │ │ ├── install_tez.sh │ │ ├── patch0-remove-phantomjs.diff │ │ ├── tez-site.xml │ │ └── tez.1 │ ├── zeppelin │ │ ├── do-component-build │ │ ├── install_zeppelin.sh │ │ ├── patch2-remove-phantomjs-prebuilt-and-karma-arm64.diff │ │ ├── zeppelin-env.sh │ │ └── zeppelin.svc │ └── zookeeper │ │ ├── do-component-build │ │ ├── install_zookeeper.sh │ │ ├── zoo.cfg │ │ ├── zookeeper-rest.svc │ │ ├── zookeeper-server.service │ │ ├── zookeeper-server.sh │ │ ├── zookeeper-server.tmpfile │ │ ├── zookeeper.1 │ │ └── zookeeper.default │ ├── deb │ ├── alluxio │ │ ├── alluxio.dirs │ │ ├── alluxio.install │ │ ├── alluxio.postinst │ │ ├── alluxio.preinst │ │ ├── alluxio.prerm │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── bigtop-groovy │ │ ├── bigtop-groovy.install │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── bigtop-jsvc │ │ ├── bigtop-jsvc.install │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── bigtop-utils │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── flink │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── flink-jobmanager.postinst │ │ ├── flink-jobmanager.preinst │ │ ├── flink-jobmanager.prerm │ │ ├── flink-taskmanager.postinst │ │ ├── flink-taskmanager.preinst │ │ ├── flink-taskmanager.prerm │ │ ├── flink.dirs │ │ ├── flink.install │ │ ├── flink.postinst │ │ ├── flink.preinst │ │ ├── flink.prerm │ │ ├── rules │ │ ├── rules.orig │ │ └── source │ │ │ └── format │ ├── hadoop │ │ ├── append_licenses.sh │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── dirs │ │ ├── hadoop-client.install │ │ ├── hadoop-conf-pseudo.install │ │ ├── hadoop-conf-pseudo.lintian-overrides │ │ ├── hadoop-conf-pseudo.postinst │ │ ├── hadoop-conf-pseudo.prerm │ │ ├── hadoop-doc.dirs │ │ ├── hadoop-doc.install │ │ ├── hadoop-doc.lintian-overrides │ │ ├── hadoop-hdfs-fuse.dirs │ │ ├── hadoop-hdfs-fuse.install │ │ ├── hadoop-hdfs-fuse.lintian-overrides │ │ ├── hadoop-hdfs-fuse.manpages │ │ ├── hadoop-hdfs.dirs │ │ ├── hadoop-hdfs.install │ │ ├── hadoop-hdfs.postinst │ │ ├── hadoop-hdfs.preinst │ │ ├── hadoop-httpfs.dirs │ │ ├── hadoop-httpfs.install │ │ ├── hadoop-httpfs.postinst │ │ ├── hadoop-httpfs.preinst │ │ ├── hadoop-httpfs.prerm │ │ ├── hadoop-kms.dirs │ │ ├── hadoop-kms.install │ │ ├── hadoop-kms.postinst │ │ ├── hadoop-kms.preinst │ │ ├── hadoop-kms.prerm │ │ ├── hadoop-mapreduce.dirs │ │ ├── hadoop-mapreduce.install │ │ ├── hadoop-mapreduce.postinst │ │ ├── hadoop-mapreduce.preinst │ │ ├── hadoop-native.lintian-overrides │ │ ├── hadoop-yarn.dirs │ │ ├── hadoop-yarn.install │ │ ├── hadoop-yarn.postinst │ │ ├── hadoop-yarn.preinst │ │ ├── hadoop.daemon.postinst.tpl │ │ ├── hadoop.dirs │ │ ├── hadoop.install │ │ ├── hadoop.lintian-overrides │ │ ├── hadoop.manpages │ │ ├── hadoop.postinst │ │ ├── hadoop.preinst │ │ ├── hadoop.prerm │ │ ├── libhdfs0-dev.install │ │ ├── libhdfs0.dirs │ │ ├── libhdfs0.install │ │ ├── libhdfspp-dev.dirs │ │ ├── libhdfspp-dev.install │ │ ├── libhdfspp.dirs │ │ ├── libhdfspp.install │ │ ├── rules │ │ ├── shlibs.local │ │ ├── source.lintian-overrides │ │ └── source │ │ │ └── format │ ├── hbase │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── hbase-doc.dirs │ │ ├── hbase-doc.install │ │ ├── hbase.dirs │ │ ├── hbase.install │ │ ├── hbase.manpages │ │ ├── hbase.postinst │ │ ├── hbase.preinst │ │ ├── hbase.prerm │ │ ├── install_init_scripts.sh │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── hive │ │ ├── build-hive-install-file.sh │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── hive-hbase.install │ │ ├── hive-hcatalog.dirs │ │ ├── hive-hcatalog.install │ │ ├── hive-hcatalog.postinst │ │ ├── hive-hcatalog.prerm │ │ ├── hive-jdbc.install │ │ ├── hive-webhcat.install │ │ ├── hive-webhcat.postinst │ │ ├── hive-webhcat.prerm │ │ ├── hive.dirs │ │ ├── hive.install.include │ │ ├── hive.postinst │ │ ├── hive.preinst │ │ ├── hive.prerm │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── kafka │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── kafka-server.postinst │ │ ├── kafka-server.postrm │ │ ├── kafka.postinst │ │ ├── kafka.preinst │ │ ├── kafka.prerm │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── livy │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── livy.dirs │ │ ├── livy.install │ │ ├── livy.postinst │ │ ├── livy.preinst │ │ ├── livy.prerm │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── phoenix │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── phoenix.install │ │ ├── phoenix.postinst │ │ ├── phoenix.preinst │ │ ├── phoenix.prerm │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── ranger │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── ranger.postinst.tpl │ │ ├── ranger.preinst.tpl │ │ ├── ranger.prerm.tpl │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── solr │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── solr-doc.install │ │ ├── solr-server.install │ │ ├── solr-server.postinst │ │ ├── solr.install │ │ ├── solr.postinst │ │ ├── solr.preinst │ │ ├── solr.prerm │ │ └── source │ │ │ └── format │ ├── spark │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ ├── spark-core.install │ │ ├── spark-core.postinst │ │ ├── spark-core.preinst │ │ ├── spark-core.prerm │ │ ├── spark-datanucleus.install │ │ ├── spark-external.install │ │ ├── spark-python.install │ │ ├── spark-sparkr.install │ │ └── spark-yarn-shuffle.install │ ├── tez │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ ├── tez.install │ │ ├── tez.postinst │ │ ├── tez.preinst │ │ └── tez.prerm │ ├── zeppelin │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ ├── zeppelin.dirs │ │ ├── zeppelin.install │ │ ├── zeppelin.postinst │ │ ├── zeppelin.preinst │ │ └── zeppelin.prerm │ └── zookeeper │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ ├── source │ │ └── format │ │ ├── zookeeper.postinst │ │ ├── zookeeper.preinst │ │ └── zookeeper.prerm │ ├── extensions │ └── aws-maven.xml │ ├── rpm │ ├── alluxio │ │ └── SPECS │ │ │ └── alluxio.spec │ ├── bigtop-groovy │ │ └── SPECS │ │ │ ├── .gitignore │ │ │ └── bigtop-groovy.spec │ ├── bigtop-jsvc │ │ ├── .gitignore │ │ ├── RPMS │ │ │ └── .gitignore │ │ ├── SPECS │ │ │ ├── .gitignore │ │ │ └── bigtop-jsvc.spec │ │ └── SRPMS │ │ │ └── .gitignore │ ├── bigtop-select │ │ ├── RPMS │ │ │ └── .gitignore │ │ └── SPECS │ │ │ ├── .gitignore │ │ │ └── bigtop-select.spec │ ├── bigtop-utils │ │ ├── RPMS │ │ │ └── .gitignore │ │ └── SPECS │ │ │ ├── .gitignore │ │ │ └── bigtop-utils.spec │ ├── flink │ │ └── SPECS │ │ │ └── flink.spec │ ├── hadoop │ │ ├── RPMS │ │ │ └── .gitignore │ │ ├── SOURCES │ │ │ └── .gitignore │ │ └── SPECS │ │ │ ├── .gitignore │ │ │ └── hadoop.spec │ ├── hbase │ │ ├── RPMS │ │ │ └── .gitignore │ │ ├── SOURCES │ │ │ └── .gitignore │ │ ├── SPECS │ │ │ ├── .gitignore │ │ │ └── hbase.spec │ │ └── SRPMS │ │ │ └── .gitignore │ ├── hive │ │ ├── RPMS │ │ │ └── .gitignore │ │ └── SPECS │ │ │ ├── .gitignore │ │ │ └── hive.spec │ ├── kafka │ │ └── SPECS │ │ │ └── kafka.spec │ ├── livy │ │ └── SPECS │ │ │ └── livy.spec │ ├── phoenix │ │ ├── RPMS │ │ │ └── .gitignore │ │ ├── SOURCES │ │ │ └── .gitignore │ │ ├── SPECS │ │ │ ├── .gitignore │ │ │ └── phoenix.spec │ │ └── SRPMS │ │ │ └── .gitignore │ ├── ranger │ │ └── SPECS │ │ │ └── ranger.spec │ ├── solr │ │ ├── BUILD │ │ │ └── .gitignore │ │ ├── RPMS │ │ │ └── .gitignore │ │ ├── SOURCES │ │ │ ├── .gitignore │ │ │ └── solr-server.init │ │ ├── SPECS │ │ │ └── solr.spec │ │ └── SRPMS │ │ │ └── .gitignore │ ├── spark │ │ ├── BUILD │ │ │ └── .gitignore │ │ ├── RPMS │ │ │ └── .gitignore │ │ ├── SOURCES │ │ │ └── .gitignore │ │ ├── SPECS │ │ │ └── spark.spec │ │ └── SRPMS │ │ │ └── .gitignore │ ├── tez │ │ ├── RPMS │ │ │ └── .gitignore │ │ └── SPECS │ │ │ └── tez.spec │ ├── zeppelin │ │ └── SPECS │ │ │ └── zeppelin.spec │ └── zookeeper │ │ ├── .gitignore │ │ ├── RPMS │ │ └── .gitignore │ │ ├── SPECS │ │ ├── .gitignore │ │ └── zookeeper.spec │ │ └── SRPMS │ │ └── .gitignore │ ├── scripts │ └── maven_deploy.sh │ └── templates │ └── init.d.tmpl ├── bigtop-test-framework ├── README ├── pom.xml └── src │ ├── main │ └── groovy │ │ └── org │ │ └── apache │ │ └── bigtop │ │ └── itest │ │ ├── Contract.java │ │ ├── JUnitUtils.groovy │ │ ├── JarContent.groovy │ │ ├── LogErrorsUtils.groovy │ │ ├── ParameterSetter.java │ │ ├── Property.java │ │ ├── TestListUtils.groovy │ │ ├── TestUtils.groovy │ │ ├── Variable.java │ │ ├── failures │ │ ├── AbstractFailure.groovy │ │ ├── FailureConstants.groovy │ │ ├── FailureExecutor.groovy │ │ ├── FailureVars.groovy │ │ ├── NetworkShutdownFailure.groovy │ │ ├── ServiceKilledFailure.groovy │ │ └── ServiceRestartFailure.groovy │ │ ├── junit │ │ ├── Ordered.java │ │ └── OrderedParameterized.java │ │ ├── pmanager │ │ ├── AptCmdLinePackageManager.groovy │ │ ├── DEBPackage.groovy │ │ ├── ManagedPackage.groovy │ │ ├── PackageInstance.groovy │ │ ├── PackageManager.groovy │ │ ├── RPMPackage.groovy │ │ ├── UrpmiCmdLinePackageManager.groovy │ │ ├── YumCmdLinePackageManager.groovy │ │ └── ZypperCmdLinePackageManager.groovy │ │ ├── posix │ │ ├── Alternative.groovy │ │ ├── Service.groovy │ │ └── UGI.groovy │ │ └── shell │ │ ├── JUnitShell.groovy │ │ ├── OS.groovy │ │ └── Shell.groovy │ └── test │ └── groovy │ └── org │ └── apache │ └── bigtop │ └── itest │ ├── DummyTestError.groovy │ ├── DummyTestFail.groovy │ ├── DummyTestPass.groovy │ ├── JUnitUtilsTest.groovy │ ├── JarContentTest.groovy │ ├── TestContractGroovy.groovy │ ├── TestContractJava.java │ ├── TestContractJavaProc.java │ ├── TestListUtilsTest.groovy │ ├── failures │ └── IntegrationTestClusterFailures.groovy │ ├── junit │ ├── OrderedParameterizedTest.groovy │ └── OrderedTest.groovy │ ├── pmanager │ └── PackageManagerTest.groovy │ ├── posix │ ├── AlternativeTest.groovy │ ├── ServiceTest.groovy │ └── UGITest.groovy │ └── shell │ └── ShellTest.groovy ├── bigtop-tests ├── build.gradle ├── cloud-weather-report │ ├── README.md │ └── hadoop-processing.yaml ├── smoke-tests │ ├── README │ ├── alluxio │ │ ├── TestAlluxioSmoke.groovy │ │ ├── build.gradle │ │ ├── datafile │ │ └── log4j.properties │ ├── build.gradle │ ├── flink │ │ ├── TestFlink.groovy │ │ ├── build.gradle │ │ └── test.data │ ├── hbase │ │ └── build.gradle │ ├── hcfs │ │ └── build.gradle │ ├── hdfs │ │ └── build.gradle │ ├── hive │ │ ├── TestHiveSimple.groovy │ │ ├── build.gradle │ │ ├── log4j.properties │ │ └── passwd.ql │ ├── kafka │ │ ├── TestKafkaSmoke.groovy │ │ └── build.gradle │ ├── kms │ │ └── build.gradle │ ├── livy │ │ ├── TestLivy.groovy │ │ └── build.gradle │ ├── logger-test-config │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── log4j.properties │ ├── mapreduce │ │ └── build.gradle │ ├── phoenix │ │ ├── TestPhoenixQueryServer.groovy │ │ ├── TestPhoenixSimple.groovy │ │ ├── build.gradle │ │ ├── log4j.properties │ │ ├── smoke-test-teardown.sql │ │ └── smoke-test.sql │ ├── ranger │ │ ├── TestRangerSimple.groovy │ │ └── build.gradle │ ├── run_itest.sh │ ├── solr │ │ ├── build.gradle │ │ ├── delete.xml │ │ ├── indexing.json │ │ └── simple.xml │ ├── spark │ │ ├── TestSpark.groovy │ │ └── build.gradle │ ├── tez │ │ ├── TestTezSmoke.groovy │ │ └── build.gradle │ ├── yarn │ │ └── build.gradle │ ├── zeppelin │ │ ├── TestZeppelinSmoke.groovy │ │ └── build.gradle │ └── zookeeper │ │ ├── TestZookeeper.groovy │ │ └── build.gradle ├── test-artifacts │ ├── README │ ├── fatjar │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── log4j.properties │ ├── hadoop │ │ ├── README │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── groovy │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── bigtop │ │ │ │ └── itest │ │ │ │ └── hadoop │ │ │ │ ├── hcfs │ │ │ │ ├── FSCmdExecutor.java │ │ │ │ ├── TestCLI.java │ │ │ │ └── TestFuseHCFS.groovy │ │ │ │ ├── hdfs │ │ │ │ ├── TestBlockRecovery.groovy │ │ │ │ ├── TestChgrp.groovy │ │ │ │ ├── TestCmdTest.groovy │ │ │ │ ├── TestCmdText.groovy │ │ │ │ ├── TestCount.groovy │ │ │ │ ├── TestCp.groovy │ │ │ │ ├── TestDFSAdmin.groovy │ │ │ │ ├── TestDFSCLI.java │ │ │ │ ├── TestDistCpIntra.groovy │ │ │ │ ├── TestDu.groovy │ │ │ │ ├── TestFileAppend.groovy │ │ │ │ ├── TestFsck.groovy │ │ │ │ ├── TestGet.groovy │ │ │ │ ├── TestHDFSBalancer.groovy │ │ │ │ ├── TestHDFSCLI.java │ │ │ │ ├── TestHDFSQuota.groovy │ │ │ │ ├── TestLs.groovy │ │ │ │ ├── TestMkdir.groovy │ │ │ │ ├── TestMv.groovy │ │ │ │ ├── TestPut.groovy │ │ │ │ ├── TestStat.groovy │ │ │ │ ├── TestTextSnappy.groovy │ │ │ │ ├── TestTouchz.groovy │ │ │ │ └── TestWebHDFS.groovy │ │ │ │ ├── kms │ │ │ │ └── TestKms.groovy │ │ │ │ ├── mapreduce │ │ │ │ ├── TestHadoopExamples.groovy │ │ │ │ └── TestHadoopSmoke.groovy │ │ │ │ └── yarn │ │ │ │ ├── TestNode.groovy │ │ │ │ └── TestRmAdmin.groovy │ │ │ └── resources │ │ │ ├── cachedir.jar │ │ │ ├── clitest_data │ │ │ ├── data120bytes │ │ │ ├── data15bytes │ │ │ ├── data1k │ │ │ ├── data30bytes │ │ │ ├── data60bytes │ │ │ ├── testDFSConf.xml │ │ │ ├── testHCFSConf.xml │ │ │ └── testHDFSConf.xml │ │ │ ├── examples │ │ │ ├── ints │ │ │ │ ├── file1.txt │ │ │ │ └── file2.txt │ │ │ └── text │ │ │ │ ├── pg11.txt │ │ │ │ └── pg2265.txt │ │ │ ├── input.txt │ │ │ ├── map.sh │ │ │ ├── part-00001.snappy │ │ │ └── test_data │ │ │ ├── test.zip │ │ │ ├── test_1.txt │ │ │ ├── test_2.txt │ │ │ └── test_3 │ ├── hbase │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── groovy │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── bigtop │ │ │ │ └── itest │ │ │ │ └── hbase │ │ │ │ ├── smoke │ │ │ │ ├── IncrementalPELoad.java │ │ │ │ ├── TestCopyTable.java │ │ │ │ ├── TestHBaseBalancer.groovy │ │ │ │ ├── TestHBaseCompression.groovy │ │ │ │ ├── TestHBaseImportExport.groovy │ │ │ │ ├── TestHBasePigSmoke.groovy │ │ │ │ ├── TestHBaseSmoke.java │ │ │ │ ├── TestHFileOutputFormat.java │ │ │ │ ├── TestHbck.groovy │ │ │ │ ├── TestImportTsv.groovy │ │ │ │ └── TestLoadIncrementalHFiles.java │ │ │ │ ├── system │ │ │ │ ├── Putter.java │ │ │ │ ├── Scanner.java │ │ │ │ ├── TestConcurrentScanAndPut.java │ │ │ │ ├── TestLoadAndVerify.java │ │ │ │ └── TestRegionMover.java │ │ │ │ └── util │ │ │ │ └── HBaseTestUtil.java │ │ │ └── resources │ │ │ ├── movies.psv │ │ │ └── movies.tsv │ ├── hcatalog │ │ ├── README │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── groovy │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── bigtop │ │ │ │ └── itest │ │ │ │ └── hcatalogsmoke │ │ │ │ └── TestHcatalogBasic.groovy │ │ │ └── resources │ │ │ ├── data │ │ │ ├── data-2013-01-01.txt │ │ │ └── data-2013-01-02.txt │ │ │ ├── hcat_basic_count.expected │ │ │ ├── hcat_basic_describe.expected │ │ │ └── hcat_basic_partitions.expected │ ├── httpfs │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── groovy │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── bigtop │ │ │ │ └── itest │ │ │ │ └── httpfs │ │ │ │ └── TestHttpFs.groovy │ │ │ └── resources │ │ │ └── text-files │ │ │ └── helloworld.txt │ ├── longevity │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── groovy │ │ │ └── org │ │ │ └── apache │ │ │ └── bigtop │ │ │ └── itest │ │ │ └── iolongevity │ │ │ ├── .gitignore │ │ │ ├── TestDFSIO.groovy │ │ │ └── TestSLive.groovy │ ├── package │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── groovy │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── bigtop │ │ │ │ └── itest │ │ │ │ └── packagesmoke │ │ │ │ ├── BTServices.groovy │ │ │ │ ├── PackageTestCommon.groovy │ │ │ │ ├── PackageTestErrorProxy.java │ │ │ │ ├── PackageTestMatchers.java │ │ │ │ ├── PackageTestRepoMgr.groovy │ │ │ │ ├── StateVerifier.groovy │ │ │ │ ├── StateVerifierHBase.groovy │ │ │ │ ├── StateVerifierHDFS.groovy │ │ │ │ ├── StateVerifierHive.groovy │ │ │ │ ├── StateVerifierMapreduce.groovy │ │ │ │ ├── StateVerifierZookeeper.groovy │ │ │ │ ├── TestPackagesBasics.groovy │ │ │ │ ├── TestPackagesBasicsWithRM.groovy │ │ │ │ ├── TestPackagesPseudoDistributed.groovy │ │ │ │ ├── TestPackagesPseudoDistributedDependency.groovy │ │ │ │ ├── TestPackagesPseudoDistributedFileContents.groovy │ │ │ │ ├── TestPackagesPseudoDistributedServices.groovy │ │ │ │ ├── TestPackagesPseudoDistributedState.groovy │ │ │ │ ├── TestPackagesPseudoDistributedUpgrade.groovy │ │ │ │ ├── TestPackagesPseudoDistributedWithRM.groovy │ │ │ │ ├── TestServices.groovy │ │ │ │ ├── TestServicesCreateState.groovy │ │ │ │ ├── TestServicesCreateStateMissing.groovy │ │ │ │ └── TestServicesVerifyState.groovy │ │ │ └── resources │ │ │ ├── apt │ │ │ ├── bigtop-jsvc.xml │ │ │ ├── bigtop-utils.xml │ │ │ ├── hadoop-client.xml │ │ │ ├── hadoop-conf-pseudo.xml │ │ │ ├── hadoop-datanode.xml │ │ │ ├── hadoop-doc.xml │ │ │ ├── hadoop-hdfs-datanode.xml │ │ │ ├── hadoop-hdfs-fuse.xml │ │ │ ├── hadoop-hdfs-namenode.xml │ │ │ ├── hadoop-hdfs-secondarynamenode.xml │ │ │ ├── hadoop-hdfs-zkfc.xml │ │ │ ├── hadoop-hdfs.xml │ │ │ ├── hadoop-httpfs.xml │ │ │ ├── hadoop-jobtracker.xml │ │ │ ├── hadoop-mapreduce-historyserver.xml │ │ │ ├── hadoop-mapreduce.xml │ │ │ ├── hadoop-namenode.xml │ │ │ ├── hadoop-native.xml │ │ │ ├── hadoop-pipes.xml │ │ │ ├── hadoop-secondarynamenode.xml │ │ │ ├── hadoop-source.xml │ │ │ ├── hadoop-tasktracker.xml │ │ │ ├── hadoop-yarn-nodemanager.xml │ │ │ ├── hadoop-yarn-proxyserver.xml │ │ │ ├── hadoop-yarn-resourcemanager.xml │ │ │ ├── hadoop-yarn.xml │ │ │ ├── hadoop.xml │ │ │ ├── hbase-doc.xml │ │ │ ├── hbase-master.xml │ │ │ ├── hbase-regionserver.xml │ │ │ ├── hbase-rest.xml │ │ │ ├── hbase-thrift.xml │ │ │ ├── hbase.xml │ │ │ ├── hive-jdbc.xml │ │ │ ├── hive-metastore.xml │ │ │ ├── hive-server.xml │ │ │ ├── hive.xml │ │ │ ├── libhdfs0-dev.xml │ │ │ ├── libhdfs0.xml │ │ │ ├── package_data.xml │ │ │ ├── solr-doc.xml │ │ │ ├── solr-server.xml │ │ │ ├── solr.xml │ │ │ ├── zookeeper-server.xml │ │ │ └── zookeeper.xml │ │ │ ├── package_data.xml │ │ │ ├── urpmi │ │ │ ├── bigtop-jsvc.xml │ │ │ ├── hadoop-client.xml │ │ │ ├── hadoop-hdfs-fuse.xml │ │ │ ├── hadoop-hdfs-zkfc.xml │ │ │ ├── hadoop-libhdfs.xml │ │ │ ├── hbase-rest.xml │ │ │ └── package_data.xml │ │ │ ├── yum │ │ │ ├── bigtop-jsvc.xml │ │ │ ├── bigtop-utils.xml │ │ │ ├── hadoop-client.xml │ │ │ ├── hadoop-conf-pseudo.xml │ │ │ ├── hadoop-datanode.xml │ │ │ ├── hadoop-debuginfo.xml │ │ │ ├── hadoop-doc.xml │ │ │ ├── hadoop-hdfs-datanode.xml │ │ │ ├── hadoop-hdfs-fuse.xml │ │ │ ├── hadoop-hdfs-namenode.xml │ │ │ ├── hadoop-hdfs-secondarynamenode.xml │ │ │ ├── hadoop-hdfs-zkfc.xml │ │ │ ├── hadoop-hdfs.xml │ │ │ ├── hadoop-httpfs.xml │ │ │ ├── hadoop-jobtracker.xml │ │ │ ├── hadoop-libhdfs.xml │ │ │ ├── hadoop-mapreduce-historyserver.xml │ │ │ ├── hadoop-mapreduce.xml │ │ │ ├── hadoop-namenode.xml │ │ │ ├── hadoop-native.xml │ │ │ ├── hadoop-pipes.xml │ │ │ ├── hadoop-secondarynamenode.xml │ │ │ ├── hadoop-source.xml │ │ │ ├── hadoop-tasktracker.xml │ │ │ ├── hadoop-yarn-nodemanager.xml │ │ │ ├── hadoop-yarn-proxyserver.xml │ │ │ ├── hadoop-yarn-resourcemanager.xml │ │ │ ├── hadoop-yarn.xml │ │ │ ├── hadoop.xml │ │ │ ├── hbase-doc.xml │ │ │ ├── hbase-master.xml │ │ │ ├── hbase-regionserver.xml │ │ │ ├── hbase-rest.xml │ │ │ ├── hbase-thrift.xml │ │ │ ├── hbase.xml │ │ │ ├── hive-jdbc.xml │ │ │ ├── hive-metastore.xml │ │ │ ├── hive-server.xml │ │ │ ├── hive.xml │ │ │ ├── package_data.xml │ │ │ ├── solr-doc.xml │ │ │ ├── solr-server.xml │ │ │ ├── solr.xml │ │ │ ├── zookeeper-server.xml │ │ │ └── zookeeper.xml │ │ │ └── zypper │ │ │ ├── bigtop-jsvc.xml │ │ │ ├── bigtop-utils.xml │ │ │ ├── hadoop-client.xml │ │ │ ├── hadoop-conf-pseudo.xml │ │ │ ├── hadoop-datanode.xml │ │ │ ├── hadoop-doc.xml │ │ │ ├── hadoop-hdfs-datanode.xml │ │ │ ├── hadoop-hdfs-fuse.xml │ │ │ ├── hadoop-hdfs-namenode.xml │ │ │ ├── hadoop-hdfs-secondarynamenode.xml │ │ │ ├── hadoop-hdfs-zkfc.xml │ │ │ ├── hadoop-hdfs.xml │ │ │ ├── hadoop-httpfs.xml │ │ │ ├── hadoop-jobtracker.xml │ │ │ ├── hadoop-libhdfs.xml │ │ │ ├── hadoop-mapreduce-historyserver.xml │ │ │ ├── hadoop-mapreduce.xml │ │ │ ├── hadoop-namenode.xml │ │ │ ├── hadoop-native.xml │ │ │ ├── hadoop-pipes.xml │ │ │ ├── hadoop-secondarynamenode.xml │ │ │ ├── hadoop-source.xml │ │ │ ├── hadoop-tasktracker.xml │ │ │ ├── hadoop-yarn-nodemanager.xml │ │ │ ├── hadoop-yarn-proxyserver.xml │ │ │ ├── hadoop-yarn-resourcemanager.xml │ │ │ ├── hadoop-yarn.xml │ │ │ ├── hadoop.xml │ │ │ ├── hbase-doc.xml │ │ │ ├── hbase-master.xml │ │ │ ├── hbase-regionserver.xml │ │ │ ├── hbase-rest.xml │ │ │ ├── hbase-thrift.xml │ │ │ ├── hbase.xml │ │ │ ├── hive-jdbc.xml │ │ │ ├── hive-metastore.xml │ │ │ ├── hive-server.xml │ │ │ ├── hive.xml │ │ │ ├── package_data.xml │ │ │ ├── solr-doc.xml │ │ │ ├── solr-server.xml │ │ │ ├── solr.xml │ │ │ ├── zookeeper-server.xml │ │ │ └── zookeeper.xml │ ├── phoenix │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── groovy │ │ │ └── org │ │ │ └── apache │ │ │ └── bigtop │ │ │ └── itest │ │ │ └── phoenix │ │ │ └── smoke │ │ │ └── TestPhoenixSmoke.groovy │ ├── pom.xml │ ├── solr │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── groovy │ │ │ └── org │ │ │ └── apache │ │ │ └── bigtop │ │ │ └── itest │ │ │ └── solr │ │ │ └── smoke │ │ │ ├── SolrTestBase.groovy │ │ │ ├── TestIndexing.groovy │ │ │ ├── TestIndexingSolrJ.groovy │ │ │ ├── TestPing.groovy │ │ │ ├── TestSimple.groovy │ │ │ └── TestStatistics.groovy │ └── spark │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── groovy │ │ └── org │ │ │ └── apache │ │ │ └── bigtop │ │ │ └── itest │ │ │ └── spark │ │ │ ├── TestSparkExample.groovy │ │ │ └── TestSparkSmoke.groovy │ │ └── resources │ │ └── kmeans_data.txt └── test-execution │ ├── README │ ├── common │ └── pom.xml │ ├── conf │ ├── log4j.configuration │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── org.apache.bigtop.itest.log4j.configuration │ ├── integration │ └── pom.xml │ ├── longevity │ ├── io │ │ └── pom.xml │ └── pom.xml │ ├── package │ └── pom.xml │ ├── pom.xml │ └── smokes │ ├── hadoop │ └── pom.xml │ ├── hbase │ └── pom.xml │ ├── hcatalog │ └── pom.xml │ ├── httpfs │ └── pom.xml │ ├── phoenix │ └── pom.xml │ ├── pom.xml │ ├── solr │ └── pom.xml │ └── spark │ └── pom.xml ├── bigtop.bom ├── bigtop_toolchain ├── README.md ├── bin │ └── puppetize.sh ├── files │ ├── 0001-Backport-atomic-operations-with-support-of-arm64-and.patch │ ├── 0001-CVE-2021-22569-Improve-performance-of-parsing-unknow.patch │ └── grpc-java-1.28.0-add-support-for-ppc64le.patch ├── lib │ └── puppet │ │ └── parser │ │ └── functions │ │ ├── latest_ant_binary.rb │ │ ├── latest_maven_binary.rb │ │ └── nearest_apache_mirror.rb ├── manifests │ ├── ant.pp │ ├── cleanup.pp │ ├── development_tools.pp │ ├── env.pp │ ├── gnupg.pp │ ├── gradle.pp │ ├── groovy.pp │ ├── grpc.pp │ ├── installer.pp │ ├── isal.pp │ ├── jdk.pp │ ├── jdk11.pp │ ├── maven.pp │ ├── packages.pp │ ├── protobuf.pp │ ├── puppet_modules.pp │ ├── puppet_modules_prereq.pp │ ├── python.pp │ ├── renv.pp │ └── user.pp └── templates │ └── jenkins.sh ├── build.gradle ├── docker ├── bigtop-puppet │ └── build.sh ├── bigtop-slaves │ ├── Dockerfile.template │ └── build.sh └── pseudo-cluster │ ├── Dockerfile │ └── config │ ├── configure.sh │ └── hieradata │ └── site.yaml ├── docs └── logo.jpg ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── gradlew ├── packages.gradle ├── pom.xml ├── provisioner ├── docker │ ├── .gitignore │ ├── README.md │ ├── config.yaml │ ├── config_debian-11.yaml │ ├── config_debian-12.yaml │ ├── config_fedora-40.yaml │ ├── config_openeuler-22.03.yaml │ ├── config_rockylinux-8.yaml │ ├── config_rockylinux-9.yaml │ ├── config_ubuntu-22.04.yaml │ ├── config_ubuntu-24.04.yaml │ ├── docker-compose-cgroupv2.yml │ ├── docker-compose.yml │ └── docker-hadoop.sh └── utils │ ├── setup-env-centos.sh │ ├── setup-env-debian.sh │ └── smoke-tests.sh ├── release.gradle ├── settings.gradle ├── src ├── assembly │ └── release-assembly.xml └── site │ ├── resources │ ├── bigtop.rdf │ ├── css │ │ ├── freebsd_docbook.css │ │ └── site.css │ └── images │ │ ├── apache-incubator-logo.png │ │ ├── bigtop-logo.ai │ │ └── bigtop-logo.png │ ├── site.xml │ └── xdoc │ ├── download.xml │ ├── index.xml │ ├── irc-channel.xml │ ├── issue-tracking.xml │ ├── mail-lists.xml │ ├── release-notes.xml │ └── team-list.xml └── test ├── MANIFEST.txt ├── NOTICE.txt └── site ├── pom.xml └── src └── site ├── apt ├── devguide.apt ├── downloads.apt ├── examples.apt ├── index.apt ├── itest.apt └── userguide.apt ├── fml └── faq.fml ├── resources └── images │ ├── banner.png │ └── itest.png └── site.xml /.dockerignore: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | build 17 | output 18 | dl 19 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | ### Description of PR 8 | 9 | 10 | ### How was this patch tested? 11 | 12 | 13 | ### For code changes: 14 | 15 | - [ ] Does the title or this PR starts with the corresponding JIRA issue id (e.g. 'BIGTOP-3638. Your PR title ...')? 16 | - [ ] Make sure that newly added files do not have any licensing issues. When in doubt refer to https://www.apache.org/licenses/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dl 3 | dist 4 | output 5 | target 6 | *~ 7 | *.project 8 | *.settings 9 | *.classpath 10 | *.iml 11 | .idea 12 | .gradle 13 | gradle* 14 | .vagrant 15 | .DS_Store 16 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | language: java 17 | 18 | install: 19 | - mvn clean install -DskipTests -DskipITs 20 | 21 | script: 22 | - mvn test -B 23 | 24 | arch: 25 | - ppc64le 26 | -------------------------------------------------------------------------------- /MAINTAINERS.txt: -------------------------------------------------------------------------------- 1 | alluxio: jay vyas, huamin chen 2 | apex: chinmay , aniruddha 3 | bigpetstore: jay vyas, rj nowling 4 | CI infra: rvs 5 | data generators: rj nowling, jay vyas 6 | flink: rmetzger, mbalassi 7 | flume: bmahe 8 | gradle / build system: cos, rvs 9 | ignite-hadoop: cos, Sergey Vladykin 10 | hadoop: mark grover, cos, rvs 11 | hama: minho kim , edward j. yoon 12 | hbase: andrew purtell, rvs 13 | hive: mark grover, youngwoo kim 14 | itest: cos, rvs 15 | mvn publishing/packaging: rvs 16 | oozie evans ye, rvs 17 | phoenix: andrew purtell, youngwoo kim 18 | pig: evans ye, daniel dai 19 | puppet recipes: jay vyas, cos, evans ye, rvs 20 | qfs: kstinson 21 | smoke-tests: jay vyas, david capwell 22 | spark: jay vyas, youngwoo kim 23 | tajo: yeongeon kim 24 | test-artifacts and test-execution repos: 25 | tez: evans ye, oflebbe 26 | ycsb: youngwoo kim 27 | zookeeper: sean mackrory, rvs 28 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Apache Bigtop 2 | Copyright 2014, The Apache Software Foundation 3 | Portions Copyright 2015-2016 Canonical Ltd. 4 | 5 | This product includes software developed at 6 | The Apache Software Foundation (http://www.apache.org/). 7 | 8 | In addition, this product includes files licensed under: 9 | 10 | * The FreeBSD Documentation License 11 | https://www.freebsd.org/copyright/freebsd-doc-license.html 12 | 13 | * The MIT License 14 | https://opensource.org/licenses/MIT 15 | -------------------------------------------------------------------------------- /bigtop-bigpetstore/bigpetstore-spark/settings.gradle: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | -------------------------------------------------------------------------------- /bigtop-bigpetstore/bigpetstore-transaction-queue/.dockerignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .settings 3 | build -------------------------------------------------------------------------------- /bigtop-bigpetstore/bigpetstore-transaction-queue/settings.gradle: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | -------------------------------------------------------------------------------- /bigtop-ci/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Licensed to the Apache Software Foundation (ASF) under one or more 3 | # contributor license agreements. See the NOTICE file distributed with 4 | # this work for additional information regarding copyright ownership. 5 | # The ASF licenses this file to You under the Apache License, Version 2.0 6 | # (the "License"); you may not use this file except in compliance with 7 | # the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | 17 | . /etc/profile.d/bigtop.sh 18 | exec ./gradlew "$@" 19 | -------------------------------------------------------------------------------- /bigtop-data-generators/bigpetstore-data-generator/settings.gradle: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | rootProject.name = "bigpetstore-data-generator" -------------------------------------------------------------------------------- /bigtop-data-generators/bigtop-location-data/settings.gradle: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | rootProject.name = "bigtop-location-data" -------------------------------------------------------------------------------- /bigtop-data-generators/bigtop-name-generator/settings.gradle: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | rootProject.name = "bigtop-name-generator" -------------------------------------------------------------------------------- /bigtop-data-generators/bigtop-name-generator/src/main/resources/input_data/namedb/namedb.info: -------------------------------------------------------------------------------- 1 | name = Name DB 2 | description = Defines a database for maintain a list of names. 3 | package = Fields 4 | version = VERSION 5 | core = 7.x 6 | dependencies[] = name 7 | 8 | ; Information added by drupal.org packaging script on 2011-06-08 9 | version = "7.x-1.0-beta2" 10 | core = "7.x" 11 | project = "namedb" 12 | datestamp = "1307496118" 13 | -------------------------------------------------------------------------------- /bigtop-data-generators/bigtop-samplers/settings.gradle: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | rootProject.name = "bigtop-samplers" -------------------------------------------------------------------------------- /bigtop-data-generators/bigtop-weatherman/settings.gradle: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | rootProject.name = "bigtop-weatherman" 17 | -------------------------------------------------------------------------------- /bigtop-data-generators/settings.gradle: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | include ":bigpetstore-data-generator", ":bigtop-name-generator", ":bigtop-samplers", ":bigtop-location-data", ":bigtop-weatherman" 17 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-hbase/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-hbase/ci-info.yaml: -------------------------------------------------------------------------------- 1 | bundle: 2 | name: hadoop-hbase 3 | namespace: bigdata-charmers 4 | release: true 5 | to-channel: edge 6 | charm-upgrade: 7 | hadoop-namenode: 8 | from-channel: edge 9 | release: false 10 | to-channel: beta 11 | hadoop-resourcemanager: 12 | from-channel: edge 13 | release: false 14 | to-channel: beta 15 | hadoop-slave: 16 | from-channel: edge 17 | release: false 18 | to-channel: beta 19 | hadoop-client: 20 | from-channel: edge 21 | release: false 22 | to-channel: beta 23 | hadoop-plugin: 24 | from-channel: edge 25 | release: false 26 | to-channel: beta 27 | hbase: 28 | from-channel: edge 29 | release: false 30 | to-channel: beta 31 | zookeeper: 32 | from-channel: edge 33 | release: false 34 | to-channel: beta 35 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-hbase/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved. 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-hbase/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | deployment_timeout: 3600 3 | sources: 4 | - 'ppa:juju/stable' 5 | packages: 6 | - amulet 7 | - python3-yaml 8 | # exclude tests that are unrelated to bigtop. 9 | excludes: 10 | - ganglia 11 | - ganglia-node 12 | - rsyslog 13 | - rsyslog-forwarder-ha 14 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-kafka/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-kafka/ci-info.yaml: -------------------------------------------------------------------------------- 1 | bundle: 2 | name: hadoop-kafka 3 | namespace: bigdata-charmers 4 | release: true 5 | to-channel: edge 6 | charm-upgrade: 7 | hadoop-namenode: 8 | from-channel: edge 9 | release: false 10 | to-channel: beta 11 | hadoop-resourcemanager: 12 | from-channel: edge 13 | release: false 14 | to-channel: beta 15 | hadoop-slave: 16 | from-channel: edge 17 | release: false 18 | to-channel: beta 19 | hadoop-client: 20 | from-channel: edge 21 | release: false 22 | to-channel: beta 23 | hadoop-plugin: 24 | from-channel: edge 25 | release: false 26 | to-channel: beta 27 | kafka: 28 | from-channel: edge 29 | release: false 30 | to-channel: beta 31 | zookeeper: 32 | from-channel: edge 33 | release: false 34 | to-channel: beta 35 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-kafka/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved. 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-kafka/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | deployment_timeout: 3600 3 | sources: 4 | - 'ppa:juju/stable' 5 | packages: 6 | - amulet 7 | - python3-yaml 8 | # exclude tests that are unrelated to bigtop. 9 | excludes: 10 | - ganglia 11 | - ganglia-node 12 | - rsyslog 13 | - rsyslog-forwarder-ha 14 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-processing/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-processing/ci-info.yaml: -------------------------------------------------------------------------------- 1 | bundle: 2 | name: hadoop-processing 3 | namespace: bigdata-charmers 4 | release: true 5 | to-channel: edge 6 | charm-upgrade: 7 | hadoop-namenode: 8 | from-channel: edge 9 | release: false 10 | to-channel: beta 11 | hadoop-resourcemanager: 12 | from-channel: edge 13 | release: false 14 | to-channel: beta 15 | hadoop-slave: 16 | from-channel: edge 17 | release: false 18 | to-channel: beta 19 | hadoop-client: 20 | from-channel: edge 21 | release: false 22 | to-channel: beta 23 | hadoop-plugin: 24 | from-channel: edge 25 | release: false 26 | to-channel: beta 27 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-processing/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved. 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-processing/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | deployment_timeout: 3600 3 | sources: 4 | - 'ppa:juju/stable' 5 | packages: 6 | - amulet 7 | - python3-yaml 8 | # exclude tests that are unrelated to bigtop. 9 | excludes: 10 | - ganglia 11 | - ganglia-node 12 | - rsyslog 13 | - rsyslog-forwarder-ha 14 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-spark/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-spark/ci-info.yaml: -------------------------------------------------------------------------------- 1 | bundle: 2 | name: hadoop-spark 3 | namespace: bigdata-charmers 4 | release: true 5 | to-channel: edge 6 | charm-upgrade: 7 | hadoop-namenode: 8 | from-channel: edge 9 | release: false 10 | to-channel: beta 11 | hadoop-resourcemanager: 12 | from-channel: edge 13 | release: false 14 | to-channel: beta 15 | hadoop-slave: 16 | from-channel: edge 17 | release: false 18 | to-channel: beta 19 | hadoop-client: 20 | from-channel: edge 21 | release: false 22 | to-channel: beta 23 | hadoop-plugin: 24 | from-channel: edge 25 | release: false 26 | to-channel: beta 27 | spark: 28 | from-channel: edge 29 | release: false 30 | to-channel: beta 31 | zookeeper: 32 | from-channel: edge 33 | release: false 34 | to-channel: beta 35 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-spark/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved. 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/hadoop-spark/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | deployment_timeout: 3600 3 | sources: 4 | - 'ppa:juju/stable' 5 | packages: 6 | - amulet 7 | - python3-yaml 8 | # exclude tests that are unrelated to bigtop. the exclusion of spark might 9 | # look weird here, but for this bundle, we only care that spark is good in 10 | # yarn mode (covered by this bundle when we invoke the spark smoke-test). the 11 | # typical spark tests will test spark once in standalone and twice more in 12 | # various HA modes. that takes forever, so leave those heavy tests for the 13 | # spark-processing bundle. let's go fast on this one. 14 | excludes: 15 | - ganglia 16 | - ganglia-node 17 | - rsyslog 18 | - rsyslog-forwarder-ha 19 | - spark 20 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/spark-processing/ci-info.yaml: -------------------------------------------------------------------------------- 1 | bundle: 2 | name: spark-processing 3 | namespace: bigdata-charmers 4 | release: true 5 | to-channel: edge 6 | charm-upgrade: 7 | spark: 8 | from-channel: edge 9 | release: false 10 | to-channel: beta 11 | zookeeper: 12 | from-channel: edge 13 | release: false 14 | to-channel: beta 15 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/spark-processing/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved. 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-deploy/juju/spark-processing/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | deployment_timeout: 3600 3 | sources: 4 | - 'ppa:juju/stable' 5 | packages: 6 | - amulet 7 | - python3-yaml 8 | # exclude tests that are unrelated to bigtop. 9 | excludes: 10 | - ganglia 11 | - ganglia-node 12 | - rsyslog 13 | - rsyslog-forwarder-ha 14 | -------------------------------------------------------------------------------- /bigtop-deploy/puppet/hiera.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | :yaml: 3 | :datadir: /etc/puppet/hieradata 4 | :hierarchy: 5 | - site 6 | - bigtop/cluster 7 | - bigtop/repo 8 | -------------------------------------------------------------------------------- /bigtop-deploy/puppet/hieradata/bigtop/repo.yaml: -------------------------------------------------------------------------------- 1 | bigtop::bigtop_repo_gpg_check: true 2 | bigtop::bigtop_repo_apt_key: "36243EECE206BB0D" 3 | bigtop::bigtop_repo_yum_key_url: "https://dlcdn.apache.org/bigtop/KEYS" 4 | bigtop::bigtop_repo_default_version: "3.3.0" 5 | 6 | -------------------------------------------------------------------------------- /bigtop-deploy/puppet/modules/bigtop-util/Rakefile: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | 17 | require 'rubygems' 18 | require 'puppetlabs_spec_helper/rake_tasks' 19 | -------------------------------------------------------------------------------- /bigtop-deploy/puppet/modules/bigtop_utils/tests/init.pp: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | include bigtop_utils 17 | bigtop_utils::client { "test-bigtop-utils": } 18 | -------------------------------------------------------------------------------- /bigtop-deploy/puppet/modules/hadoop/files/hdfs/id_hdfsuser.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC3p863I0zXIKCt0ohfOZniTTQXa78WLkIBGJk3wDaoPy99EdrSyPJFFG4gnNNACs2IVLpNYlpNbsLX0xwKJo0YccYAV5rGnM2NLnoHzP4R8Ib29Q/zbyL/zUQP/6Kc4ZLNFIGeK+nE6Bg3NpHBj8/GaNn/0NEPqDr/aWom7n2P6CZdCo6t3IkU8+IY9CMQEnZiuD+FJ1qrr/VhF6H4LoApaAgV2C/kIquW60wz85cZb0eG6NezQeDt7A14Jx8aE95q1yFMXRHynsSgcsasvCf4W2BMG8SWj81A36l3AvwHupc4puuY1FjzGN0isi0FrjBrpXQHckqjhgydILH5brwT hdfs dev ssh key 2 | -------------------------------------------------------------------------------- /bigtop-deploy/puppet/modules/hadoop/files/http.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-deploy/puppet/modules/hadoop/files/http.keystore -------------------------------------------------------------------------------- /bigtop-deploy/puppet/modules/hadoop/files/http.truststore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-deploy/puppet/modules/hadoop/files/http.truststore -------------------------------------------------------------------------------- /bigtop-deploy/puppet/modules/hadoop/templates/container-executor.cfg: -------------------------------------------------------------------------------- 1 | yarn.nodemanager.linux-container-executor.group=yarn 2 | <% if @container_executor_banned_users -%> 3 | banned.users=<%= @container_executor_banned_users %> 4 | <% end -%> 5 | <% if @container_executor_banned_users -%> 6 | min.user.id=<%= @container_executor_min_user_id %> 7 | <% end -%> 8 | -------------------------------------------------------------------------------- /bigtop-deploy/puppet/modules/hadoop/templates/taskcontroller.cfg: -------------------------------------------------------------------------------- 1 | mapred.local.dir=<%= @mapred_data_dirs.join(",") %> 2 | hadoop.log.dir=/var/log/hadoop/ 3 | mapreduce.tasktracker.group=mapred 4 | min.user.id=0 5 | banned.users=foo 6 | -------------------------------------------------------------------------------- /bigtop-deploy/puppet/modules/hadoop_hive/tests/init.pp: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | include hadoop_hive::client 17 | include hadoop_hive::metastore 18 | include hadoop_hive::server2 19 | -------------------------------------------------------------------------------- /bigtop-deploy/puppet/modules/hcatalog/tests/init.pp: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | hcatalog::server { "test-hcatalog-server": } 17 | hcatalog::webhcat::server { "test-hcatalog-webhcat-server": } 18 | -------------------------------------------------------------------------------- /bigtop-deploy/puppet/modules/nfs/manifests/client.pp: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | class nfs::client { 17 | include nfs::client::install 18 | require nfs::client::service 19 | } 20 | -------------------------------------------------------------------------------- /bigtop-deploy/puppet/modules/nfs/manifests/client/install.pp: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | class nfs::client::install inherits nfs::client::params { 17 | package { $package_names: 18 | ensure => present, 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /bigtop-deploy/puppet/modules/nfs/manifests/init.pp: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | class nfs { 17 | require nfs::client 18 | } 19 | -------------------------------------------------------------------------------- /bigtop-deploy/puppet/modules/tez/tests/init.pp: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | include tez 17 | tez::client { "test-tez": } 18 | -------------------------------------------------------------------------------- /bigtop-deploy/puppet/modules/zeppelin/tests/init.pp: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | zeppelin::server { 'zeppelin server': 17 | server_port => '8080', 18 | web_socket_port => '8081', 19 | } 20 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-namenode/.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-namenode/actions.yaml: -------------------------------------------------------------------------------- 1 | smoke-test: 2 | description: Run a simple HDFS smoke test. 3 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-namenode/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved, The Apache Software Foundation 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-namenode/layer.yaml: -------------------------------------------------------------------------------- 1 | repo: https://github.com/apache/bigtop/tree/master/bigtop-packages/src/charm/hadoop/layer-hadoop-namenode 2 | includes: 3 | - 'layer:apache-bigtop-base' 4 | - 'interface:dfs' 5 | - 'interface:dfs-slave' 6 | - 'interface:benchmark' 7 | options: 8 | apache-bigtop-base: 9 | groups: 10 | - 'mapred' 11 | - 'spark' 12 | - 'yarn' 13 | users: 14 | mapred: 15 | groups: ['mapred', 'hadoop'] 16 | spark: 17 | groups: ['spark', 'hadoop'] 18 | ubuntu: 19 | groups: ['hadoop', 'mapred', 'spark'] 20 | yarn: 21 | groups: ['yarn', 'hadoop'] 22 | ports: 23 | namenode: 24 | port: 8020 25 | nn_webapp_http: 26 | port: 50070 27 | exposed_on: 'namenode' 28 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-namenode/metadata.yaml: -------------------------------------------------------------------------------- 1 | name: hadoop-namenode 2 | summary: HDFS NameNode from Apache Bigtop 3 | maintainer: Juju Big Data 4 | description: > 5 | Hadoop is a software platform that lets one easily write and 6 | run applications that process vast amounts of data. 7 | 8 | This charm provides version 2.7.3 of the HDFS NameNode application from 9 | Apache Bigtop. 10 | tags: [] 11 | provides: 12 | namenode: 13 | interface: dfs 14 | benchmark: 15 | interface: benchmark 16 | requires: 17 | datanode: 18 | interface: dfs-slave 19 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-namenode/metrics.yaml: -------------------------------------------------------------------------------- 1 | metrics: 2 | namenodes: 3 | type: gauge 4 | description: number of namenodes in the cluster 5 | command: "charms.reactive is_state apache-bigtop-namenode.ready && su hdfs -c 'hdfs getconf -namenodes 2>/dev/null | wc -l' || echo 0" 6 | offlinedatanodes: 7 | type: gauge 8 | description: number of dead datanodes in the cluster (must be run as hdfs) 9 | command: "charms.reactive is_state apache-bigtop-namenode.ready && su hdfs -c 'hdfs dfsadmin -report -dead 2>/dev/null | grep -i datanodes | grep -o [0-9]' || echo 0" 10 | onlinedatanodes: 11 | type: gauge 12 | description: number of live datanodes in the cluster (must be run as hdfs) 13 | command: "charms.reactive is_state apache-bigtop-namenode.ready && su hdfs -c 'hdfs dfsadmin -report -live 2>/dev/null | grep -i datanodes | grep -o [0-9]' || echo 0" 14 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-namenode/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | packages: 3 | - amulet 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-namenode/wheelhouse.txt: -------------------------------------------------------------------------------- 1 | charms.benchmark>=1.0.0,<2.0.0 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-plugin/actions.yaml: -------------------------------------------------------------------------------- 1 | smoke-test: 2 | description: Run a simple HDFS smoke test. 3 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-plugin/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved, The Apache Software Foundation 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-plugin/layer.yaml: -------------------------------------------------------------------------------- 1 | repo: https://github.com/apache/bigtop/tree/master/bigtop-packages/src/charm/hadoop/layer-hadoop-plugin 2 | includes: 3 | - 'layer:apache-bigtop-base' 4 | - 'interface:hadoop-plugin' 5 | - 'interface:dfs' 6 | - 'interface:mapred' 7 | options: 8 | basic: 9 | use_venv: true 10 | metadata: 11 | deletes: 12 | - provides.java 13 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-plugin/metadata.yaml: -------------------------------------------------------------------------------- 1 | name: hadoop-plugin 2 | summary: Facilitates communication with an Apache Bigtop Hadoop cluster 3 | maintainer: Juju Big Data 4 | description: > 5 | Hadoop is a software platform that lets one easily write and 6 | run applications that process vast amounts of data. 7 | 8 | This charm provides a simplified connection point for client / workload 9 | services which require access to Apache Hadoop. This connection is established 10 | via the Apache Bigtop gateway. 11 | tags: [] 12 | subordinate: true 13 | requires: 14 | namenode: 15 | interface: dfs 16 | resourcemanager: 17 | interface: mapred 18 | hadoop-plugin: 19 | interface: hadoop-plugin 20 | scope: container 21 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-plugin/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | packages: 3 | - amulet 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-resourcemanager/.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-resourcemanager/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved, The Apache Software Foundation 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-resourcemanager/layer.yaml: -------------------------------------------------------------------------------- 1 | repo: https://github.com/apache/bigtop/tree/master/bigtop-packages/src/charm/hadoop/layer-hadoop-resourcemanager 2 | includes: 3 | - 'layer:apache-bigtop-base' 4 | - 'interface:dfs' 5 | - 'interface:mapred' 6 | - 'interface:mapred-slave' 7 | - 'interface:benchmark' 8 | options: 9 | apache-bigtop-base: 10 | groups: 11 | - 'mapred' 12 | - 'spark' 13 | users: 14 | spark: 15 | groups: ['spark', 'hadoop'] 16 | ubuntu: 17 | groups: ['hadoop', 'mapred', 'spark'] 18 | ports: 19 | resourcemanager: 20 | port: 8032 21 | rm_webapp_http: 22 | port: 8088 23 | exposed_on: 'resourcemanager' 24 | # TODO: support SSL 25 | #rm_webapp_https: 26 | # port: 8090 27 | # exposed_on: 'yarn-master' 28 | jobhistory: 29 | port: 10020 30 | jh_webapp_http: 31 | port: 19888 32 | exposed_on: 'resourcemanager' 33 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-resourcemanager/metadata.yaml: -------------------------------------------------------------------------------- 1 | name: hadoop-resourcemanager 2 | summary: YARN ResourceManager from Apache Bigtop 3 | maintainer: Juju Big Data 4 | description: > 5 | Hadoop is a software platform that lets one easily write and 6 | run applications that process vast amounts of data. 7 | 8 | This charm provides version 2.7.3 of the YARN ResourceManager application from 9 | Apache Bigtop. 10 | tags: [] 11 | provides: 12 | resourcemanager: 13 | interface: mapred 14 | benchmark: 15 | interface: benchmark 16 | requires: 17 | namenode: 18 | interface: dfs 19 | nodemanager: 20 | interface: mapred-slave 21 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-resourcemanager/metrics.yaml: -------------------------------------------------------------------------------- 1 | metrics: 2 | nodemanagers: 3 | type: gauge 4 | description: number of running node managers in the cluster 5 | command: "charms.reactive is_state apache-bigtop-resourcemanager.ready && yarn node -list -all 2>/dev/null | grep RUNNING | wc -l || echo 0" 6 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-resourcemanager/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | packages: 3 | - amulet 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-resourcemanager/wheelhouse.txt: -------------------------------------------------------------------------------- 1 | charms.benchmark>=1.0.0,<2.0.0 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-slave/actions.yaml: -------------------------------------------------------------------------------- 1 | smoke-test: 2 | description: | 3 | Run an Apache Bigtop smoke test. Requires 3 slave units. 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-slave/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved, The Apache Software Foundation 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-slave/layer.yaml: -------------------------------------------------------------------------------- 1 | repo: https://github.com/apache/bigtop/tree/master/bigtop-packages/src/charm/hadoop/layer-hadoop-slave 2 | includes: 3 | - 'layer:hadoop-datanode' 4 | - 'layer:hadoop-nodemanager' 5 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-slave/metadata.yaml: -------------------------------------------------------------------------------- 1 | name: hadoop-slave 2 | summary: Combined slave node (DataNode + NodeManager) from Apache Bigtop. 3 | maintainer: Juju Big Data 4 | description: > 5 | Hadoop is a software platform that lets one easily write and 6 | run applications that process vast amounts of data. 7 | 8 | This charm provides version 2.7.3 of both the HDFS DataNode and the 9 | YARN NodeManager from Apache Bigtop. 10 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hadoop/layer-hadoop-slave/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | packages: 3 | - amulet 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hbase/layer-hbase/actions.yaml: -------------------------------------------------------------------------------- 1 | restart: 2 | description: Retart HBase HMaster and RegionServer. 3 | start-hbase-master: 4 | description: Start HBase HMaster. 5 | start-hbase-regionserver: 6 | description: Start HBase RegionServer. 7 | start: 8 | description: Start HBase HMaster and RegionServer. 9 | stop-hbase-master: 10 | description: Stop HBase HMaster. 11 | stop-hbase-regionserver: 12 | description: Stop HBase RegionServer. 13 | stop: 14 | description: Stop HBase HMaster and RegionServer. 15 | smoke-test: 16 | description: Verify that HBase is working. 17 | perf-test: 18 | description: Verify that HBase is working by running a perf test. 19 | params: 20 | mrows: 21 | description: Rows to be written in milions 22 | type: integer 23 | default: 1 24 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hbase/layer-hbase/config.yaml: -------------------------------------------------------------------------------- 1 | options: 2 | heap: 3 | type: int 4 | default: 1024 5 | description: | 6 | The maximum heap size (in MB) used by the HBase master JVM. 7 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hbase/layer-hbase/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved. 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hbase/layer-hbase/metadata.yaml: -------------------------------------------------------------------------------- 1 | name: hbase 2 | summary: HBase from Apache Bigtop 3 | maintainer: Juju Big Data 4 | description: > 5 | HBase is the Hadoop database. This charm provides version 1.1.9 of the 6 | HBase application from Apache Bigtop. 7 | tags: [] 8 | requires: 9 | zookeeper: 10 | interface: zookeeper 11 | provides: 12 | hbclient: 13 | interface: hbase 14 | benchmark: 15 | interface: benchmark 16 | peers: 17 | hbpeer: 18 | interface: hbase-quorum 19 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hbase/layer-hbase/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | packages: 3 | - amulet 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hbase/layer-hbase/wheelhouse.txt: -------------------------------------------------------------------------------- 1 | charms.benchmark>=1.0.0,<2.0.0 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hive/layer-hive/actions.yaml: -------------------------------------------------------------------------------- 1 | restart: 2 | description: Retart Hive Metastore and HiveServer2. 3 | smoke-test: 4 | description: Verify that Hive is working. 5 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hive/layer-hive/config.yaml: -------------------------------------------------------------------------------- 1 | options: 2 | heap: 3 | type: int 4 | default: 1024 5 | description: | 6 | The maximum heap size (in MB) used by the Hive shell JVM. 7 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hive/layer-hive/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved. 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hive/layer-hive/layer.yaml: -------------------------------------------------------------------------------- 1 | repo: https://github.com/apache/bigtop/tree/master/bigtop-packages/src/charm/hive/layer-hive 2 | includes: 3 | - 'layer:apache-bigtop-base' 4 | - 'layer:hadoop-client' 5 | - 'interface:hbase' 6 | - 'interface:hive' 7 | - 'interface:mysql' 8 | - 'interface:zookeeper' 9 | options: 10 | basic: 11 | packages: 12 | - 'libmysql-java' 13 | - 'mysql-client' 14 | apache-bigtop-base: 15 | groups: 16 | - 'hadoop' 17 | - 'hive' 18 | users: 19 | ubuntu: 20 | groups: ['hadoop', 'hive'] 21 | dirs: 22 | hive: 23 | path: '/usr/lib/hive' 24 | hive_conf: 25 | path: '/etc/hive/conf' 26 | ports: 27 | hive-thrift: 28 | port: 10000 29 | exposed_on: 'hive' 30 | hive-thrift-web: 31 | port: 10001 32 | exposed_on: 'hive' 33 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hive/layer-hive/metadata.yaml: -------------------------------------------------------------------------------- 1 | name: hive 2 | summary: Hive from Apache Bigtop 3 | maintainer: Juju Big Data 4 | description: > 5 | Apache Hive is a data warehouse infrastructure built on top of Hadoop that 6 | supports data summarization, query, and analysis. Hive provides an SQL-like 7 | language called HiveQL that transparently converts queries to MapReduce for 8 | execution on large datasets stored in Hadoop's HDFS. 9 | 10 | This charm provides version 1.2.1 of the Hive application from Apache Bigtop. 11 | tags: [] 12 | provides: 13 | client: 14 | interface: hive 15 | requires: 16 | database: 17 | interface: mysql 18 | hbase: 19 | interface: hbase 20 | zookeeper: 21 | interface: zookeeper 22 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/hive/layer-hive/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | packages: 3 | - amulet 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/kafka/layer-kafka/config.yaml: -------------------------------------------------------------------------------- 1 | options: 2 | network_interface: 3 | default: "" 4 | type: string 5 | description: | 6 | Network interface to bind Kafka to. Defaults to accepting 7 | connections on all interfaces. Accepts either the name of an 8 | interface (e.g., 'eth0'), or a CIDR range. If the latter, we\'ll 9 | bind to the first interface that we find with an IP address in 10 | that range. 11 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/kafka/layer-kafka/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved. 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/kafka/layer-kafka/layer.yaml: -------------------------------------------------------------------------------- 1 | repo: git@github.com:juju-solutions/layer-apache-bigtop-kafka.git 2 | includes: 3 | - 'layer:apache-bigtop-base' 4 | - 'interface:zookeeper' 5 | - 'interface:kafka' 6 | options: 7 | apache-bigtop-base: 8 | groups: 9 | - kafka 10 | users: 11 | kafka: 12 | groups: ['kafka'] 13 | ports: 14 | # Ports that need to be exposed, overridden, or manually specified. 15 | # Only expose ports serving a UI or external API (i.e., namenode and 16 | # resourcemanager). Communication among units within the cluster does 17 | # not need ports to be explicitly opened. 18 | kafka: 19 | port: 9092 20 | exposed_on: 'kafka' 21 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/kafka/layer-kafka/metadata.yaml: -------------------------------------------------------------------------------- 1 | name: kafka 2 | summary: Kafka from Apache Bigtop 3 | maintainer: Juju Big Data 4 | description: > 5 | Kafka is a high-performance, scalable, distributed messaging system. 6 | 7 | This charm provides version 0.10.1.1 of the Kafka application from Apache 8 | Bigtop. 9 | tags: [] 10 | provides: 11 | client: 12 | interface: kafka 13 | requires: 14 | zookeeper: 15 | interface: zookeeper 16 | storage: 17 | logs: 18 | type: filesystem 19 | description: Directory where log files will be stored 20 | minimum-size: 20M 21 | location: /srv/kafka 22 | multiple: 23 | range: "0-1" 24 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/kafka/layer-kafka/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | packages: 3 | - amulet 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/connectedcomponent: -------------------------------------------------------------------------------- 1 | sparkbench -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/decisiontree: -------------------------------------------------------------------------------- 1 | sparkbench -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/kmeans: -------------------------------------------------------------------------------- 1 | sparkbench -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/linearregression: -------------------------------------------------------------------------------- 1 | sparkbench -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/logisticregression: -------------------------------------------------------------------------------- 1 | sparkbench -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/matrixfactorization: -------------------------------------------------------------------------------- 1 | sparkbench -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/pca: -------------------------------------------------------------------------------- 1 | sparkbench -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/pregeloperation: -------------------------------------------------------------------------------- 1 | sparkbench -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/shortestpaths: -------------------------------------------------------------------------------- 1 | sparkbench -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/smoke-test: -------------------------------------------------------------------------------- 1 | sparkpi -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/sql: -------------------------------------------------------------------------------- 1 | sparkbench -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/stronglyconnectedcomponent: -------------------------------------------------------------------------------- 1 | sparkbench -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/submit: -------------------------------------------------------------------------------- 1 | spark-submit -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/svdplusplus: -------------------------------------------------------------------------------- 1 | sparkbench -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/actions/svm: -------------------------------------------------------------------------------- 1 | sparkbench -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved, The Apache Software Foundation 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/metadata.yaml: -------------------------------------------------------------------------------- 1 | name: spark 2 | summary: Spark from Apache Bigtop 3 | maintainer: Juju Big Data 4 | description: > 5 | Apache Spark is a fast and general engine for large-scale data processing. 6 | 7 | This charm provides version 2.1.1 of the Spark application from Apache Bigtop. 8 | tags: ["analytics"] 9 | resources: 10 | sample-data: 11 | description: A zip archive of sample data required by Spark benchmarks. 12 | type: file 13 | filename: sample-data.zip 14 | provides: 15 | benchmark: 16 | interface: benchmark 17 | client: 18 | interface: spark 19 | requires: 20 | zookeeper: 21 | interface: zookeeper 22 | peers: 23 | sparkpeers: 24 | interface: spark-quorum 25 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | packages: 3 | - amulet 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/spark/layer-spark/wheelhouse.txt: -------------------------------------------------------------------------------- 1 | charms.benchmark>=1.0.0,<2.0.0 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/zeppelin/layer-zeppelin/actions.yaml: -------------------------------------------------------------------------------- 1 | reinstall: 2 | description: > 3 | Reinstall Zeppelin with the version available in the repo. 4 | restart: 5 | description: > 6 | Restart Zeppelin. 7 | smoke-test: 8 | description: > 9 | Verify that Zeppelin is working by running one of the example notebook 10 | paragraphs, using the REST server. 11 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/zeppelin/layer-zeppelin/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved. 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/zeppelin/layer-zeppelin/layer.yaml: -------------------------------------------------------------------------------- 1 | repo: git@github.com:juju-solutions/bigtop.git 2 | includes: 3 | - 'layer:apache-bigtop-base' 4 | - 'layer:hadoop-client' 5 | - 'interface:hive' 6 | - 'interface:spark' 7 | - 'interface:zeppelin' 8 | options: 9 | basic: 10 | packages: 11 | - 'unzip' 12 | apache-bigtop-base: 13 | groups: 14 | - 'hadoop' 15 | - 'zeppelin' 16 | users: 17 | ubuntu: 18 | groups: ['hadoop', 'zeppelin'] 19 | dirs: 20 | zeppelin: 21 | path: '/usr/lib/zeppelin' 22 | zeppelin_conf: 23 | path: '/etc/zeppelin/conf' 24 | zeppelin_logs: 25 | path: '/var/log/zeppelin' 26 | zeppelin_notebooks: 27 | path: '/var/lib/zeppelin/notebook' 28 | ports: 29 | zeppelin: 30 | port: 9080 31 | exposed_on: 'zeppelin' 32 | zeppelin_websocket: 33 | port: 9081 34 | exposed_on: 'zeppelin' 35 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/zeppelin/layer-zeppelin/metadata.yaml: -------------------------------------------------------------------------------- 1 | name: zeppelin 2 | summary: Zeppelin from Apache Bigtop 3 | maintainer: Juju Big Data 4 | description: > 5 | Apache Zeppelin is a web-based notebook that enables interactive data 6 | analytics. You can make beautiful data-driven, interactive, and collaborative 7 | documents with SQL, Scala and more. 8 | 9 | This charm provides version 0.7.2 of the Zeppelin application from Apache 10 | Bigtop. 11 | tags: ["analytics"] 12 | provides: 13 | client: 14 | interface: zeppelin 15 | requires: 16 | hive: 17 | interface: hive 18 | spark: 19 | interface: spark 20 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/zeppelin/layer-zeppelin/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | packages: 3 | - amulet 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/zeppelin/layer-zeppelin/wheelhouse.txt: -------------------------------------------------------------------------------- 1 | requests==2.14.2 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/zookeeper/layer-zookeeper/actions.yaml: -------------------------------------------------------------------------------- 1 | restart: 2 | description: Restart the Zookeeper server daemon. 3 | smoke-test: 4 | description: Run an Apache Bigtop smoke test. 5 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/zookeeper/layer-zookeeper/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5/ 2 | 3 | Files: * 4 | Copyright: Copyright 2015, Canonical Ltd., All Rights Reserved. 5 | License: Apache License 2.0 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | . 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | . 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/zookeeper/layer-zookeeper/layer.yaml: -------------------------------------------------------------------------------- 1 | repo: https://github.com/apache/bigtop/tree/master/bigtop-packages/src/charm/zookeeper/layer-zookeeper 2 | includes: 3 | - 'layer:apache-bigtop-base' 4 | - 'layer:leadership' 5 | - 'interface:zookeeper-quorum' 6 | - 'interface:zookeeper' 7 | - 'interface:nrpe-external-master' 8 | - 'interface:local-monitors' 9 | options: 10 | apache-bigtop-base: 11 | ports: 12 | zookeeper-rest: 13 | port: 9998 14 | exposed_on: 'zookeeper' 15 | zookeeper: 16 | port: 2181 17 | exposed_on: 'zookeeper' 18 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/zookeeper/layer-zookeeper/metadata.yaml: -------------------------------------------------------------------------------- 1 | name: zookeeper 2 | summary: Zookeeper from Apache Bigtop 3 | maintainer: Juju Big Data 4 | description: > 5 | Apache ZooKeeper is a centralized, reliable application for maintaining 6 | configuration information, naming, synchronization, and group services. All 7 | of these kinds of services are used in some form or another by distributed 8 | applications. In order to install and configure Apache HBase and other Hadoop 9 | ecosystem components, you need ZooKeeper. 10 | 11 | This charm provides version 3.4.6 of the Zookeeper application from Apache 12 | Bigtop. 13 | tags: [] 14 | provides: 15 | zookeeper: 16 | interface: zookeeper 17 | nrpe-external-master: 18 | interface: nrpe-external-master 19 | scope: container 20 | local-monitors: 21 | interface: local-monitors 22 | scope: container 23 | peers: 24 | zkpeer: 25 | interface: zookeeper-quorum 26 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/zookeeper/layer-zookeeper/metrics.yaml: -------------------------------------------------------------------------------- 1 | metrics: 2 | peers: 3 | type: gauge 4 | description: number of zookeeper servers in the cluster 5 | command: grep ^server /etc/zookeeper/conf/zoo.cfg | wc -l || echo 0 6 | -------------------------------------------------------------------------------- /bigtop-packages/src/charm/zookeeper/layer-zookeeper/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | reset: false 2 | packages: 3 | - amulet 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/alluxio/patch0-fix-license-check.diff: -------------------------------------------------------------------------------- 1 | diff --git a/pom.xml b/pom.xml 2 | index 8b6440b7e7..4ecbca4be4 100644 3 | --- a/pom.xml 4 | +++ b/pom.xml 5 | @@ -1214,6 +1214,7 @@ 6 | 7 | webui/node_modules/* 8 | build/**/* 9 | + debian/**/* 10 | conf/alluxio-env.sh 11 | conf/alluxio-site.properties 12 | conf/masters 13 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/bigtop-groovy/do-component-build: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Licensed to the Apache Software Foundation (ASF) under one or more 3 | # contributor license agreements. See the NOTICE file distributed with 4 | # this work for additional information regarding copyright ownership. 5 | # The ASF licenses this file to You under the Apache License, Version 2.0 6 | # (the "License"); you may not use this file except in compliance with 7 | # the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | 17 | set -ex 18 | 19 | . `dirname ${0}`/bigtop.bom 20 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/conf.empty/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/conf.empty/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/conf.secure/masters: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | localhost 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/conf.secure/slaves: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | localhost 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/conf.secure/taskcontroller.cfg: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | mapred.local.dir=/var/lib/hadoop/cache/mapred/local 17 | mapreduce.tasktracker.group=mapred 18 | hadoop.log.dir=/var/log/hadoop 19 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/hadoop-fuse.default: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | export LIBHDFS_OPTS="-Xms128m -Xmx512m" 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/hadoop-hdfs.tmpfile: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | d /run/hadoop-hdfs 0755 hdfs hadoop - 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/hadoop-yarn.tmpfile: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | d /run/hadoop-yarn 0755 yarn hadoop - 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/hdfs.1: -------------------------------------------------------------------------------- 1 | .\" Licensed to the Apache Software Foundation (ASF) under one or more 2 | .\" contributor license agreements. See the NOTICE file distributed with 3 | .\" this work for additional information regarding copyright ownership. 4 | .\" The ASF licenses this file to You under the Apache License, Version 2.0 5 | .\" (the "License"); you may not use this file except in compliance with 6 | .\" the License. You may obtain a copy of the License at 7 | .\" 8 | .\" http://www.apache.org/licenses/LICENSE-2.0 9 | .\" 10 | .\" Unless required by applicable law or agreed to in writing, software 11 | .\" distributed under the License is distributed on an "AS IS" BASIS, 12 | .\" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | .\" See the License for the specific language governing permissions and 14 | .\" limitations under the License. 15 | 16 | .so man1/hadoop.1 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/hdfs.conf: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | hdfs - nofile 32768 17 | hdfs - nproc 65536 18 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/kms.default: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | export HADOOP_CONF_DIR=/etc/hadoop/conf 16 | export HADOOP_LOG_DIR=/var/log/hadoop-kms 17 | export HADOOP_PID_DIR=/var/run/hadoop-kms 18 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/mapred.1: -------------------------------------------------------------------------------- 1 | .\" Licensed to the Apache Software Foundation (ASF) under one or more 2 | .\" contributor license agreements. See the NOTICE file distributed with 3 | .\" this work for additional information regarding copyright ownership. 4 | .\" The ASF licenses this file to You under the Apache License, Version 2.0 5 | .\" (the "License"); you may not use this file except in compliance with 6 | .\" the License. You may obtain a copy of the License at 7 | .\" 8 | .\" http://www.apache.org/licenses/LICENSE-2.0 9 | .\" 10 | .\" Unless required by applicable law or agreed to in writing, software 11 | .\" distributed under the License is distributed on an "AS IS" BASIS, 12 | .\" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | .\" See the License for the specific language governing permissions and 14 | .\" limitations under the License. 15 | 16 | .so man1/hadoop.1 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/mapreduce.conf: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | mapred - nofile 32768 17 | mapred - nproc 65536 18 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/mapreduce.default: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | export HADOOP_IDENT_STRING=mapred 17 | export HADOOP_PID_DIR=/run/hadoop-mapreduce 18 | export HADOOP_LOG_DIR=/var/log/hadoop-mapreduce 19 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/patch4-HADOOP-19551.diff: -------------------------------------------------------------------------------- 1 | diff --git a/hadoop-common-project/hadoop-common/HadoopCommon.cmake b/hadoop-common-project/hadoop-common/HadoopCommon.cmake 2 | index 7628ecf628de..8ed478dc8df7 100644 3 | --- a/hadoop-common-project/hadoop-common/HadoopCommon.cmake 4 | +++ b/hadoop-common-project/hadoop-common/HadoopCommon.cmake 5 | @@ -145,6 +145,9 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux") 6 | # Make GNU extensions available. 7 | hadoop_add_compiler_flags("-D_GNU_SOURCE") 8 | 9 | + # using old default behavior on GCC >= 14.0 10 | + hadoop_add_compiler_flags("-Wno-error=implicit-function-declaration") 11 | + 12 | # If JVM_ARCH_DATA_MODEL is 32, compile all binaries as 32-bit. 13 | if(JVM_ARCH_DATA_MODEL EQUAL 32) 14 | # Force 32-bit code generation on amd64/x86_64, ppc64, sparc64 15 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/patch5-fix-kms-shellprofile.diff: -------------------------------------------------------------------------------- 1 | diff --git a/hadoop-common-project/hadoop-kms/src/main/libexec/shellprofile.d/hadoop-kms.sh b/hadoop-common-project/hadoop-kms/src/main/libexec/shellprofile.d/hadoop-kms.sh 2 | index 0d084bb36e6..dafe7459f4a 100755 3 | --- a/hadoop-common-project/hadoop-kms/src/main/libexec/shellprofile.d/hadoop-kms.sh 4 | +++ b/hadoop-common-project/hadoop-kms/src/main/libexec/shellprofile.d/hadoop-kms.sh 5 | @@ -49,9 +49,4 @@ function hadoop_subcommand_kms 6 | "-Dkms.config.dir=${HADOOP_CONF_DIR}" 7 | hadoop_add_param HADOOP_OPTS "-Dkms.log.dir=" \ 8 | "-Dkms.log.dir=${HADOOP_LOG_DIR}" 9 | - 10 | - if [[ "${HADOOP_DAEMON_MODE}" == "default" ]] || 11 | - [[ "${HADOOP_DAEMON_MODE}" == "start" ]]; then 12 | - hadoop_mkdir "${KMS_TEMP:-${HADOOP_HOME}/temp}" 13 | - fi 14 | } 15 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/patch6-fix-httpfs-sh.diff: -------------------------------------------------------------------------------- 1 | diff --git a/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh b/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh 2 | index 83e0b4382b9..56b451815f1 100755 3 | --- a/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh 4 | +++ b/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh 5 | @@ -54,8 +54,8 @@ case $1 in 6 | esac 7 | 8 | # Locate bin 9 | -if [[ -n "${HADOOP_HOME}" ]]; then 10 | - bin="${HADOOP_HOME}/bin" 11 | +if [[ -n "${HADOOP_HDFS_HOME}" ]]; then 12 | + bin="${HADOOP_HDFS_HOME}/bin" 13 | else 14 | sbin=$(cd -P -- "$(dirname -- "$0")" >/dev/null && pwd -P) 15 | bin=$(cd -P -- "${sbin}/../bin" >/dev/null && pwd -P) 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/patch8-YARN-11528-triple-beam.diff: -------------------------------------------------------------------------------- 1 | diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-catalog/hadoop-yarn-applications-catalog-webapp/package.json b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-catalog/hadoop-yarn-applications-catalog-webapp/package.json 2 | index f09442cfc4e87..59cc3da179fd0 100644 3 | --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-catalog/hadoop-yarn-applications-catalog-webapp/package.json 4 | +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-catalog/hadoop-yarn-applications-catalog-webapp/package.json 5 | @@ -19,6 +19,9 @@ 6 | "shelljs": "^0.2.6", 7 | "apidoc": "0.17.7" 8 | }, 9 | + "resolutions": { 10 | + "triple-beam": "1.3.0" 11 | + }, 12 | "scripts": { 13 | "prestart": "npm install & mvn clean package", 14 | "pretest": "npm install" 15 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/yarn.1: -------------------------------------------------------------------------------- 1 | .\" Licensed to the Apache Software Foundation (ASF) under one or more 2 | .\" contributor license agreements. See the NOTICE file distributed with 3 | .\" this work for additional information regarding copyright ownership. 4 | .\" The ASF licenses this file to You under the Apache License, Version 2.0 5 | .\" (the "License"); you may not use this file except in compliance with 6 | .\" the License. You may obtain a copy of the License at 7 | .\" 8 | .\" http://www.apache.org/licenses/LICENSE-2.0 9 | .\" 10 | .\" Unless required by applicable law or agreed to in writing, software 11 | .\" distributed under the License is distributed on an "AS IS" BASIS, 12 | .\" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | .\" See the License for the specific language governing permissions and 14 | .\" limitations under the License. 15 | 16 | .so man1/hadoop.1 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/yarn.conf: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | yarn - nofile 32768 17 | yarn - nproc 65536 18 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hadoop/yarn.default: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | export HADOOP_IDENT_STRING=yarn 16 | export HADOOP_PID_DIR=/run/hadoop-yarn 17 | export HADOOP_LOG_DIR=/var/log/hadoop-yarn 18 | export HADOOP_CONF_DIR=/etc/hadoop/conf 19 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hbase/hbase.nofiles.conf: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | hbase - nofile 32768 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hbase/patch0-upgrade-maven-site-plugin.diff: -------------------------------------------------------------------------------- 1 | diff --git a/pom.xml b/pom.xml 2 | index 01123cb35b..b31202493e 100644 3 | --- a/pom.xml 4 | +++ b/pom.xml 5 | @@ -658,7 +658,7 @@ 6 | 2.12 7 | 1.0.1 8 | 2.27.2 9 | - 3.12.0 10 | + 3.12.1 11 | 12 | 0.27 13 | 1.11.0 14 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hive/hive-metastore.default: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | # The port for Hive metastore daemon to listen to. 17 | # Unfortunatelly, there is no way to specify the interfaces 18 | # to which the daemon binds. 19 | # 20 | #PORT= 21 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hive/hive-server2.default: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | # The port for Hive server2 daemon to listen to. 17 | # Unfortunatelly, there is no way to specify the interfaces 18 | # to which the daemon binds. 19 | # 20 | #PORT= 21 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/hive/patch1-add-rat-excludes.diff: -------------------------------------------------------------------------------- 1 | diff --git a/pom.xml b/pom.xml 2 | index 1898adeebe..6ef35c3931 100644 3 | --- a/pom.xml 4 | +++ b/pom.xml 5 | @@ -1849,6 +1849,8 @@ 6 | **/PriorityBlockingDeque.java 7 | **/StringToDouble.java 8 | LICENSE-binary 9 | + debian/** 10 | + .pc/** 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/kafka/kafka.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/common/kafka/kafka.default -------------------------------------------------------------------------------- /bigtop-packages/src/common/kafka/patch0-KAFKA-14661.diff: -------------------------------------------------------------------------------- 1 | diff --git a/build.gradle b/build.gradle 2 | index 11e163684355..76dec6966800 100644 3 | --- a/build.gradle 4 | +++ b/build.gradle 5 | @@ -893,6 +893,10 @@ project(':core') { 6 | implementation libs.dropwizardMetrics 7 | exclude module: 'slf4j-log4j12' 8 | exclude module: 'log4j' 9 | + // Both Kafka and Zookeeper use slf4j. ZooKeeper moved from log4j to logback in v3.8.0, but Kafka relies on reload4j. 10 | + // We are removing Zookeeper's dependency on logback so we have a singular logging backend. 11 | + exclude module: 'logback-classic' 12 | + exclude module: 'logback-core' 13 | } 14 | // ZooKeeperMain depends on commons-cli but declares the dependency as `provided` 15 | implementation libs.commonsCli 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/livy/patch0-python-executable-version.diff: -------------------------------------------------------------------------------- 1 | diff --git a/python-api/pom.xml b/python-api/pom.xml 2 | index 8e5cdab..f042e73 100644 3 | --- a/python-api/pom.xml 4 | +++ b/python-api/pom.xml 5 | @@ -46,7 +46,7 @@ 6 | exec 7 | 8 | 9 | - python 10 | + python3 11 | 12 | setup.py 13 | sdist 14 | @@ -60,7 +60,7 @@ 15 | exec 16 | 17 | 18 | - python 19 | + python3 20 | ${skipTests} 21 | 22 | setup.py 23 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/ranger/patch3-RANGER-3206-commit-2.diff: -------------------------------------------------------------------------------- 1 | diff --git a/security-admin/scripts/db_setup.py b/security-admin/scripts/db_setup.py 2 | index 10acb5375..24502f4fb 100644 3 | --- a/security-admin/scripts/db_setup.py 4 | +++ b/security-admin/scripts/db_setup.py 5 | @@ -149,7 +149,7 @@ def dbversionBasedOnUserName(userName): 6 | def set_env_val(command): 7 | proc = subprocess.Popen(command, stdout = subprocess.PIPE) 8 | for line in proc.stdout: 9 | - (key, _, value) = line.partition("=") 10 | + (key, _, value) = line.decode('utf8').partition('=') 11 | os.environ[key] = value.rstrip() 12 | proc.communicate() 13 | 14 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/solr/solr.in.sh: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | SOLR_JAVA_STACK_SIZE=-Xss512k 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/spark/licenses-binary/LICENSE-json-formatter.txt: -------------------------------------------------------------------------------- 1 | Copyright 2014 Mohsen Azimi 2 | 3 | Licensed 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 4 | 5 | http://www.apache.org/licenses/LICENSE-2.0 6 | 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-packages/src/common/spark/licenses-binary/LICENSE-matchMedia-polyfill.txt: -------------------------------------------------------------------------------- 1 | matchMedia() polyfill - Test a CSS media type/query in JS. Authors & copyright (c) 2012: Scott Jehl, Paul Irish, Nicholas Zakas. Dual MIT/BSD license -------------------------------------------------------------------------------- /bigtop-packages/src/common/spark/licenses-binary/LICENSE-sorttable.js.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 1997-2007 Stuart Langridge 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 11 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 12 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 13 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 14 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 15 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 16 | THE SOFTWARE. 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/spark/licenses-binary/LICENSE-vis-timeline.txt: -------------------------------------------------------------------------------- 1 | vis.js 2 | https://github.com/almende/vis 3 | 4 | A dynamic, browser-based visualization library. 5 | 6 | @version 4.20.1-SNAPSHOT 7 | @date 2017-10-12 8 | 9 | @license 10 | Copyright (C) 2011-2017 Almende B.V, http://almende.com 11 | 12 | Vis.js is dual licensed under both 13 | 14 | * The Apache 2.0 License 15 | http://www.apache.org/licenses/LICENSE-2.0 16 | 17 | and 18 | 19 | * The MIT License 20 | http://opensource.org/licenses/MIT 21 | 22 | Vis.js may be distributed under either license. 23 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/spark/patch0-SPARK-41063.diff: -------------------------------------------------------------------------------- 1 | diff --git a/pom.xml b/pom.xml 2 | index c005af470cc..db404288adf 100644 3 | --- a/pom.xml 4 | +++ b/pom.xml 5 | @@ -2931,6 +2931,13 @@ 6 | net.alchim31.maven 7 | scala-maven-plugin 8 | ${scala-maven-plugin.version} 9 | + 10 | + 11 | + org.scala-sbt 12 | + zinc_2.13 13 | + 1.8.1 14 | + 15 | + 16 | 17 | 18 | eclipse-add-source 19 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/tez/patch0-remove-phantomjs.diff: -------------------------------------------------------------------------------- 1 | diff --git a/tez-ui/src/main/webapp/package.json b/tez-ui/src/main/webapp/package.json 2 | index 3500b8aaf..bafe7bf61 100644 3 | --- a/tez-ui/src/main/webapp/package.json 4 | +++ b/tez-ui/src/main/webapp/package.json 5 | @@ -57,8 +57,7 @@ 6 | "ember-truth-helpers": "1.3.0", 7 | "bower-shrinkwrap-resolver-ext": "^0.1.0", 8 | "loader.js": "4.2.3", 9 | - "testem": "0.9.11", 10 | - "phantomjs-prebuilt": "2.1.13" 11 | + "testem": "0.9.11" 12 | }, 13 | "dependencies": { 14 | "em-tgraph": "0.0.14" 15 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/tez/tez-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | 17 | 18 | 19 | tez.lib.uris 20 | ${fs.default.name}/apps/tez/lib/tez.tar.gz 21 | 22 | 23 | 24 | tez.use.cluster.hadoop-libs 25 | false 26 | 27 | 28 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/zookeeper/zookeeper-server.tmpfile: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | d /run/zookeeper 0755 zookeeper zookeeper - 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/common/zookeeper/zookeeper.default: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | # Command-line parameters to pass to the JVM 17 | # export SERVER_JVMFLAGS="" 18 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/alluxio/alluxio.dirs: -------------------------------------------------------------------------------- 1 | /etc/alluxio/conf.dist 2 | /usr/lib/alluxio 3 | /usr/bin 4 | /var/run/alluxio 5 | /var/log/alluxio 6 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/alluxio/alluxio.install: -------------------------------------------------------------------------------- 1 | /etc/alluxio/conf.dist 2 | /usr/lib/alluxio 3 | /usr/bin/alluxio 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/alluxio/changelog: -------------------------------------------------------------------------------- 1 | --- This is auto-generated 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/alluxio/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/alluxio/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://www.alluxio.org/ 3 | Upstream-Name: Alluxio Project 4 | 5 | Files: * 6 | Copyright: 2010-2011, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | Files debian/* 10 | Copyright: 2011, The Apache Software Foundation 11 | License: Apache-2.0 12 | 13 | License: Apache-2.0 14 | On Debian systems, the complete text of the Apache 2.0 license 15 | can be found in "/usr/share/common-licenses/Apache-2.0". 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/alluxio/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/bigtop-groovy/bigtop-groovy.install: -------------------------------------------------------------------------------- 1 | /usr/lib/bigtop-groovy 2 | /usr/lib/bigtop-groovy/bin 3 | /usr/lib/bigtop-groovy/conf 4 | /usr/lib/bigtop-groovy/lib -------------------------------------------------------------------------------- /bigtop-packages/src/deb/bigtop-groovy/changelog: -------------------------------------------------------------------------------- 1 | --- This is auto-generated 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/bigtop-groovy/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/bigtop-groovy/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://commons.apache.org/daemon/ 3 | Upstream-Name: Apache Commons Daemon 4 | 5 | Files: * 6 | Copyright: 2008-2012, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | Files debian/* 10 | Copyright: 2012, The Apache Software Foundation 11 | License: Apache-2.0 12 | 13 | License: Apache-2.0 14 | On Debian systems, the complete text of the Apache 2.0 license 15 | can be found in "/usr/share/common-licenses/Apache-2.0". 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/bigtop-groovy/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/bigtop-jsvc/bigtop-jsvc.install: -------------------------------------------------------------------------------- 1 | /usr/lib/bigtop-utils 2 | /usr/share/doc/bigtop-jsvc 3 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/bigtop-jsvc/changelog: -------------------------------------------------------------------------------- 1 | --- This is auto-generated 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/bigtop-jsvc/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/bigtop-jsvc/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://commons.apache.org/daemon/ 3 | Upstream-Name: Apache Commons Daemon 4 | 5 | Files: * 6 | Copyright: 2008-2012, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | Files debian/* 10 | Copyright: 2012, The Apache Software Foundation 11 | License: Apache-2.0 12 | 13 | License: Apache-2.0 14 | On Debian systems, the complete text of the Apache 2.0 license 15 | can be found in "/usr/share/common-licenses/Apache-2.0". 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/bigtop-jsvc/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/bigtop-utils/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/bigtop-utils/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://bigtop.apache.org/ 3 | Upstream-Name: Apache Bigtop 4 | 5 | Files: * 6 | Copyright: 2008-2011, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | Files debian/* 10 | Copyright: 2011, The Apache Software Foundation 11 | License: Apache-2.0 12 | 13 | License: Apache-2.0 14 | On Debian systems, the complete text of the Apache 2.0 license 15 | can be found in "/usr/share/common-licenses/Apache-2.0". 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/bigtop-utils/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/flink/changelog: -------------------------------------------------------------------------------- 1 | --- This is auto-generated -------------------------------------------------------------------------------- /bigtop-packages/src/deb/flink/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/flink/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://flink.apache.org/ 3 | Upstream-Name: Apache Flink 4 | 5 | Files: * 6 | Copyright: 2010-2011, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | Files debian/* 10 | Copyright: 2011, The Apache Software Foundation 11 | License: Apache-2.0 12 | 13 | License: Apache-2.0 14 | On Debian systems, the complete text of the Apache 2.0 license 15 | can be found in "/usr/share/common-licenses/Apache-2.0". 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/flink/flink.dirs: -------------------------------------------------------------------------------- 1 | /usr/lib/flink 2 | /usr/lib/flink/lib 3 | /usr/lib/flink/bin 4 | /usr/lib/flink/log 5 | /usr/bin 6 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/flink/flink.install: -------------------------------------------------------------------------------- 1 | /etc/flink 2 | /usr/lib/flink 3 | /usr/lib/flink/lib 4 | /usr/lib/flink/bin 5 | /usr/bin 6 | /var/log/flink 7 | /var/log/flink-cli 8 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/flink/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/changelog: -------------------------------------------------------------------------------- 1 | -- NOTE: this gets auto-generated -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://hadoop.apache.org/ 3 | Upstream-Name: Apache Hadoop 4 | 5 | Files: * 6 | Copyright: 2008-2011, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | Files debian/* 10 | Copyright: 2011, The Apache Software Foundation 11 | License: Apache-2.0 12 | 13 | License: Apache-2.0 14 | On Debian systems, the complete text of the Apache 2.0 license 15 | can be found in "/usr/share/common-licenses/Apache-2.0". 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-client.install: -------------------------------------------------------------------------------- 1 | /usr/lib/hadoop/client 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-conf-pseudo.install: -------------------------------------------------------------------------------- 1 | /etc/hadoop/conf.pseudo 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-conf-pseudo.lintian-overrides: -------------------------------------------------------------------------------- 1 | hadoop-conf-pseudo: new-package-should-close-itp-bug 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-doc.dirs: -------------------------------------------------------------------------------- 1 | /usr/share/doc/hadoop-doc/ 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-doc.install: -------------------------------------------------------------------------------- 1 | /usr/share/doc/hadoop-doc 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-doc.lintian-overrides: -------------------------------------------------------------------------------- 1 | hadoop-doc: embedded-javascript-library usr/share/doc/hadoop-doc/cn/skin/prototype.js.gz 2 | hadoop-doc: embedded-javascript-library usr/share/doc/hadoop-doc/skin/prototype.js.gz 3 | hadoop-doc: new-package-should-close-itp-bug 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-hdfs-fuse.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/deb/hadoop/hadoop-hdfs-fuse.dirs -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-hdfs-fuse.install: -------------------------------------------------------------------------------- 1 | /etc/default/hadoop-fuse 2 | /usr/bin/hadoop-fuse-dfs 3 | /usr/lib/hadoop/bin/fuse_dfs 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-hdfs-fuse.lintian-overrides: -------------------------------------------------------------------------------- 1 | hadoop-hdfs-fuse: new-package-should-close-itp-bug 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-hdfs-fuse.manpages: -------------------------------------------------------------------------------- 1 | debian/hadoop-fuse-dfs.1 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-hdfs.dirs: -------------------------------------------------------------------------------- 1 | /etc/hadoop/conf.empty/ 2 | /usr/lib/hadoop/libexec 3 | /usr/lib/hadoop-hdfs 4 | /usr/bin 5 | /var/lib/hadoop-hdfs/cache 6 | /var/log/hadoop-hdfs 7 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-hdfs.install: -------------------------------------------------------------------------------- 1 | /etc/security/limits.d/hdfs.conf 2 | /etc/hadoop/conf.empty/hdfs-site.xml 3 | /usr/lib/hadoop-hdfs 4 | /usr/lib/hadoop/libexec/hdfs-config.sh 5 | /usr/lib/hadoop/libexec/init-hdfs.sh 6 | /usr/lib/hadoop/libexec/init-hcfs.json 7 | /usr/lib/hadoop/libexec/init-hcfs.groovy 8 | /usr/bin/hdfs 9 | /var/lib/hadoop-hdfs 10 | /var/log/hadoop-hdfs 11 | /run/hadoop-hdfs 12 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-httpfs.dirs: -------------------------------------------------------------------------------- 1 | /var/log/hadoop-httpfs 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-httpfs.install: -------------------------------------------------------------------------------- 1 | /etc/hadoop/conf.empty/httpfs-env.sh 2 | /etc/hadoop/conf.empty/httpfs-log4j.properties 3 | /etc/hadoop/conf.empty/httpfs-site.xml 4 | /var/lib/hadoop-httpfs 5 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-kms.dirs: -------------------------------------------------------------------------------- 1 | /var/log/hadoop-kms 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-kms.install: -------------------------------------------------------------------------------- 1 | /etc/hadoop/conf.empty/kms-acls.xml 2 | /etc/hadoop/conf.empty/kms-env.sh 3 | /etc/hadoop/conf.empty/kms-log4j.properties 4 | /etc/hadoop/conf.empty/kms-site.xml 5 | /var/lib/hadoop-kms 6 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-mapreduce.dirs: -------------------------------------------------------------------------------- 1 | /etc/hadoop/conf.empty/ 2 | /usr/lib/hadoop/libexec 3 | /usr/lib/hadoop-mapreduce 4 | /usr/bin 5 | /var/lib/hadoop-mapreduce/cache 6 | /var/log/hadoop-mapreduce 7 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-mapreduce.install: -------------------------------------------------------------------------------- 1 | /etc/security/limits.d/mapreduce.conf 2 | /etc/hadoop/conf.empty/mapred-site.xml 3 | /etc/hadoop/conf.empty/mapred-env.sh 4 | /etc/hadoop/conf.empty/mapred-queues.xml.template 5 | /usr/lib/hadoop-mapreduce 6 | /usr/lib/hadoop/libexec/mapred-config.sh 7 | /usr/bin/mapred 8 | /var/lib/hadoop-mapreduce 9 | /var/log/hadoop-mapreduce 10 | /run/hadoop-mapreduce 11 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-native.lintian-overrides: -------------------------------------------------------------------------------- 1 | hadoop-native: new-package-should-close-itp-bug 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-yarn.dirs: -------------------------------------------------------------------------------- 1 | /etc/hadoop/conf.empty/ 2 | /usr/lib/hadoop/libexec 3 | /usr/lib/hadoop-yarn 4 | /usr/bin 5 | /var/lib/hadoop-yarn/cache 6 | /var/log/hadoop-yarn 7 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop-yarn.install: -------------------------------------------------------------------------------- 1 | /etc/security/limits.d/yarn.conf 2 | /etc/hadoop/conf.empty/yarn-env.sh 3 | /etc/hadoop/conf.empty/yarn-site.xml 4 | /etc/hadoop/conf.empty/capacity-scheduler.xml 5 | /etc/hadoop/conf.empty/container-executor.cfg 6 | /usr/lib/hadoop-yarn 7 | /usr/lib/hadoop/libexec/yarn-config.sh 8 | /usr/bin/yarn 9 | /var/lib/hadoop-yarn 10 | /var/log/hadoop-yarn 11 | /run/hadoop-yarn 12 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop.dirs: -------------------------------------------------------------------------------- 1 | /etc/hadoop/conf.empty/ 2 | /usr/lib/hadoop 3 | /usr/bin 4 | /usr/share/doc/hadoop 5 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop.install: -------------------------------------------------------------------------------- 1 | /etc/hadoop/conf.empty/hadoop-metrics2.properties 2 | /etc/hadoop/conf.empty/log4j.properties 3 | /etc/hadoop/conf.empty/workers 4 | /etc/hadoop/conf.empty/ssl-client.xml.example 5 | /etc/hadoop/conf.empty/ssl-server.xml.example 6 | /etc/hadoop/conf.empty/core-site.xml 7 | /etc/hadoop/conf.empty/configuration.xsl 8 | /etc/hadoop/conf.empty/hadoop-env.sh 9 | /etc/hadoop/conf.empty/hadoop-policy.xml 10 | /etc/default/hadoop 11 | /etc/bash_completion.d/hadoop 12 | /usr/lib/hadoop/etc 13 | /usr/lib/hadoop/libexec/hadoop-config.sh 14 | /usr/lib/hadoop/libexec/hadoop-layout.sh 15 | /usr/lib/hadoop/libexec/hadoop-functions.sh 16 | /usr/lib/hadoop/libexec/shellprofile.d 17 | /usr/lib/hadoop/libexec/tools 18 | /usr/lib/hadoop/*.jar 19 | /usr/lib/hadoop/lib 20 | /usr/lib/hadoop/sbin 21 | /usr/lib/hadoop/bin 22 | /usr/lib/hadoop/tools 23 | /usr/bin/hadoop 24 | /usr/share/man/man1/hadoop.1.* 25 | /usr/share/man/man1/hdfs.1.* 26 | /usr/share/man/man1/yarn.1.* 27 | /usr/share/man/man1/mapred.1.* 28 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop.lintian-overrides: -------------------------------------------------------------------------------- 1 | hadoop: extra-license-file usr/lib/hadoop/LICENSE.txt 2 | hadoop: new-package-should-close-itp-bug 3 | hadoop: shell-script-fails-syntax-check ./usr/lib/hadoop/contrib/hod/bin/hod 4 | hadoop: shell-script-fails-syntax-check ./usr/lib/hadoop/contrib/hod/bin/hodcleanup 5 | hadoop: shell-script-fails-syntax-check ./usr/lib/hadoop/contrib/hod/bin/hodring 6 | hadoop: shell-script-fails-syntax-check ./usr/lib/hadoop/contrib/hod/bin/ringmaster 7 | hadoop: shell-script-fails-syntax-check ./usr/lib/hadoop/contrib/hod/support/logcondense.py 8 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/hadoop.manpages: -------------------------------------------------------------------------------- 1 | debian/hadoop.1 2 | debian/hdfs.1 3 | debian/yarn.1 4 | debian/mapred.1 5 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/libhdfs0-dev.install: -------------------------------------------------------------------------------- 1 | /usr/include/hdfs.h 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/libhdfs0.dirs: -------------------------------------------------------------------------------- 1 | /usr/lib/ 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/libhdfs0.install: -------------------------------------------------------------------------------- 1 | /usr/lib/libhdfs.* 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/libhdfspp-dev.dirs: -------------------------------------------------------------------------------- 1 | /usr/include/hdfspp 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/libhdfspp-dev.install: -------------------------------------------------------------------------------- 1 | /usr/include/hdfspp 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/libhdfspp.dirs: -------------------------------------------------------------------------------- 1 | /usr/lib/ 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/libhdfspp.install: -------------------------------------------------------------------------------- 1 | /usr/lib/libhdfspp.* 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/shlibs.local: -------------------------------------------------------------------------------- 1 | libjvm 1 sun-java6-bin (>= 6) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/source.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/deb/hadoop/source.lintian-overrides -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hadoop/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hbase/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hbase/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://hbase.apache.org/ 3 | Upstream-Name: Apache HBase 4 | 5 | Files: * 6 | Copyright: 2008-2011, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | Files debian/* 10 | Copyright: 2011, The Apache Software Foundation 11 | License: Apache-2.0 12 | 13 | License: Apache-2.0 14 | On Debian systems, the complete text of the Apache 2.0 license 15 | can be found in "/usr/share/common-licenses/Apache-2.0". 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hbase/hbase-doc.dirs: -------------------------------------------------------------------------------- 1 | /usr/share/doc/hbase-doc/ 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hbase/hbase-doc.install: -------------------------------------------------------------------------------- 1 | /usr/share/doc/hbase-doc 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hbase/hbase.dirs: -------------------------------------------------------------------------------- 1 | /usr/bin 2 | /var/log/hbase 3 | /var/run/hbase 4 | /etc/default 5 | /var/lib/hbase 6 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hbase/hbase.install: -------------------------------------------------------------------------------- 1 | /usr/lib/hbase 2 | /usr/bin/hbase 3 | /etc/hbase 4 | /etc/security/limits.d/hbase.nofiles.conf 5 | /etc/default/hbase 6 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hbase/hbase.manpages: -------------------------------------------------------------------------------- 1 | debian/hbase.1 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hbase/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hive/changelog: -------------------------------------------------------------------------------- 1 | -- NOTE: this gets auto-generated 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hive/compat: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hive/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://hive.apache.org/ 3 | Upstream-Name: Apache Hive 4 | 5 | Files: * 6 | Copyright: 2008-2014, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | Files debian/* 10 | Copyright: 2014, The Apache Software Foundation 11 | License: Apache-2.0 12 | 13 | License: Apache-2.0 14 | On Debian systems, the complete text of the Apache 2.0 license 15 | can be found in "/usr/share/common-licenses/Apache-2.0". 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hive/hive-hbase.install: -------------------------------------------------------------------------------- 1 | /usr/lib/hive/lib/hbase-*.jar 2 | /usr/lib/hive/lib/hive-hbase-handler*.jar 3 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hive/hive-hcatalog.dirs: -------------------------------------------------------------------------------- 1 | /var/lib/hive-hcatalog 2 | /var/log/hive-hcatalog 3 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hive/hive-hcatalog.install: -------------------------------------------------------------------------------- 1 | /etc/hive-hcatalog 2 | /usr/bin/hcat 3 | /usr/share/man/man1/hive-hcatalog.1.gz 4 | /usr/lib/hive-hcatalog/bin 5 | /usr/lib/hive-hcatalog/etc/hcatalog 6 | /usr/lib/hive-hcatalog/libexec 7 | /usr/lib/hive-hcatalog/sbin/hcat* 8 | /usr/lib/hive-hcatalog/sbin/update-hcatalog-env.sh 9 | /usr/lib/hive-hcatalog/share/hcatalog 10 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hive/hive-jdbc.install: -------------------------------------------------------------------------------- 1 | /usr/lib/hive/jdbc/hive-jdbc*.jar 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hive/hive-webhcat.install: -------------------------------------------------------------------------------- 1 | /etc/hive-webhcat 2 | /usr/lib/hive-hcatalog/etc/webhcat 3 | /usr/lib/hive-hcatalog/share/webhcat 4 | /usr/lib/hive-hcatalog/sbin/webhcat* 5 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hive/hive.dirs: -------------------------------------------------------------------------------- 1 | /var/log/hive 2 | /var/run/hive 3 | /var/lib/hive/metastore 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hive/hive.install.include: -------------------------------------------------------------------------------- 1 | etc/hive 2 | usr/bin/hive 3 | usr/bin/beeline 4 | usr/bin/hiveserver2 5 | usr/lib/hive/bin 6 | usr/lib/hive/conf 7 | usr/lib/hive/scripts 8 | usr/share/man/man1/hive.1.gz 9 | usr/share/doc/hive 10 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/hive/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/kafka/changelog: -------------------------------------------------------------------------------- 1 | --- This is auto-generated 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/kafka/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/kafka/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep7 2 | Source: http://kafka.apache.org/ 3 | Upstream-Name: Apache Kafka 4 | 5 | Files: * 6 | Copyright: 2008-2015, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | License: Apache-2.0 10 | On Debian systems, the complete text of the Apache 2.0 license 11 | can be found in "/usr/share/common-licenses/Apache-2.0". 12 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/kafka/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/livy/changelog: -------------------------------------------------------------------------------- 1 | --- This is auto-generated 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/livy/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/livy/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://livy.incubator.apache.org/ 3 | Upstream-Name: Apache Livy (Incubating) 4 | 5 | Files: * 6 | Copyright: 2013-2015, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | Files debian/* 10 | Copyright: 2011, The Apache Software Foundation 11 | License: Apache-2.0 12 | 13 | License: Apache-2.0 14 | On Debian systems, the complete text of the Apache 2.0 license 15 | can be found in "/usr/share/common-licenses/Apache-2.0". 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/livy/livy.dirs: -------------------------------------------------------------------------------- 1 | /usr/bin 2 | /usr/lib/livy 3 | /var/log/livy 4 | /var/run/livy 5 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/livy/livy.install: -------------------------------------------------------------------------------- 1 | /etc/livy 2 | /usr/lib/livy 3 | /var/lib/livy 4 | /var/log/livy 5 | /var/run/livy 6 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/livy/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/phoenix/changelog: -------------------------------------------------------------------------------- 1 | --- This is auto-generated 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/phoenix/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/phoenix/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://phoenix.apache.org 3 | Upstream-Name: Phoenix 4 | 5 | Files: * 6 | Copyright: 2013, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | License: Apache-2.0 10 | On Debian systems, the complete text of the Apache 2.0 license 11 | can be found in "/usr/share/common-licenses/Apache-2.0". 12 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/phoenix/phoenix.install: -------------------------------------------------------------------------------- 1 | /etc/phoenix/conf.dist 2 | /usr/lib/phoenix 3 | /usr/share/doc/phoenix 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/phoenix/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/ranger/changelog: -------------------------------------------------------------------------------- 1 | -- NOTE: this gets auto-generated 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/ranger/compat: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/ranger/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://ranger.apache.org/ 3 | Upstream-Name: Apache Ranger 4 | 5 | Files: * 6 | Copyright: 2014-2019, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | License: Apache-2.0 10 | On Debian systems, the complete text of the Apache 2.0 license 11 | can be found in "/usr/share/common-licenses/Apache-2.0". 12 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/ranger/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/solr/changelog: -------------------------------------------------------------------------------- 1 | --- This is auto-generated 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/solr/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/solr/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://lucene.apache.org/solr 3 | Upstream-Name: Apache Solr 4 | 5 | Files: * 6 | Copyright: 1999-2012, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | Files debian/* 10 | Copyright: 2011, The Apache Software Foundation 11 | License: Apache-2.0 12 | 13 | License: Apache-2.0 14 | On Debian systems, the complete text of the Apache 2.0 license 15 | can be found in "/usr/share/common-licenses/Apache-2.0". 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/solr/solr-doc.install: -------------------------------------------------------------------------------- 1 | #DOCS# 2 | /usr/share/doc/solr-doc 3 | 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/solr/solr-server.install: -------------------------------------------------------------------------------- 1 | /etc/init.d/solr-server 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/solr/solr.install: -------------------------------------------------------------------------------- 1 | /etc/default 2 | /etc/solr 3 | /usr/lib/solr 4 | /usr/bin/solrctl 5 | /var 6 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/solr/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/spark/changelog: -------------------------------------------------------------------------------- 1 | --- This is auto-generated 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/spark/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/spark/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://spark.apache.org/ 3 | Upstream-Name: Spark Project 4 | 5 | Files: * 6 | Copyright: 2010-2011, The Spark Project 7 | License: Apache-2.0 8 | 9 | Files debian/* 10 | Copyright: 2011, The Apache Software Foundation 11 | License: Apache-2.0 12 | 13 | License: Apache-2.0 14 | On Debian systems, the complete text of the Apache 2.0 license 15 | can be found in "/usr/share/common-licenses/Apache-2.0". 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/spark/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/spark/spark-core.install: -------------------------------------------------------------------------------- 1 | /etc/spark 2 | /usr/bin/spark-class 3 | /usr/bin/spark-example 4 | /usr/bin/spark-shell 5 | /usr/bin/spark-sql 6 | /usr/bin/spark-submit 7 | /usr/bin/find-spark-home 8 | /usr/lib/spark/LICENSE 9 | /usr/lib/spark/README.md 10 | /usr/lib/spark/RELEASE 11 | /usr/lib/spark/NOTICE 12 | /usr/lib/spark/bin/beeline 13 | /usr/lib/spark/bin/load-spark-env.sh 14 | /usr/lib/spark/bin/run-example 15 | /usr/lib/spark/bin/spark-class 16 | /usr/lib/spark/bin/spark-shell 17 | /usr/lib/spark/bin/spark-sql 18 | /usr/lib/spark/bin/spark-submit 19 | /usr/lib/spark/bin/find-spark-home 20 | /usr/lib/spark/conf 21 | /usr/lib/spark/data 22 | /usr/lib/spark/examples 23 | /usr/lib/spark/jars 24 | /usr/lib/spark/kubernetes 25 | /usr/lib/spark/licenses 26 | /usr/lib/spark/sbin 27 | /usr/lib/spark/work 28 | /usr/share/doc/spark* 29 | /var/lib/spark/ 30 | /var/log/spark/ 31 | /var/run/spark/ 32 | /var/run/spark/work/ 33 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/spark/spark-datanucleus.install: -------------------------------------------------------------------------------- 1 | /usr/lib/spark/jars/datanucleus-*.jar 2 | /usr/lib/spark/yarn/lib/datanucleus-*.jar 3 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/spark/spark-external.install: -------------------------------------------------------------------------------- 1 | /usr/lib/spark/external/lib 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/spark/spark-python.install: -------------------------------------------------------------------------------- 1 | /usr/bin/pyspark 2 | /usr/lib/spark/bin/pyspark 3 | /usr/lib/spark/python 4 | 5 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/spark/spark-sparkr.install: -------------------------------------------------------------------------------- 1 | /usr/bin/sparkR 2 | /usr/lib/spark/bin/sparkR 3 | /usr/lib/spark/R 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/spark/spark-yarn-shuffle.install: -------------------------------------------------------------------------------- 1 | /usr/lib/spark/yarn/spark-*-yarn-shuffle.jar 2 | /usr/lib/spark/yarn/lib/spark-yarn-shuffle.jar 3 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/tez/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/tez/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://tez.apache.org 3 | Upstream-Name: Apache Tez Incubator 4 | 5 | Files: * 6 | Copyright: 2008-2014, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | Files debian/* 10 | Copyright: 2014, The Apache Software Foundation 11 | License: Apache-2.0 12 | 13 | License: Apache-2.0 14 | On Debian systems, the complete text of the Apache 2.0 license 15 | can be found in "/usr/share/common-licenses/Apache-2.0". 16 | 17 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/tez/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/tez/tez.install: -------------------------------------------------------------------------------- 1 | /usr/lib/tez 2 | /usr/share/man/man1 3 | /etc/tez/conf.dist 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/zeppelin/changelog: -------------------------------------------------------------------------------- 1 | --- This is auto-generated 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/zeppelin/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/zeppelin/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://zeppelin.apache.org/ 3 | Upstream-Name: Apache Zeppelin 4 | 5 | Files: * 6 | Copyright: 2013-2015, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | Files debian/* 10 | Copyright: 2011, The Apache Software Foundation 11 | License: Apache-2.0 12 | 13 | License: Apache-2.0 14 | On Debian systems, the complete text of the Apache 2.0 license 15 | can be found in "/usr/share/common-licenses/Apache-2.0". 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/zeppelin/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/zeppelin/zeppelin.dirs: -------------------------------------------------------------------------------- 1 | /usr/bin 2 | /var/log/zeppelin 3 | /var/run/zeppelin 4 | /etc/default 5 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/zeppelin/zeppelin.install: -------------------------------------------------------------------------------- 1 | /etc/zeppelin 2 | /usr/lib/zeppelin 3 | /var/lib/zeppelin 4 | /var/run/zeppelin 5 | /var/run/zeppelin/webapps 6 | /usr/share/doc/zeppelin 7 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/zookeeper/changelog: -------------------------------------------------------------------------------- 1 | --- This is auto-generated 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/zookeeper/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/zookeeper/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Source: http://zookeeper.apache.org/ 3 | Upstream-Name: Apache Zookeeper 4 | 5 | Files: * 6 | Copyright: 2008-2011, The Apache Software Foundation 7 | License: Apache-2.0 8 | 9 | Files debian/* 10 | Copyright: 2011, The Apache Software Foundation 11 | License: Apache-2.0 12 | 13 | License: Apache-2.0 14 | On Debian systems, the complete text of the Apache 2.0 license 15 | can be found in "/usr/share/common-licenses/Apache-2.0". 16 | -------------------------------------------------------------------------------- /bigtop-packages/src/deb/zookeeper/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/bigtop-groovy/SPECS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/bigtop-groovy/SPECS/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/bigtop-jsvc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/bigtop-jsvc/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/bigtop-jsvc/RPMS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/bigtop-jsvc/RPMS/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/bigtop-jsvc/SPECS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/bigtop-jsvc/SPECS/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/bigtop-jsvc/SRPMS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/bigtop-jsvc/SRPMS/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/bigtop-select/RPMS/.gitignore: -------------------------------------------------------------------------------- 1 | repodata 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/bigtop-select/SPECS/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/bigtop-utils/RPMS/.gitignore: -------------------------------------------------------------------------------- 1 | repodata 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/bigtop-utils/SPECS/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/hadoop/RPMS/.gitignore: -------------------------------------------------------------------------------- 1 | repodata 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/hadoop/SOURCES/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/hadoop/SOURCES/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/hadoop/SPECS/.gitignore: -------------------------------------------------------------------------------- 1 | hadoop.spec 2 | pig.spec 3 | hive.spec 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/hbase/RPMS/.gitignore: -------------------------------------------------------------------------------- 1 | repodata 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/hbase/SOURCES/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/hbase/SOURCES/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/hbase/SPECS/.gitignore: -------------------------------------------------------------------------------- 1 | hadoop.spec 2 | pig.spec 3 | hive.spec 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/hbase/SRPMS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/hbase/SRPMS/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/hive/RPMS/.gitignore: -------------------------------------------------------------------------------- 1 | repodata 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/hive/SPECS/.gitignore: -------------------------------------------------------------------------------- 1 | hadoop.spec 2 | pig.spec 3 | hive.spec 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/phoenix/RPMS/.gitignore: -------------------------------------------------------------------------------- 1 | repodata 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/phoenix/SOURCES/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/phoenix/SOURCES/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/phoenix/SPECS/.gitignore: -------------------------------------------------------------------------------- 1 | hadoop.spec 2 | pig.spec 3 | hive.spec 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/phoenix/SRPMS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/phoenix/SRPMS/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/solr/BUILD/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/solr/BUILD/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/solr/RPMS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/solr/RPMS/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/solr/SOURCES/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/solr/SOURCES/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/solr/SRPMS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/solr/SRPMS/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/spark/BUILD/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/spark/BUILD/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/spark/RPMS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/spark/RPMS/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/spark/SOURCES/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/spark/SOURCES/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/spark/SRPMS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/spark/SRPMS/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/tez/RPMS/.gitignore: -------------------------------------------------------------------------------- 1 | repodata 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/zookeeper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/zookeeper/.gitignore -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/zookeeper/RPMS/.gitignore: -------------------------------------------------------------------------------- 1 | repodata 2 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/zookeeper/SPECS/.gitignore: -------------------------------------------------------------------------------- 1 | hadoop.spec 2 | pig.spec 3 | hive.spec 4 | -------------------------------------------------------------------------------- /bigtop-packages/src/rpm/zookeeper/SRPMS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-packages/src/rpm/zookeeper/SRPMS/.gitignore -------------------------------------------------------------------------------- /bigtop-tests/cloud-weather-report/hadoop-processing.yaml: -------------------------------------------------------------------------------- 1 | # Bundle info: https://jujucharms.com/hadoop-processing 2 | bundle: bundle:hadoop-processing 3 | benchmark: 4 | resourcemanager: 5 | terasort 6 | bundle_name: hadoop-processing 7 | bundle_file: bundle.yaml 8 | -------------------------------------------------------------------------------- /bigtop-tests/smoke-tests/alluxio/datafile: -------------------------------------------------------------------------------- 1 | Test file to see if Hadoop is able to read this file from Alluxio. 2 | -------------------------------------------------------------------------------- /bigtop-tests/smoke-tests/flink/test.data: -------------------------------------------------------------------------------- 1 | green blue yellow 2 | yellow green blue black white 3 | yellow green blue 4 | white yellow green blue black 5 | blue yellow green 6 | black white yellow green blue 7 | green blue yellow 8 | blue black white yellow green 9 | yellow green blue 10 | green blue black white yellow 11 | blue yellow green 12 | -------------------------------------------------------------------------------- /bigtop-tests/smoke-tests/hive/passwd.ql: -------------------------------------------------------------------------------- 1 | drop table hivesmoke; 2 | create external table hivesmoke ( 3 | field1 STRING 4 | ) 5 | location '/tmp/hivesmoketest/'; 6 | select * from hivesmoke; 7 | -------------------------------------------------------------------------------- /bigtop-tests/smoke-tests/logger-test-config/build.gradle: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | *

10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | *

12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | dependencies { 19 | runtime group: 'log4j', name: 'log4j', version: '1.2.17' 20 | } 21 | -------------------------------------------------------------------------------- /bigtop-tests/smoke-tests/phoenix/smoke-test-teardown.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE STOCK_SYMBOL 2 | -------------------------------------------------------------------------------- /bigtop-tests/smoke-tests/phoenix/smoke-test.sql: -------------------------------------------------------------------------------- 1 | SELECT * FROM STOCK_SYMBOL; 2 | -------------------------------------------------------------------------------- /bigtop-tests/smoke-tests/solr/delete.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | *:* 24 | -------------------------------------------------------------------------------- /bigtop-tests/smoke-tests/solr/indexing.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "doc1", 4 | "name": "first test document" 5 | }, 6 | { 7 | "id": "doc2", 8 | "name": "second test document" 9 | } 10 | ] -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hadoop/src/main/resources/cachedir.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-tests/test-artifacts/hadoop/src/main/resources/cachedir.jar -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hadoop/src/main/resources/clitest_data/data120bytes: -------------------------------------------------------------------------------- 1 | 12345678901234 2 | 12345678901234 3 | 12345678901234 4 | 12345678901234 5 | 12345678901234 6 | 12345678901234 7 | 12345678901234 8 | 12345678901234 9 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hadoop/src/main/resources/clitest_data/data15bytes: -------------------------------------------------------------------------------- 1 | 12345678901234 2 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hadoop/src/main/resources/clitest_data/data30bytes: -------------------------------------------------------------------------------- 1 | 12345678901234 2 | 12345678901234 3 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hadoop/src/main/resources/clitest_data/data60bytes: -------------------------------------------------------------------------------- 1 | 12345678901234 2 | 12345678901234 3 | 12345678901234 4 | 12345678901234 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hadoop/src/main/resources/input.txt: -------------------------------------------------------------------------------- 1 | testlink/cache.txt 2 | testlink/cache2.txt 3 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hadoop/src/main/resources/map.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Licensed to the Apache Software Foundation (ASF) under one or more 4 | # contributor license agreements. See the NOTICE file distributed with 5 | # this work for additional information regarding copyright ownership. 6 | # The ASF licenses this file to You under the Apache License, Version 2.0 7 | # (the "License"); you may not use this file except in compliance with 8 | # the License. You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | 18 | xargs cat 19 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hadoop/src/main/resources/part-00001.snappy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-tests/test-artifacts/hadoop/src/main/resources/part-00001.snappy -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hadoop/src/main/resources/test_data/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-tests/test-artifacts/hadoop/src/main/resources/test_data/test.zip -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hadoop/src/main/resources/test_data/test_1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 20 3 | 300 4 | 4000 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hadoop/src/main/resources/test_data/test_2.txt: -------------------------------------------------------------------------------- 1 | a 2 | bc 3 | def 4 | ghij 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hadoop/src/main/resources/test_data/test_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-tests/test-artifacts/hadoop/src/main/resources/test_data/test_3 -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hcatalog/README: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | This is a project to develop and build HCatalog smoke and system tests. 17 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hcatalog/src/main/resources/data/data-2013-01-01.txt: -------------------------------------------------------------------------------- 1 | k,v1 2 | k,v2 3 | k,v3 4 | k,v4 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hcatalog/src/main/resources/data/data-2013-01-02.txt: -------------------------------------------------------------------------------- 1 | k',v1 2 | k',v2 3 | k',v5 4 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hcatalog/src/main/resources/hcat_basic_count.expected: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hcatalog/src/main/resources/hcat_basic_describe.expected: -------------------------------------------------------------------------------- 1 | key string 2 | value string 3 | dt string 4 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/hcatalog/src/main/resources/hcat_basic_partitions.expected: -------------------------------------------------------------------------------- 1 | dt=2013-01-01 2 | dt=2013-01-02 3 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/httpfs/src/main/resources/text-files/helloworld.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/longevity/src/main/groovy/org/apache/bigtop/itest/iolongevity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/bigtop-tests/test-artifacts/longevity/src/main/groovy/org/apache/bigtop/itest/iolongevity/.gitignore -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/apt/hadoop-hdfs-datanode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/apt/hadoop-hdfs-namenode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/apt/hadoop-hdfs-secondarynamenode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/apt/hadoop-hdfs-zkfc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/apt/hadoop-mapreduce-historyserver.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/apt/hadoop-yarn-nodemanager.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/apt/hadoop-yarn-proxyserver.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/apt/hadoop-yarn-resourcemanager.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/apt/libhdfs0-dev.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/apt/libhdfs0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/urpmi/bigtop-jsvc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/urpmi/hadoop-client.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/urpmi/hadoop-hdfs-fuse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/urpmi/hadoop-hdfs-zkfc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/urpmi/hadoop-libhdfs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/urpmi/hbase-rest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/bigtop-jsvc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/bigtop-utils.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-datanode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-hdfs-datanode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-hdfs-fuse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-hdfs-namenode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-hdfs-secondarynamenode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-hdfs-zkfc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-jobtracker.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-libhdfs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-mapreduce-historyserver.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-namenode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-pipes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-secondarynamenode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-tasktracker.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-yarn-nodemanager.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-yarn-proxyserver.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hadoop-yarn-resourcemanager.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hbase-master.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hbase-regionserver.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hbase-rest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hbase-thrift.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hive-jdbc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hive-metastore.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/hive-server.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/solr-server.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/yum/zookeeper-server.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/bigtop-jsvc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/bigtop-utils.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-datanode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-hdfs-datanode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-hdfs-fuse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-hdfs-namenode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-hdfs-secondarynamenode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-hdfs-zkfc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-jobtracker.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-libhdfs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-mapreduce-historyserver.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-namenode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-pipes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-secondarynamenode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-tasktracker.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-yarn-nodemanager.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-yarn-proxyserver.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hadoop-yarn-resourcemanager.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hbase-master.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hbase-regionserver.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hbase-rest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hbase-thrift.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hive-jdbc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hive-metastore.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/hive-server.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/solr-server.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/package/src/main/resources/zypper/zookeeper-server.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bigtop-tests/test-artifacts/spark/src/main/resources/kmeans_data.txt: -------------------------------------------------------------------------------- 1 | 0.0 0.0 0.0 2 | 0.1 0.1 0.1 3 | 0.2 0.2 0.2 4 | 9.0 9.0 9.0 5 | 9.1 9.1 9.1 6 | 9.2 9.2 9.2 7 | -------------------------------------------------------------------------------- /bigtop_toolchain/files/grpc-java-1.28.0-add-support-for-ppc64le.patch: -------------------------------------------------------------------------------- 1 | diff --git a/compiler/build.gradle b/compiler/build.gradle 2 | index 60d3a43..55acee0 100644 3 | --- a/compiler/build.gradle 4 | +++ b/compiler/build.gradle 5 | @@ -105,7 +105,6 @@ model { 6 | // Link other (system) libraries dynamically. 7 | // Clang under OSX doesn't support these options. 8 | linker.args "-Wl,-Bstatic", "-lprotoc", "-lprotobuf", "-static-libgcc", 9 | - "-static-libstdc++", 10 | "-Wl,-Bdynamic", "-lpthread", "-s" 11 | } 12 | addEnvArgs("LDFLAGS", linker.args) 13 | -------------------------------------------------------------------------------- /bigtop_toolchain/manifests/development_tools.pp: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | class bigtop_toolchain::development_tools { 17 | include bigtop_toolchain::groovy 18 | } 19 | -------------------------------------------------------------------------------- /docker/pseudo-cluster/config/hieradata/site.yaml: -------------------------------------------------------------------------------- 1 | bigtop::hadoop_head_node: bigtop1.docker 2 | hadoop::hadoop_storage_dirs: 3 | - /data/1 4 | - /data/2 5 | hadoop_cluster_node::cluster_components: 6 | - hdfs 7 | - yarn 8 | - mapreduce 9 | bigtop::bigtop_repo_uri: http://repos.bigtop.apache.org/releases/1.2.1/ubuntu/16.04/x86_64 10 | 11 | -------------------------------------------------------------------------------- /docs/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/docs/logo.jpg -------------------------------------------------------------------------------- /provisioner/docker/.gitignore: -------------------------------------------------------------------------------- 1 | config/ 2 | .provision_id 3 | .error_msg* 4 | -------------------------------------------------------------------------------- /provisioner/docker/config.yaml: -------------------------------------------------------------------------------- 1 | config_ubuntu-22.04.yaml -------------------------------------------------------------------------------- /src/site/resources/images/apache-incubator-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/src/site/resources/images/apache-incubator-logo.png -------------------------------------------------------------------------------- /src/site/resources/images/bigtop-logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/src/site/resources/images/bigtop-logo.ai -------------------------------------------------------------------------------- /src/site/resources/images/bigtop-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/src/site/resources/images/bigtop-logo.png -------------------------------------------------------------------------------- /src/site/xdoc/team-list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/src/site/xdoc/team-list.xml -------------------------------------------------------------------------------- /test/MANIFEST.txt: -------------------------------------------------------------------------------- 1 | ASF License 2.0 2 | org.codehaus.groovy.maven.runtime:gmaven-runtime-1.6:jar:1.0 GMaven 3 | commons-logging:commons-logging:jar:1.1 ASF 4 | org.apache.ant:ant-junit:jar:1.8.2 ASF 5 | org.apache.pig:pigsmoke:jar:0.8.0-SNAPSHOT ASF 6 | 7 | Public Code License 1.0 8 | junit:junit:jar:4.8.1 JUnit 9 | -------------------------------------------------------------------------------- /test/NOTICE.txt: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | -------------------------------------------------------------------------------- /test/site/src/site/resources/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/test/site/src/site/resources/images/banner.png -------------------------------------------------------------------------------- /test/site/src/site/resources/images/itest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/bigtop/c689fa75e023f925d47ec1ffbf0560f0ce5a05e4/test/site/src/site/resources/images/itest.png --------------------------------------------------------------------------------