Skip to content

Commit 6596659

Browse files
author
Ignacio Van Droogenbroeck
committed
fix: Update links to use /arc/ base path instead of /docs/
All internal documentation links now use the correct /arc/ route base path as configured in docusaurus.config.ts.
1 parent 6a47fa3 commit 6596659

7 files changed

Lines changed: 29 additions & 29 deletions

File tree

docs/api-reference/overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ with ArcClient(host="localhost", token="your-token") as client:
307307
- Retention policies, continuous queries, delete operations
308308
- Token management
309309

310-
📖 **[Full Python SDK Documentation →](/docs/sdks/python/)**
310+
📖 **[Full Python SDK Documentation →](/arc/sdks/python/)**
311311

312312
### JavaScript (Example Implementation)
313313

@@ -529,8 +529,8 @@ for chunk in response.iter_content(chunk_size=8192):
529529

530530
## Next Steps
531531

532-
- **[Python SDK →](/docs/sdks/python/)** - Official Python client with DataFrame support
533-
- **[Getting Started →](/docs/getting-started)** - Learn how to use Arc
534-
- **[Data Lifecycle →](/docs/data-lifecycle/retention-policies)** - Manage data retention and deletion
532+
- **[Python SDK →](/arc/sdks/python/)** - Official Python client with DataFrame support
533+
- **[Getting Started →](/arc/getting-started)** - Learn how to use Arc
534+
- **[Data Lifecycle →](/arc/data-lifecycle/retention-policies)** - Manage data retention and deletion
535535
- **[Interactive Docs →](http://localhost:8000/docs)** - Try the API with Swagger UI
536536
- **[OpenAPI Spec →](http://localhost:8000/openapi.json)** - Download OpenAPI specification

docs/getting-started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -339,11 +339,11 @@ curl -X POST http://localhost:8000/api/v1/query \
339339

340340
Now that you have Arc running, you can:
341341

342-
- **[Use the Python SDK](/docs/sdks/python/)** - Official client with DataFrame support and buffered writes
343-
- **[Integrate with Telegraf](/docs/integrations/telegraf)** - Collect system metrics automatically
344-
- **[Connect Apache Superset](/docs/integrations/superset)** - Build interactive dashboards
345-
- **[Enable WAL](/docs/advanced/wal)** - Guarantee zero data loss
346-
- **[Optimize compaction](/docs/advanced/compaction)** - Fine-tune query performance
342+
- **[Use the Python SDK](/arc/sdks/python/)** - Official client with DataFrame support and buffered writes
343+
- **[Integrate with Telegraf](/arc/integrations/telegraf)** - Collect system metrics automatically
344+
- **[Connect Apache Superset](/arc/integrations/superset)** - Build interactive dashboards
345+
- **[Enable WAL](/arc/advanced/wal)** - Guarantee zero data loss
346+
- **[Optimize compaction](/arc/advanced/compaction)** - Fine-tune query performance
347347

348348
## Troubleshooting
349349

docs/sdks/python/data-management.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ with ArcClient(host="localhost", token="your-token") as client:
133133
print(f"\nDry run: would delete {result.deleted_count} rows")
134134
```
135135

136-
See [Retention Policies](/docs/data-lifecycle/retention-policies) for more details on how retention works in Arc.
136+
See [Retention Policies](/arc/data-lifecycle/retention-policies) for more details on how retention works in Arc.
137137

138138
## Continuous Queries
139139

@@ -292,7 +292,7 @@ with ArcClient(host="localhost", token="your-token") as client:
292292
print("Created CQ hierarchy: cpu → cpu_1h → cpu_1d")
293293
```
294294

295-
See [Continuous Queries](/docs/data-lifecycle/continuous-queries) for more details.
295+
See [Continuous Queries](/arc/data-lifecycle/continuous-queries) for more details.
296296

297297
## Delete Operations
298298

@@ -369,7 +369,7 @@ client.delete.delete(
369369
)
370370
```
371371

372-
See [Delete Operations](/docs/data-lifecycle/delete-operations) for more details.
372+
See [Delete Operations](/arc/data-lifecycle/delete-operations) for more details.
373373

374374
## Authentication
375375

@@ -879,7 +879,7 @@ with DAG(
879879
880880
## Next Steps
881881
882-
- **[Data Ingestion](/docs/sdks/python/ingestion)** - Write data to Arc
883-
- **[Querying](/docs/sdks/python/querying)** - Query data with DataFrames
884-
- **[Retention Policies](/docs/data-lifecycle/retention-policies)** - Deep dive on retention
885-
- **[Continuous Queries](/docs/data-lifecycle/continuous-queries)** - Deep dive on CQs
882+
- **[Data Ingestion](/arc/sdks/python/ingestion)** - Write data to Arc
883+
- **[Querying](/arc/sdks/python/querying)** - Query data with DataFrames
884+
- **[Retention Policies](/arc/data-lifecycle/retention-policies)** - Deep dive on retention
885+
- **[Continuous Queries](/arc/data-lifecycle/continuous-queries)** - Deep dive on CQs

docs/sdks/python/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ ArcClient
9393
<p>Install the SDK and optional dependencies for pandas, polars, or all features.</p>
9494
</div>
9595
<div className="card__footer">
96-
<a className="button button--primary button--block" href="/docs/sdks/python/installation">Get Started</a>
96+
<a className="button button--primary button--block" href="/arc/sdks/python/installation">Get Started</a>
9797
</div>
9898
</div>
9999
</div>
@@ -106,7 +106,7 @@ ArcClient
106106
<p>Write data using columnar format, DataFrames, buffered writes, or line protocol.</p>
107107
</div>
108108
<div className="card__footer">
109-
<a className="button button--primary button--block" href="/docs/sdks/python/ingestion">Learn More</a>
109+
<a className="button button--primary button--block" href="/arc/sdks/python/ingestion">Learn More</a>
110110
</div>
111111
</div>
112112
</div>
@@ -119,7 +119,7 @@ ArcClient
119119
<p>Run SQL queries and get results as JSON, pandas, polars, or PyArrow tables.</p>
120120
</div>
121121
<div className="card__footer">
122-
<a className="button button--primary button--block" href="/docs/sdks/python/querying">Learn More</a>
122+
<a className="button button--primary button--block" href="/arc/sdks/python/querying">Learn More</a>
123123
</div>
124124
</div>
125125
</div>
@@ -132,7 +132,7 @@ ArcClient
132132
<p>Manage retention policies, continuous queries, delete operations, and authentication.</p>
133133
</div>
134134
<div className="card__footer">
135-
<a className="button button--primary button--block" href="/docs/sdks/python/data-management">Learn More</a>
135+
<a className="button button--primary button--block" href="/arc/sdks/python/data-management">Learn More</a>
136136
</div>
137137
</div>
138138
</div>

docs/sdks/python/ingestion.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,6 @@ def write_with_backoff(client, data, max_retries=3):
386386

387387
## Next Steps
388388

389-
- **[Querying](/docs/sdks/python/querying)** - Query data and work with DataFrames
390-
- **[Data Management](/docs/sdks/python/data-management)** - Retention, CQs, and deletion
391-
- **[API Reference](/docs/api-reference/overview)** - Raw REST API documentation
389+
- **[Querying](/arc/sdks/python/querying)** - Query data and work with DataFrames
390+
- **[Data Management](/arc/sdks/python/data-management)** - Retention, CQs, and deletion
391+
- **[API Reference](/arc/api-reference/overview)** - Raw REST API documentation

docs/sdks/python/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,6 @@ with ArcClient(host="localhost", token="your-token") as client:
218218

219219
## Next Steps
220220

221-
- **[Data Ingestion](/docs/sdks/python/ingestion)** - Learn how to write data to Arc
222-
- **[Querying](/docs/sdks/python/querying)** - Query data and work with DataFrames
223-
- **[Data Management](/docs/sdks/python/data-management)** - Manage retention, CQs, and more
221+
- **[Data Ingestion](/arc/sdks/python/ingestion)** - Learn how to write data to Arc
222+
- **[Querying](/arc/sdks/python/querying)** - Query data and work with DataFrames
223+
- **[Data Management](/arc/sdks/python/data-management)** - Manage retention, CQs, and more

docs/sdks/python/querying.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,6 @@ df = table.to_pandas() # Zero-copy conversion
421421

422422
## Next Steps
423423

424-
- **[Data Management](/docs/sdks/python/data-management)** - Retention, CQs, and deletion
425-
- **[Data Ingestion](/docs/sdks/python/ingestion)** - Write data to Arc
426-
- **[API Reference](/docs/api-reference/overview)** - Raw REST API documentation
424+
- **[Data Management](/arc/sdks/python/data-management)** - Retention, CQs, and deletion
425+
- **[Data Ingestion](/arc/sdks/python/ingestion)** - Write data to Arc
426+
- **[API Reference](/arc/api-reference/overview)** - Raw REST API documentation

0 commit comments

Comments
 (0)