All Projects → apache → Hudi

apache / Hudi

Licence: apache-2.0
Upserts, Deletes And Incremental Processing on Big Data.

Programming Languages

java
68154 projects - #9 most used programming language
scala
5932 projects
shell
77523 projects
ANTLR
299 projects
Dockerfile
14818 projects
Mustache
554 projects

Projects that are alternatives of or similar to Hudi

Hudi Resources
汇总Apache Hudi相关资料
Stars: ✭ 79 (-96.95%)
Mutual labels:  bigdata, stream-processing
hudi-demos
汇总Apache Hudi中的一些Demo,便于快速上手Apache Hudi(Apache Hudi Demos to help beginners know about Hudi)
Stars: ✭ 63 (-97.56%)
Mutual labels:  hudi, apachehudi
Dpark
Python clone of Spark, a MapReduce alike framework in Python
Stars: ✭ 2,668 (+3.17%)
Mutual labels:  bigdata, stream-processing
Real-time-Data-Warehouse
Real-time Data Warehouse with Apache Flink & Apache Kafka & Apache Hudi
Stars: ✭ 52 (-97.99%)
Mutual labels:  datalake, hudi
data processing course
Some class materials for a data processing course using PySpark
Stars: ✭ 50 (-98.07%)
Mutual labels:  bigdata, stream-processing
SparkProgrammingInScala
Apache Spark Course Material
Stars: ✭ 57 (-97.8%)
Mutual labels:  bigdata, datalake
awesome-bigdata
A curated list of awesome big data frameworks, ressources and other awesomeness.
Stars: ✭ 11,093 (+328.96%)
Mutual labels:  bigdata, stream-processing
Gearpump
Lightweight real-time big data streaming engine over Akka
Stars: ✭ 745 (-71.19%)
Mutual labels:  bigdata, stream-processing
Awesome Bigdata
A curated list of awesome big data frameworks, ressources and other awesomeness.
Stars: ✭ 10,478 (+305.18%)
Mutual labels:  bigdata, stream-processing
Real Time Sentiment Tracking On Twitter For Brand Improvement And Trend Recognition
A real-time interactive web app based on data pipelines using streaming Twitter data, automated sentiment analysis, and MySQL&PostgreSQL database (Deployed on Heroku)
Stars: ✭ 127 (-95.09%)
Mutual labels:  stream-processing
Awesome Streaming
a curated list of awesome streaming frameworks, applications, etc
Stars: ✭ 1,879 (-27.34%)
Mutual labels:  stream-processing
Volcano
A Cloud Native Batch System (Project under CNCF)
Stars: ✭ 2,114 (-18.25%)
Mutual labels:  bigdata
Spark
.NET for Apache® Spark™ makes Apache Spark™ easily accessible to .NET developers.
Stars: ✭ 1,721 (-33.45%)
Mutual labels:  bigdata
Ecommercerecommendsystem
商品大数据实时推荐系统。前端:Vue + TypeScript + ElementUI,后端 Spring + Spark
Stars: ✭ 139 (-94.62%)
Mutual labels:  bigdata
Fpart
Sort files and pack them into partitions
Stars: ✭ 127 (-95.09%)
Mutual labels:  bigdata
Mediapipe
Cross-platform, customizable ML solutions for live and streaming media.
Stars: ✭ 15,338 (+493.12%)
Mutual labels:  stream-processing
Hadoopcryptoledger
Hadoop Crypto Ledger - Analyzing CryptoLedgers, such as Bitcoin Blockchain, on Big Data platforms, such as Hadoop/Spark/Flink/Hive
Stars: ✭ 126 (-95.13%)
Mutual labels:  bigdata
Neo4j Streams
Neo4j Kafka Integrations, Docs =>
Stars: ✭ 126 (-95.13%)
Mutual labels:  stream-processing
Avro
Apache Avro is a data serialization system.
Stars: ✭ 2,005 (-22.47%)
Mutual labels:  bigdata
Kafka Tutorials
Kafka Tutorials microsite
Stars: ✭ 144 (-94.43%)
Mutual labels:  stream-processing

Apache Hudi

Apache Hudi (pronounced Hoodie) stands for Hadoop Upserts Deletes and Incrementals. Hudi manages the storage of large analytical datasets on DFS (Cloud stores, HDFS or any Hadoop FileSystem compatible storage).

https://hudi.apache.org/

Build Test License Maven Central Join on Slack

Features

  • Upsert support with fast, pluggable indexing
  • Atomically publish data with rollback support
  • Snapshot isolation between writer & queries
  • Savepoints for data recovery
  • Manages file sizes, layout using statistics
  • Async compaction of row & columnar data
  • Timeline metadata to track lineage
  • Optimize data lake layout with clustering

Hudi supports three types of queries:

  • Snapshot Query - Provides snapshot queries on real-time data, using a combination of columnar & row-based storage (e.g Parquet + Avro).
  • Incremental Query - Provides a change stream with records inserted or updated after a point in time.
  • Read Optimized Query - Provides excellent snapshot query performance via purely columnar storage (e.g. Parquet).

Learn more about Hudi at https://hudi.apache.org

Building Apache Hudi from source

Prerequisites for building Apache Hudi:

  • Unix-like system (like Linux, Mac OS X)
  • Java 8 (Java 9 or 10 may work)
  • Git
  • Maven (>=3.3.1)
# Checkout code and build
git clone https://github.com/apache/hudi.git && cd hudi
mvn clean package -DskipTests

# Start command
spark-2.4.4-bin-hadoop2.7/bin/spark-shell \
  --jars `ls packaging/hudi-spark-bundle/target/hudi-spark-bundle_2.11-*.*.*-SNAPSHOT.jar` \
  --conf 'spark.serializer=org.apache.spark.serializer.KryoSerializer'

To build the Javadoc for all Java and Scala classes:

# Javadoc generated under target/site/apidocs
mvn clean javadoc:aggregate -Pjavadocs

Build with Scala 2.12

The default Scala version supported is 2.11. To build for Scala 2.12 version, build using scala-2.12 profile

mvn clean package -DskipTests -Dscala-2.12

Build with Spark 3.0.0

The default Spark version supported is 2.4.4. To build for Spark 3.0.0 version, build using spark3 profile

mvn clean package -DskipTests -Dspark3

Build without spark-avro module

The default hudi-jar bundles spark-avro module. To build without spark-avro module, build using spark-shade-unbundle-avro profile

# Checkout code and build
git clone https://github.com/apache/hudi.git && cd hudi
mvn clean package -DskipTests -Pspark-shade-unbundle-avro

# Start command
spark-2.4.4-bin-hadoop2.7/bin/spark-shell \
  --packages org.apache.spark:spark-avro_2.11:2.4.4 \
  --jars `ls packaging/hudi-spark-bundle/target/hudi-spark-bundle_2.11-*.*.*-SNAPSHOT.jar` \
  --conf 'spark.serializer=org.apache.spark.serializer.KryoSerializer'

Running Tests

Unit tests can be run with maven profile unit-tests.

mvn -Punit-tests test

Functional tests, which are tagged with @Tag("functional"), can be run with maven profile functional-tests.

mvn -Pfunctional-tests test

To run tests with spark event logging enabled, define the Spark event log directory. This allows visualizing test DAG and stages using Spark History Server UI.

mvn -Punit-tests test -DSPARK_EVLOG_DIR=/path/for/spark/event/log

Quickstart

Please visit https://hudi.apache.org/docs/quick-start-guide.html to quickly explore Hudi's capabilities using spark-shell.

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].