-
Notifications
You must be signed in to change notification settings - Fork 0
BigQuery datastore backend: real CRUD + Frictionless schemas + lifespan health #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
sagargg
wants to merge
22
commits into
main
Choose a base branch
from
feat/bigquery-backend
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 20 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
367de4c
Feat (api): wire datastore_info end-to-end + accept resource_id/id alias
sagargg 5435e0b
Feat (api): wire datastore_delete end-to-end
sagargg efc9214
Docs: refresh milestones + add example payloads for delete / info / s…
sagargg 5eb5016
Feat (engines): wire lifespan init + real /ready healthcheck
sagargg 7a0b7e5
Feat (datastore_create): accept Frictionless schema; deprecate legacy…
sagargg 432de8a
Feat (datastore_info): also return Frictionless schema alongside lega…
sagargg a2a8e0d
Feat (datastore_search): also return Frictionless schema alongside le…
sagargg 6497955
Feat (bigquery): wire datastore_create — metadata store + per-resourc…
sagargg 0a1769b
Feat (bigquery): datastore_upsert + insert/update via DML, friendly e…
sagargg 6d871e3
Feat (bigquery): system columns _id + optional _updated_at via INCLUD…
sagargg 700e322
Style: ruff import-order + line-length fixes in BigQuery tests
sagargg 2bf0577
Feat (bigquery): wire datastore_info — Frictionless schema + cheap ro…
sagargg 0876789
Feat (bigquery): wire datastore_search with full CKAN param support +…
sagargg f13589c
Fix: address PR review comments — tighter boundary validation + safer…
sagargg ea82531
Feat (datastore_delete): wire DROP / row-delete / column-drop branches
sagargg 3ecd46b
Feat (search_sql): SQL-driven pagination, cheap unfiltered totals, an…
sagargg 7ccd660
Chore (postman): consolidate example payloads into postman/ folder
sagargg 8d5079c
Test (engines): split engine-specific tests under tests/engines/<engi…
sagargg e482376
Feat (auth): pluggable auth providers (ckan / jwt / anonymous)
sagargg ebe2d57
Feat (bigquery): opt-in query-results cache on read endpoints
sagargg 1c199b1
Style: ruff import-order fixes after auth refactor
sagargg cc4cf95
Fix: address CodeRabbit review (PR #1, 2026-05-23)
sagargg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keep
.env.examplealigned with the actual settings model.HTTP_MAX_CONNECTIONSandHTTP_MAX_KEEPALIVE_CONNECTIONSare documented here, butdatastore/core/config.pydoes not declare either field, sopydantic-settingswill silently ignore them.INCLUDE_UPDATED_ATwas added toConfigas well, but operators still don't get an example for that toggle here.Also applies to: 26-27
🧰 Tools
🪛 dotenv-linter (4.0.0)
[warning] 15-15: [UnorderedKey] The BIGQUERY_PROJECT key should go before the DATASTORE_ENGINE key
(UnorderedKey)
[warning] 16-16: [UnorderedKey] The BIGQUERY_DATASET key should go before the BIGQUERY_PROJECT key
(UnorderedKey)
[warning] 17-17: [UnorderedKey] The BIGQUERY_CREDENTIALS key should go before the BIGQUERY_DATASET key
(UnorderedKey)
[warning] 18-18: [UnorderedKey] The BIGQUERY_CREDENTIALS_RO key should go before the BIGQUERY_DATASET key
(UnorderedKey)
🤖 Prompt for AI Agents