Skip to content

Commit 43be152

Browse files
committed
fixing links
1 parent 09b0efb commit 43be152

File tree

9 files changed

+64
-32
lines changed

9 files changed

+64
-32
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,8 +287,8 @@ We track and celebrate contributions through our gamification system:
287287

288288
## 📞 Getting Help
289289

290-
- **Questions**: Open a [Discussion](../../discussions)
291-
- **Bugs**: Open an [Issue](../../issues)
290+
- **Questions**: Open a [Discussion](https://github.com/Analytical-Guide/Datalake-Guide/discussions)
291+
- **Bugs**: Open an [Issue](https://github.com/Analytical-Guide/Datalake-Guide/issues)
292292
- **Security**: Email security concerns to the maintainers
293293

294294
## 🎓 Learning Resources
@@ -309,4 +309,4 @@ Every contribution, no matter how small, helps make this knowledge hub more valu
309309

310310
---
311311

312-
**Questions?** Open a [Discussion](../../discussions) or reach out to the maintainers.
312+
**Questions?** Open a [Discussion](https://github.com/Analytical-Guide/Datalake-Guide/discussions) or reach out to the maintainers.

QUICKSTART.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -249,10 +249,10 @@ flake8 .
249249
→ Follow [Contributing Guide](CONTRIBUTING.md)
250250

251251
**Report a bug**
252-
[Open an issue](../../issues)
252+
[Open an issue](https://github.com/Analytical-Guide/Datalake-Guide/issues)
253253

254254
**Ask a question**
255-
[Start a discussion](../../discussions)
255+
[Start a discussion](https://github.com/Analytical-Guide/Datalake-Guide/discussions)
256256

257257
**See who's contributing**
258258
→ Check [README leaderboard](README.md#-community-leaderboard)
@@ -268,7 +268,7 @@ flake8 .
268268

269269
- [Delta Lake Slack](https://delta-users.slack.com/)
270270
- [Iceberg Slack](https://apache-iceberg.slack.com/)
271-
- [Repository Discussions](../../discussions)
271+
- [Repository Discussions](https://github.com/Analytical-Guide/Datalake-Guide/discussions)
272272

273273
### Deep Dives
274274

@@ -286,8 +286,8 @@ flake8 .
286286

287287
## ❓ Getting Help
288288

289-
- **Questions**: [Open a Discussion](../../discussions)
290-
- **Bugs**: [Create an Issue](../../issues)
289+
- **Questions**: [Open a Discussion](https://github.com/Analytical-Guide/Datalake-Guide/discussions)
290+
- **Bugs**: [Create an Issue](https://github.com/Analytical-Guide/Datalake-Guide/issues)
291291
- **Security**: Contact maintainers directly
292292

293293
## 🏆 Hall of Fame
@@ -298,6 +298,6 @@ Check out our top contributors on the [main README](README.md#-community-leaderb
298298

299299
**Ready to dive in?** Pick a starting point above and begin your journey! 🚀
300300

301-
**Have questions?** Don't hesitate to ask in [Discussions](../../discussions).
301+
**Have questions?** Don't hesitate to ask in [Discussions](https://github.com/Analytical-Guide/Datalake-Guide/discussions).
302302

303303
**Want to contribute?** We'd love your help! See [CONTRIBUTING.md](CONTRIBUTING.md).

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Every recipe in our [code-recipes](code-recipes/) directory follows a standardiz
8383
### For Contributors
8484

8585
1. Read our [Contributing Guide](CONTRIBUTING.md)
86-
2. Check [open issues](../../issues) for areas needing help
86+
2. Check [open issues](https://github.com/Analytical-Guide/Datalake-Guide/issues) for areas needing help
8787
3. Review the [Code of Conduct](CODE_OF_CONDUCT.md)
8888
4. Submit your first pull request!
8989

@@ -100,9 +100,9 @@ This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENS
100100

101101
## 🤝 Community & Support
102102

103-
- **Issues**: [Report bugs or request features](../../issues)
104-
- **Discussions**: [Join community discussions](../../discussions)
105-
- **Pull Requests**: [Contribute code or documentation](../../pulls)
103+
- **Issues**: [Report bugs or request features](https://github.com/Analytical-Guide/Datalake-Guide/issues)
104+
- **Discussions**: [Join community discussions](https://github.com/Analytical-Guide/Datalake-Guide/discussions)
105+
- **Pull Requests**: [Contribute code or documentation](https://github.com/Analytical-Guide/Datalake-Guide/pulls)
106106

107107
## 🙏 Acknowledgments
108108

code-recipes/RECIPE_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ Before submitting your recipe as a pull request, ensure:
176176

177177
If you need help creating a recipe:
178178
- Check existing recipes for examples
179-
- Ask in [Discussions](../../discussions)
180-
- Read the [Contributing Guide](../../CONTRIBUTING.md)
179+
- Ask in [Discussions](https://github.com/Analytical-Guide/Datalake-Guide/discussions)
180+
- Read the [Contributing Guide](../CONTRIBUTING.md)
181181

182182
## Recognition
183183

code-recipes/index.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: Code Recipes Catalog
3+
permalink: /code-recipes/
4+
description: Curated, validated implementations for Delta Lake and Apache Iceberg workloads.
5+
---
6+
7+
# Code Recipes Catalog
8+
9+
Choose a recipe to explore real-world implementations with runnable code, validation, and documentation.
10+
11+
<div class="card-grid">
12+
<a class="card" href="{{ '/code-recipes/examples/basic-delta-table/' | relative_url }}">
13+
<h3>Basic Delta Lake Table</h3>
14+
<p>Create your first Delta table with enforced schema, ACID guarantees, and validation checks.</p>
15+
<span class="card-cta">Open recipe →</span>
16+
</a>
17+
<a class="card" href="{{ '/code-recipes/examples/basic-iceberg-table/' | relative_url }}">
18+
<h3>Basic Apache Iceberg Table</h3>
19+
<p>Provision an Iceberg table with hidden partitioning and multi-catalog support in PySpark.</p>
20+
<span class="card-cta">Open recipe →</span>
21+
</a>
22+
<a class="card" href="{{ '/code-recipes/examples/streaming-cdc-pipeline/' | relative_url }}">
23+
<h3>Streaming CDC Pipeline</h3>
24+
<p>Ingest change data capture streams into Delta Lake using Structured Streaming.</p>
25+
<span class="card-cta">Open recipe →</span>
26+
</a>
27+
<a class="card" href="{{ '/code-recipes/examples/time-series-forecasting/' | relative_url }}">
28+
<h3>Time Series Forecasting</h3>
29+
<p>Build and validate a weather forecasting workload backed by Delta Lake storage.</p>
30+
<span class="card-cta">Open recipe →</span>
31+
</a>
32+
</div>

docs/awesome-list.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ Comprehensive guide covering Iceberg architecture, design decisions, and best pr
4646

4747
### Tutorials
4848

49-
- [Delta Lake Quickstart](../tutorials/getting-started.md) - Get started with Delta Lake
50-
- [Iceberg Quickstart](../tutorials/getting-started.md) - Get started with Apache Iceberg
51-
- [Migration Guide: Parquet to Delta/Iceberg](../tutorials/migration.md) - Convert existing data lakes
49+
- [Delta Lake Quickstart]({{ '/docs/tutorials/getting-started/' | relative_url }}) - Get started with Delta Lake
50+
- [Iceberg Quickstart]({{ '/docs/tutorials/getting-started/' | relative_url }}) - Get started with Apache Iceberg
51+
- [Migration Guide: Parquet to Delta/Iceberg]({{ '/docs/tutorials/migration-guide/' | relative_url }}) - Convert existing data lakes
5252

5353
### Video Content
5454

docs/best-practices/production-readiness.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1286,7 +1286,7 @@ Production readiness requires attention to multiple aspects: data organization,
12861286

12871287
- [Delta Lake Performance Tuning](https://docs.delta.io/latest/optimizations-oss.html)
12881288
- [Iceberg Performance](https://iceberg.apache.org/docs/latest/performance/)
1289-
- [Data Engineering Best Practices](../architecture/best-practices.md)
1289+
- [Knowledge Hub Blueprint]({{ '/docs/blueprint/' | relative_url }})
12901290

12911291
---
12921292

docs/tutorials/getting-started.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -378,19 +378,19 @@ actions.rewriteDataFiles().execute()
378378
After completing this tutorial, explore:
379379

380380
1. **Advanced Features**:
381-
- [Schema Evolution Guide](schema-evolution.md)
382-
- [Time Travel Deep Dive](time-travel.md)
383-
- [Concurrency Control](concurrency.md)
381+
- [Advanced Schema Evolution Recipe]({{ '/code-recipes/examples/advanced-schema-evolution/' | relative_url }})
382+
- [Time Travel Deep Dive](https://docs.delta.io/latest/delta-utility.html#time-travel)
383+
- [Concurrency Control](https://docs.delta.io/latest/delta-concurrency-control.html)
384384

385385
2. **Production Patterns**:
386-
- [Data Pipeline Architectures](../architecture/data-pipelines.md)
387-
- [Monitoring and Observability](monitoring.md)
388-
- [Cost Optimization](cost-optimization.md)
386+
- [System Architecture Overview]({{ '/docs/architecture/system-overview/' | relative_url }})
387+
- [Production Readiness Checklist]({{ '/docs/best-practices/production-readiness/' | relative_url }})
388+
- [Knowledge Hub Blueprint]({{ '/docs/blueprint/' | relative_url }})
389389

390390
3. **Hands-on Practice**:
391-
- Browse [Code Recipes](../../code-recipes/)
392-
- Try [Performance Tuning Examples](../../code-recipes/performance/)
393-
- Explore [Migration Strategies](../../code-recipes/migration/)
391+
- Browse the [Code Recipes Collection]({{ '/code-recipes/' | relative_url }})
392+
- Try the [Streaming CDC Pipeline]({{ '/code-recipes/examples/streaming-cdc-pipeline/' | relative_url }})
393+
- Explore [Time Series Forecasting]({{ '/code-recipes/examples/time-series-forecasting/' | relative_url }})
394394

395395
## Resources
396396

index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Every recipe in our [code-recipes](code-recipes/) directory follows a standardiz
8686
### For Contributors
8787

8888
1. Read our [Contributing Guide](CONTRIBUTING.md)
89-
2. Check [open issues](../../issues) for areas needing help
89+
2. Check [open issues](https://github.com/Analytical-Guide/Datalake-Guide/issues) for areas needing help
9090
3. Review the [Code of Conduct](CODE_OF_CONDUCT.md)
9191
4. Submit your first pull request!
9292

@@ -103,9 +103,9 @@ This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENS
103103

104104
## 🤝 Community & Support
105105

106-
- **Issues**: [Report bugs or request features](../../issues)
107-
- **Discussions**: [Join community discussions](../../discussions)
108-
- **Pull Requests**: [Contribute code or documentation](../../pulls)
106+
- **Issues**: [Report bugs or request features](https://github.com/Analytical-Guide/Datalake-Guide/issues)
107+
- **Discussions**: [Join community discussions](https://github.com/Analytical-Guide/Datalake-Guide/discussions)
108+
- **Pull Requests**: [Contribute code or documentation](https://github.com/Analytical-Guide/Datalake-Guide/pulls)
109109

110110
## 🙏 Acknowledgments
111111

0 commit comments

Comments
 (0)