From 748e86ea798701b5a89369cc401a467dd785ebe3 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 19 Aug 2026 05:22:40 -0700 Subject: [PATCH] Fix acceleration/cron recipe: correct the version floor and the stale accelerated size MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refresh_cron does not exist before v1.4.0 — a reader on the declared v1.0 floor cannot follow Step 2 at all. Raise the floor to v1.4.0+, matching the same correction already made to the views recipe (#538). Step 2's transcript also reports 399.41 MiB for taxi_trips while Step 1 of the same recipe reports 399.38 MiB, which is what the runtime prints today. --- acceleration/cron/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/acceleration/cron/README.md b/acceleration/cron/README.md index 8e4896d0..1062e9ec 100644 --- a/acceleration/cron/README.md +++ b/acceleration/cron/README.md @@ -1,6 +1,6 @@ # Cron-based Dataset Refresh -Works with `v1.0+` +Works with `v1.4.0+` Spice supports specifying cron schedules for accelerated datasets, to refresh datasets on defined schedules. @@ -75,10 +75,10 @@ After the initial load, observe that the `taxi_trips` dataset refreshes on every 2025-06-09T06:27:33.630576Z INFO runtime::http: Spice Runtime HTTP listening on 127.0.0.1:8090 2025-06-09T06:27:35.928527Z INFO runtime::init::dataset: Dataset taxi_trips registered (s3://spiceai-demo-datasets/taxi_trips/2024/), acceleration (arrow), results cache enabled. 2025-06-09T06:27:35.929924Z INFO runtime::accelerated_table::refresh_task: Loading data for dataset taxi_trips -2025-06-09T06:27:50.915273Z INFO runtime::accelerated_table::refresh_task: Loaded 2,964,624 rows (399.41 MiB) for dataset taxi_trips in 14s 985ms. +2025-06-09T06:27:50.915273Z INFO runtime::accelerated_table::refresh_task: Loaded 2,964,624 rows (399.38 MiB) for dataset taxi_trips in 14s 985ms. 2025-06-09T06:27:50.986350Z INFO runtime: All components are loaded. Spice runtime is ready! 2025-06-09T06:28:00.001597Z INFO runtime::accelerated_table::refresh_task: Loading data for dataset taxi_trips -2025-06-09T06:28:13.954105Z INFO runtime::accelerated_table::refresh_task: Loaded 2,964,624 rows (399.41 MiB) for dataset taxi_trips in 13s 952ms. +2025-06-09T06:28:13.954105Z INFO runtime::accelerated_table::refresh_task: Loaded 2,964,624 rows (399.38 MiB) for dataset taxi_trips in 13s 952ms. 2025-06-09T06:28:30.001882Z INFO runtime::accelerated_table::refresh_task: Loading data for dataset taxi_trips -2025-06-09T06:28:43.802372Z INFO runtime::accelerated_table::refresh_task: Loaded 2,964,624 rows (399.41 MiB) for dataset taxi_trips in 13s 800ms. +2025-06-09T06:28:43.802372Z INFO runtime::accelerated_table::refresh_task: Loaded 2,964,624 rows (399.38 MiB) for dataset taxi_trips in 13s 800ms. ```