alexmerced/table-format-playground
Docker image for easy testing of Apache Iceberg/Apache Hudi/Delta Lake --- Twitter: @amdatalakehouse
136
Link to Repository with Dockerfiles
Article Comparing Apache Iceberg, Apache Hudi and Delta Lake
This container has the following Installed
iceberg-init
iceberg-spark-init
CREATE TEMPORARY VIEW my_data
USING csv
OPTIONS (
path 'sampledata/Worker_Coops.csv',
header true,
inferSchema true
);
Then to turn into a iceberg table
CREATE TABLE iceberg.db.worker_coop USING iceberg AS (SELECT * FROM my_data);
This command will init Spark-Shell with a Hudi catalog
hudi-init
This command will init Spark-Shell with a Delta Lake Catalog
delta-init
docker pull alexmerced/table-format-playground