Skip to content

Commit

Permalink
Update kernel/README.md
Browse files Browse the repository at this point in the history
Co-authored-by: Venki Korukanti <venki.korukanti@gmail.com>
  • Loading branch information
tdas and vkorukanti authored Jun 28, 2023
1 parent 38bb4a7 commit 4274712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Scan.readData(...) // returns the

Notice that there two sets of public APIs to build connectors.
- **Table APIs** - Interfaces like [`Table`](https://delta-io.github.io/delta/snapshot/kernel-api/java/api/index.html?io/delta/kernel/Table.html) and [`Snapshot`](https://delta-io.github.io/delta/snapshot/kernel-api/java/api/index.html?io/delta/kernel/Snapshot.html) that allow you to read (and soon write to) Delta tables
- **TableClient APIs** - The [`TableClient`](https://delta-io.github.io/delta/snapshot/kernel-api/java/api/index.html?io/delta/kernel/Table.html) interface allow you to plug in connector-specific optimizations to compute intensive components in the Kernel. For example, Delta Kernel provides a *default* Parquet file reader via the DefaultTableClient, but you may choose to replace that default with a custom `TableClient` implementation that has a faster Parquet reader for your connector / processing engine.
- **TableClient APIs** - The [`TableClient`](https://delta-io.github.io/delta/snapshot/kernel-api/java/api/index.html?io/delta/kernel/Table.html) interface allow you to plug in connector-specific optimizations to compute intensive components in the Kernel. For example, Delta Kernel provides a *default* Parquet file reader via the `DefaultTableClient`, but you may choose to replace that default with a custom `TableClient` implementation that has a faster Parquet reader for your connector / processing engine.

# Project setup with Delta Kernel
The Delta Kernel project provides the following two Maven artifacts:
Expand Down

0 comments on commit 4274712

Please sign in to comment.