Skip to content

Commit 594adeb

Browse files
committed
docs: fix broken links by using .md extensions for cross-page refs
1 parent 1707381 commit 594adeb

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

website/docs/faq/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Spice uses [Apache DataFusion](https://datafusion.apache.org/) as its primary qu
100100

101101
Yes. Spice supports streaming ingestion from several sources:
102102

103-
- **Native PostgreSQL logical replication** (recommended for Postgres sources). Spice connects directly to the source using Postgres' `wal_level=logical` + pgoutput and streams `INSERT`/`UPDATE`/`DELETE` events into the accelerator — no Debezium, no Kafka, no external services. [Learn more](../features/cdc/postgres-replication).
103+
- **Native PostgreSQL logical replication** (recommended for Postgres sources). Spice connects directly to the source using Postgres' `wal_level=logical` + pgoutput and streams `INSERT`/`UPDATE`/`DELETE` events into the accelerator — no Debezium, no Kafka, no external services. [Learn more](../features/cdc/postgres-replication.md).
104104
- **[DynamoDB Streams](../components/data-connectors/dynamodb)** for Amazon DynamoDB sources — Spice consumes the table's change stream and applies `INSERT`/`UPDATE`/`DELETE` events to the accelerator with `refresh_mode: changes`.
105105
- **[Apache Kafka](../components/data-connectors/kafka)** for event-streaming topics — Spice consumes records directly with `refresh_mode: append` for real-time, append-only acceleration.
106106
- **[Debezium](../components/data-connectors/debezium)** (over Kafka), for sources where Debezium is already deployed, or for databases without a native Spice CDC path (MySQL, SQL Server, etc.). [Learn more](../features/cdc).

website/docs/features/cdc/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Enabling CDC by setting `refresh_mode: changes` in the acceleration settings req
3535

3636
Spice currently supports streaming ingestion via:
3737

38-
- **[PostgreSQL Logical Replication](./postgres-replication)****recommended** for PostgreSQL sources. Spice connects directly to the source using Postgres' native logical replication protocol (`wal_level=logical` + pgoutput) and streams `INSERT`/`UPDATE`/`DELETE` events into the accelerator. No Kafka, no Debezium, no external services.
38+
- **[PostgreSQL Logical Replication](./postgres-replication.md)****recommended** for PostgreSQL sources. Spice connects directly to the source using Postgres' native logical replication protocol (`wal_level=logical` + pgoutput) and streams `INSERT`/`UPDATE`/`DELETE` events into the accelerator. No Kafka, no Debezium, no external services.
3939
- **[DynamoDB Streams](../../components/data-connectors/dynamodb#streams)** — for Amazon DynamoDB sources. Spice consumes the table's DynamoDB Streams directly and applies `INSERT`/`UPDATE`/`DELETE` events to the accelerator.
4040
- **[Apache Kafka](../../components/data-connectors/kafka)** — for event-streaming topics. Spice consumes records directly with `refresh_mode: append` for real-time, append-only acceleration (no separate CDC connector required).
4141
- **[Debezium](../../components/data-connectors/debezium)** (over Kafka) — for sources where Debezium + Kafka is already deployed, or for databases without a native Spice CDC path (MySQL, SQL Server, etc.).

website/docs/features/cdc/postgres-replication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,6 @@ For greenfield Postgres → Spice CDC, prefer native WAL streaming. If Kafka is
289289

290290
## See also
291291

292-
- [Change Data Capture overview](./index)
292+
- [Change Data Capture overview](./index.md)
293293
- [PostgreSQL Data Connector](../../components/data-connectors/postgres)
294294
- [PostgreSQL: Logical Replication](https://www.postgresql.org/docs/current/logical-replication.html)

0 commit comments

Comments
 (0)