alexmerced/iceberg-starter
Image with Java/Scala/Spark and Script to quicly try Apache Iceberg Tables in Spark
262
Repo with Docker Compose File to Use Iceberg with Project Nessie (Git for Data)
This container has the following Installed
iceberg-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 local.db.worker_coop USING iceberg AS (SELECT * FROM my_data);
docker pull alexmerced/iceberg-starter