Cookbook fixes from v2.0-rc.5 validation#401
Open
phillipleblanc wants to merge 2 commits into
Open
Conversation
…ai_region - Add an upfront note that the PostgreSQL Data Accelerator is Enterprise-only in Spice v2.0; community builds reject engine: postgres at dataset init. - Add the now-required `spiceai_region` connector parameter to the Step 5 spicepod.yaml example and to the bundled spicepod.yaml template. Without it the spice.ai connector fails with "Missing required parameter: region".
- search/: rename `fused_score` -> `_fused_score` in every example to match the v2.0 RRF UDTF output. Add a callout near the top of the README pointing v1.x users at the legacy column name. - tls/: add a macOS section for `chmod 600 postgres.key`. Without it, Postgres 18 refuses to start with "FATAL: private key file ... has group or world access". - dynamodb/streams/: refresh the bootstrap log sample to match the current runtime log lines (No existing lag found / initialization complete). - mtls/: fix the no-client-cert response sample; the runtime now returns plain text `client certificate required`, not JSON. - catalogs/ducklake/: spell out the failure mode when DuckDB CLI is older than v1.5.2 (catalog metadata version 0.3 vs required 1.0). - snowflake/dml/: add a snowflake-connector-python one-liner as an alternate to the worksheet UI for Step 1, including the dash-vs-dot account-identifier gotcha.
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.
Summary
Two-commit cleanup of cookbook recipes against the v2.0-rc.5 build:
postgres/accelerator/)engine: postgresat dataset init.spiceai_regionconnector parameter to the Step 5 yaml snippet and to the bundledspicepod.yamltemplate. Without it the runtime fails withMissing required parameter: region.search/) — renamefused_scoreto_fused_scorein every example so they match the v2.0 RRF UDTF output. Adds a callout near the top pointing v1.x users at the legacy column name.tls/) — add a macOS-specificchmod 600 postgres.keysection. Without it, Postgres 18 refuses to start withFATAL: private key file ... has group or world access.dynamodb/streams/) — refresh the bootstrap log sample to match the current runtime log lines.mtls/) — fix the no-client-cert response sample; the runtime returns plain textclient certificate required, not JSON.catalogs/ducklake/) — spell out the failure mode when DuckDB CLI is older than v1.5.2 (catalog metadata version0.3vs required1.0).snowflake/dml/) — add asnowflake-connector-pythonone-liner as an alternate to the worksheet UI for Step 1, including the dash-vs-dot account-identifier gotcha.Test plan
postgres/accelerator/— exercised end-to-end on rc.5:spice runregisterstaxi_tripswithacceleration (postgres, 10s refresh), loads 2,964,624 rows in 62s, README sample queries succeed in bothspice sqland directpsql.search/— column rename verified against the rc.5 build; full recipe blocked on Hybrid Search:rrf(text_search, vector_search)crashes with UdtfExec::maintains_input_order assertion spiceai#10951 (needsjoin_keyworkaround).tls/,mtls/,dynamodb/streams/,catalogs/ducklake/,snowflake/dml/— README-only text changes; no behavior change to validate.