Skip to content

Commit 96d7fe8

Browse files
Claudelukekim
authored andcommitted
Fix mysql/rds-aurora-cdc recipe: correct the startup transcript
The Step 9 log block was written by hand rather than captured from a run: four of its five lines do not exist in the runtime. `Initializing dataset orders` is emitted as `Dataset orders initializing...`, and neither `runtime::dataconnector::mysql: Bootstrapping MySQL table ...` nor `Bootstrap complete for orders. Streaming binlog changes.` appears anywhere in the source — binlog bootstrap logs from `data_components::mysql_replication::bootstrap`. The `registered` line also dropped the `, results cache enabled` suffix and the `duration_ms` field the runtime emits by default. Replace it with the lines the runtime actually emits, matching the sibling mysql/cdc recipe's verified transcript and adding the GTID auto-positioning line this recipe's premise depends on.
1 parent 82f460f commit 96d7fe8

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

mysql/rds-aurora-cdc/README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -169,14 +169,18 @@ MYSQL_PASS=spice" > .env
169169
spice run
170170
```
171171

172-
You should see the dataset bootstrap from a consistent snapshot and then transition to live binlog streaming:
172+
You should see GTID auto-positioning confirmed, the dataset bootstrap from a consistent snapshot, and the stream transition to live binlog changes:
173173

174174
```
175-
2025-01-13T12:00:00Z INFO runtime::init::dataset: Initializing dataset orders
176-
2025-01-13T12:00:00Z INFO runtime::init::dataset: Dataset orders registered (mysql:spicedemo.orders), acceleration (cayenne:file, changes).
177-
2025-01-13T12:00:00Z INFO runtime::dataconnector::mysql: Bootstrapping MySQL table orders, records=3
178-
2025-01-13T12:00:00Z INFO runtime::dataconnector::mysql: Bootstrap complete for orders. Streaming binlog changes.
179-
2025-01-13T12:00:00Z INFO runtime: All components are loaded. Spice runtime is ready!
175+
2026-08-19T18:22:41.317523Z INFO runtime::init::dataset: Dataset orders initializing...
176+
2026-08-19T18:22:41.392667Z INFO runtime::init::dataset: Dataset orders registered (mysql:spicedemo.orders), acceleration (cayenne:file, changes), results cache enabled. duration_ms=75
177+
2026-08-19T18:22:41.396202Z INFO data_components::mysql_replication::shared: MySQL replication: GTID auto-positioning active. dataset=orders
178+
2026-08-19T18:22:41.397269Z INFO data_components::mysql_replication::shared: dataset joined shared mysql binlog group dataset=orders connection=spice-aurora-cdc-cookbook.cluster-abcdefghijkl.us-east-1.rds.amazonaws.com:3306 snapshot=true rejoining=false members=1
179+
2026-08-19T18:22:41.802719Z INFO data_components::mysql_replication::bootstrap: mysql replication: starting initial snapshot dataset=orders
180+
2026-08-19T18:22:42.104727Z INFO data_components::mysql_replication::bootstrap: mysql replication: initial snapshot complete dataset=orders rows=3
181+
2026-08-19T18:22:42.491325Z INFO runtime::flight: Spice Runtime Flight listening on 127.0.0.1:50051
182+
2026-08-19T18:22:42.492029Z INFO runtime::http: Spice Runtime HTTP listening on 127.0.0.1:8090
183+
2026-08-19T18:22:44.042282Z INFO runtime: All components are loaded. Spice runtime is ready!
180184
```
181185

182186
---

0 commit comments

Comments
 (0)