├── Dockerfile-hive ├── Dockerfile-java8 ├── Dockerfile-mysql ├── Dockerfile-spark ├── Dockerfile-ubuntu ├── README.md ├── conf ├── hive-site.xml └── spark │ └── log4j.properties ├── docker-compose.yml └── table_data └── tpcds └── customer └── customer.psv /Dockerfile-hive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amesar/docker-spark-hive-metastore/HEAD/Dockerfile-hive -------------------------------------------------------------------------------- /Dockerfile-java8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amesar/docker-spark-hive-metastore/HEAD/Dockerfile-java8 -------------------------------------------------------------------------------- /Dockerfile-mysql: -------------------------------------------------------------------------------- 1 | FROM mysql:5.6.38 2 | 3 | ENV MYSQL_ROOT_PASSWORD mysecret 4 | -------------------------------------------------------------------------------- /Dockerfile-spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amesar/docker-spark-hive-metastore/HEAD/Dockerfile-spark -------------------------------------------------------------------------------- /Dockerfile-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amesar/docker-spark-hive-metastore/HEAD/Dockerfile-ubuntu -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amesar/docker-spark-hive-metastore/HEAD/README.md -------------------------------------------------------------------------------- /conf/hive-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amesar/docker-spark-hive-metastore/HEAD/conf/hive-site.xml -------------------------------------------------------------------------------- /conf/spark/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amesar/docker-spark-hive-metastore/HEAD/conf/spark/log4j.properties -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amesar/docker-spark-hive-metastore/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /table_data/tpcds/customer/customer.psv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amesar/docker-spark-hive-metastore/HEAD/table_data/tpcds/customer/customer.psv --------------------------------------------------------------------------------