Add Dremio adapter for data lakehouse connectivity - #63
Merged
Conversation
This adds a new database adapter for Dremio data lakehouse using
Arrow Flight SQL for high-performance data access.
Key features:
- DremioDatabase: Connects to Dremio via Arrow Flight protocol
- DremioCollection: Supports CRUD operations and MongoDB-style queries
- Type mappings between LinkML, Arrow, and Dremio SQL types
- Connection string parsing with auth, TLS, and path support
- Integration with existing linkml-store Client
Handle format: dremio://[user:pass@]host[:port][/path][?params]
Example:
client.attach_database("dremio://localhost:32010?useEncryption=false")
Adds dremio-rest:// adapter for connecting to Dremio instances where the Arrow Flight SQL port (32010) is not accessible, such as behind Cloudflare Access or firewalls. Features: - REST API v3 support (authentication, queries, pagination) - Environment variable configuration (DREMIO_USER, DREMIO_PASSWORD, CF_AUTHORIZATION) - MongoDB-style query operators ($gt, $like, $ilike, $in, etc.) - Lazy collection initialization (no slow INFORMATION_SCHEMA scan) - Case-insensitive search via $ilike operator Files: - src/linkml_store/api/stores/dremio_rest/ - New adapter - docs/how-to/Use-Dremio-REST.md - Documentation - tests/test_api/test_dremio_rest_adapter.py - Unit tests (18 passing) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds a new database adapter for Dremio data lakehouse using Arrow Flight SQL for high-performance data access.
Key features:
Handle format: dremio://[user:pass@]host[:port][/path][?params]
Example:
client.attach_database("dremio://localhost:32010?useEncryption=false")