Skip to content

Proof-of-concept extension combining the delta extension with Unity Catalog

License

Notifications You must be signed in to change notification settings

duckdb/uc_catalog

Repository files navigation

Unity Catalog Extension

Warning: this extension is an experimental, proof-of-concept for an extension, feel free to try it out, but no guarantees are given whatsoever. This extension could be renamed, moved or removed at any point.

This is a proof-of-concept extension demonstrating DuckDB connecting to the Unity Catalog to scan Delta Table using the delta extension.

You can try it out using DuckDB (>= v1.0.0) on the platforms: linux_amd64, linux_amd64_gcc4, osx_arm64 and osx_arm64 by running:

INSTALL uc_catalog from core_nightly;
INSTALL delta from core;
LOAD delta;
LOAD uc_catalog;
CREATE SECRET (
	TYPE UC,
	TOKEN '${UC_TOKEN}',
	ENDPOINT '${UC_ENDPOINT}',
	AWS_REGION '${UC_AWS_REGION}'
)
ATTACH 'test_catalog' AS test_catalog (TYPE UC_CATALOG)
SHOW ALL TABLES;
SELECT * FROM test_catalog.test_schema.test_table;

About

Proof-of-concept extension combining the delta extension with Unity Catalog

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published