Release Apache Iceberg 0.11.0
Add version.txt for release 0.11.0
1 file changed
tree: 2d25992f78ebb917d9e60cc4b1d7493f18e92594
  1. .baseline/
  2. .github/
  3. api/
  4. arrow/
  5. aws/
  6. bundled-guava/
  7. common/
  8. core/
  9. data/
  10. dev/
  11. examples/
  12. flink/
  13. flink-runtime/
  14. gradle/
  15. hive-metastore/
  16. hive-runtime/
  17. hive3/
  18. mr/
  19. nessie/
  20. orc/
  21. parquet/
  22. pig/
  23. project/
  24. python/
  25. site/
  26. spark/
  27. spark-runtime/
  28. spark2/
  29. spark3/
  30. spark3-extensions/
  31. spark3-runtime/
  32. .asf.yaml
  33. .gitattributes
  34. .gitignore
  35. baseline.gradle
  36. build.gradle
  37. deploy.gradle
  38. gradle.properties
  39. gradlew
  40. jitpack.yml
  41. jmh.gradle
  42. LICENSE
  43. NOTICE
  44. README.md
  45. settings.gradle
  46. tasks.gradle
  47. version.txt
  48. versions.props
README.md

Slack

Apache Iceberg is a new table format for storing large, slow-moving tabular data. It is designed to improve on the de-facto standard table layout built into Hive, Presto, and Spark.

Background and documentation is available at https://iceberg.apache.org

Status

Iceberg is under active development at the Apache Software Foundation.

The core Java library that tracks table snapshots and metadata is complete, but still evolving. Current work is focused on adding row-level deletes and upserts, and integration work with new engines like Flink and Hive.

The Iceberg format specification is being actively updated and is open for comment. Until the specification is complete and released, it carries no compatibility guarantees. The spec is currently evolving as the Java reference implementation changes.

Java API javadocs are available for the master.

Collaboration

Iceberg tracks issues in GitHub and prefers to receive contributions as pull requests.

Community discussions happen primarily on the dev mailing list or on specific issues.

Building

Iceberg is built using Gradle 5.4.1 with Java 1.8 or Java 11.

  • To invoke a build and run tests: ./gradlew build
  • To skip tests: ./gradlew build -x test

Iceberg table support is organized in library modules:

  • iceberg-common contains utility classes used in other modules
  • iceberg-api contains the public Iceberg API
  • iceberg-core contains implementations of the Iceberg API and support for Avro data files, this is what processing engines should depend on
  • iceberg-parquet is an optional module for working with tables backed by Parquet files
  • iceberg-arrow is an optional module for reading Parquet into Arrow memory
  • iceberg-orc is an optional module for working with tables backed by ORC files
  • iceberg-hive-metastore is an implementation of Iceberg tables backed by the Hive metastore Thrift client
  • iceberg-data is an optional module for working with tables directly from JVM applications

This project Iceberg also has modules for adding Iceberg support to processing engines:

  • iceberg-spark2 is an implementation of Spark's Datasource V2 API in 2.4 for Iceberg (use iceberg-spark-runtime for a shaded version)
  • iceberg-spark3 is an implementation of Spark's Datasource V2 API in 3.0 for Iceberg (use iceberg-spark3-runtime for a shaded version)
  • iceberg-flink contains classes for integrating with Apache Flink (use iceberg-flink-runtime for a shaded version)
  • iceberg-mr contains an InputFormat and other classes for integrating with Apache Hive
  • iceberg-pig is an implementation of Pig's LoadFunc API for Iceberg

Compatibility

Iceberg's Spark integration is compatible with Spark 2.4 and Spark 3.0 using the modules in the following table:

Iceberg versionSpark 2.4.xSpark 3.0.x
master branchspark-runtimespark3-runtime
0.9.0spark-runtimespark3-runtime
0.8.0spark-runtime