Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Iceberg | 4,349 | 8 hours ago | 4 | May 23, 2022 | 1,363 | apache-2.0 | Java | |||
Apache Iceberg | ||||||||||
Pdflayouttextstripper | 1,390 | 2 years ago | 2 | September 06, 2021 | 19 | apache-2.0 | Java | |||
Converts a pdf file into a text file while keeping the layout of the original pdf. Useful to extract the content from a table in a pdf file for instance. This is a subclass of PDFTextStripper class (from the Apache PDFBox library). | ||||||||||
Flink Sql Cookbook | 594 | 7 months ago | 3 | apache-2.0 | Dockerfile | |||||
The Apache Flink SQL Cookbook is a curated collection of examples, patterns, and use cases of Apache Flink SQL. Many of the recipes are completely self-contained and can be run in Ververica Platform as is. | ||||||||||
Recordbus | 79 | 8 years ago | 3 | isc | Clojure | |||||
recordbus: mysql binlog to apache kafka | ||||||||||
Beetest | 70 | 6 years ago | 1 | Java | ||||||
A super simple utility for testing Apache Hive scripts locally for non-Java developers. | ||||||||||
Sparksql For Hbase | 66 | 4 years ago | 1 | apache-2.0 | ||||||
Learn how to use Spark SQL and HSpark connector package to create / query data tables that reside in HBase region servers | ||||||||||
Hcatalog | 61 | 2 months ago | 2 | apache-2.0 | Java | |||||
Mirror of Apache HCatalog | ||||||||||
Iceberg | 56 | a month ago | 12 | August 26, 2022 | 5 | apache-2.0 | Java | |||
A temporary home for LinkedIn's changes to Apache Iceberg (incubating) | ||||||||||
Flink Kudu | 48 | 6 years ago | 1 | March 21, 2017 | 3 | Java | ||||
Java library to integrate Flink and Kudu | ||||||||||
Presto Kudu | 47 | 4 years ago | 1 | apache-2.0 | Java | |||||
Presto connector for Apache Kudu |
Iceberg is a high-performance format for huge analytic tables. Iceberg brings the reliability and simplicity of SQL tables to big data, while making it possible for engines like Spark, Trino, Flink, Presto, Hive and Impala to safely work with the same tables, at the same time.
Background and documentation is available at https://iceberg.apache.org
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.
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.
Iceberg is built using Gradle with Java 8, 11, or 17.
./gradlew build
./gradlew build -x test -x integrationTest
./gradlew spotlessApply
./gradlew spotlessApply -DallVersions
Iceberg table support is organized in library modules:
iceberg-common
contains utility classes used in other modulesiceberg-api
contains the public Iceberg APIiceberg-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 filesiceberg-arrow
is an optional module for reading Parquet into Arrow memoryiceberg-orc
is an optional module for working with tables backed by ORC filesiceberg-hive-metastore
is an implementation of Iceberg tables backed by the Hive metastore Thrift clienticeberg-data
is an optional module for working with tables directly from JVM applicationsIceberg also has modules for adding Iceberg support to processing engines:
iceberg-spark
is an implementation of Spark's Datasource V2 API for Iceberg with submodules for each spark versions (use runtime jars 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 Hiveiceberg-pig
is an implementation of Pig's LoadFunc API for IcebergSee the Multi-Engine Support page to know about Iceberg compatibility with different Spark, Flink and Hive versions. For other engines such as Presto or Trino, please visit their websites for Iceberg integration details.