All Projects → apache → Iceberg

apache / Iceberg

Licence: apache-2.0
Apache Iceberg

Programming Languages

java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to Iceberg

Openwhisk Apigateway
Apache OpenWhisk API Gateway service for exposing actions as REST interfaces.
Stars: ✭ 56 (-95.6%)
Mutual labels:  apache
Redirect.rules
Quick and dirty dynamic redirect.rules generator
Stars: ✭ 69 (-94.58%)
Mutual labels:  apache
Mod auth gssapi
GSSAPI Negotiate module for Apache
Stars: ✭ 78 (-93.88%)
Mutual labels:  apache
Pyspark Examples
Code examples on Apache Spark using python
Stars: ✭ 58 (-95.45%)
Mutual labels:  apache
Burrowui
This is a NodeJS/Angular 2 frontend UI for Kafka cluster monitoring with Burrow
Stars: ✭ 69 (-94.58%)
Mutual labels:  apache
Openwhisk Cli
Apache OpenWhisk Command Line Interface (CLI)
Stars: ✭ 73 (-94.27%)
Mutual labels:  apache
Druid Exporter
A Golang based exporter captures druid API related metrics and receives druid-emitting HTTP JSON data.
Stars: ✭ 54 (-95.76%)
Mutual labels:  apache
Trafficserver
Apache Traffic Server™ is a fast, scalable and extensible HTTP/1.1 and HTTP/2 compliant caching proxy server.
Stars: ✭ 1,258 (-1.26%)
Mutual labels:  apache
Awesome Solr
A curated list of Awesome Apache Solr links and resources.
Stars: ✭ 69 (-94.58%)
Mutual labels:  apache
Php Apache Tika
Apache Tika bindings for PHP: extract text and metadata from documents, images and other formats
Stars: ✭ 76 (-94.03%)
Mutual labels:  apache
Logging Log4j2
Apache Log4j 2 is an upgrade to Log4j that provides significant improvements over its predecessor, Log4j 1.x, and provides many of the improvements available in Logback while fixing some inherent problems in Logback's architecture.
Stars: ✭ 1,133 (-11.07%)
Mutual labels:  apache
Guacamole Customize Loginscreen Extension
An Apache Guacamole extension to use as a template for customizing or branding the login page.
Stars: ✭ 69 (-94.58%)
Mutual labels:  apache
Rare
Fast, realtime regex-extraction, and aggregation into common formats such as histograms, numerical summaries, tables, and more!
Stars: ✭ 76 (-94.03%)
Mutual labels:  apache
Awesome Wicket
A curated list of awesome projects powered by Apache Wicket
Stars: ✭ 56 (-95.6%)
Mutual labels:  apache
Hudi Resources
汇总Apache Hudi相关资料
Stars: ✭ 79 (-93.8%)
Mutual labels:  apache
Maven Site
Apache Maven site
Stars: ✭ 54 (-95.76%)
Mutual labels:  apache
Docker Debian Base
More complete Debian environment for Docker
Stars: ✭ 70 (-94.51%)
Mutual labels:  apache
Docker Superset
Repository for Docker Image of Apache-Superset. [Docker Image: https://hub.docker.com/r/abhioncbr/docker-superset]
Stars: ✭ 86 (-93.25%)
Mutual labels:  apache
Spark States
Custom state store providers for Apache Spark
Stars: ✭ 83 (-93.49%)
Mutual labels:  apache
Poi Android
📈 Apache POI for Android
Stars: ✭ 77 (-93.96%)
Mutual labels:  apache

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, Trino, 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 version Spark 2.4.x Spark 3.0.x
master branch spark-runtime spark3-runtime
0.9.0 spark-runtime spark3-runtime
0.8.0 spark-runtime
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].