Skip to content

Commit 1d46df0

Browse files
Expand sample downloads and update diagram links
Added links to additional e-commerce and feed sample CSV files in the downloads documentation. Also updated diagram links to point to .md files and added a quick navigation section for sample exploration.
1 parent a9477d8 commit 1d46df0

File tree

1 file changed

+21
-4
lines changed

1 file changed

+21
-4
lines changed

docs/downloads.md

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ title: Raw Assets & Downloads
55
# Raw Assets & Downloads
66

77
Use these for local testing/importing into tools.
8+
**Explore samples:** [E-commerce Samples](ecom/samples.md) · [Feed Samples](feed/samples.md)
9+
810
If a folder is missing in your repo, create it and copy files from your working branch.
911

1012
## Samples
@@ -15,22 +17,37 @@ If a folder is missing in your repo, create it and copy files from your working
1517
| `access_patterns.csv` | Canonical access patterns for the e-commerce example. | [Download](assets/samples/ecom/access_patterns.csv) |
1618
| `queries.http` | Copy-pasteable HTTP requests (GET/Query/Batch, etc.). | [Download](assets/samples/ecom/queries.http) |
1719
| `seed.jsonl` | Seed data (JSON Lines) for quick prototyping. | [Download](assets/samples/ecom/seed.jsonl) |
20+
| `users.csv` | User master rows. | [Download](assets/samples/ecom/users.csv) |
21+
| `orders.csv` | Order meta rows (PK=ORDER#id, SK=META). | [Download](assets/samples/ecom/orders.csv) |
22+
| `order_lines.csv` | Lines (PK=ORDER#id, SK=LINE#no). | [Download](assets/samples/ecom/order_lines.csv) |
23+
| `payments.csv` | Payment attempts. | [Download](assets/samples/ecom/payments.csv) |
24+
| `shipments.csv` | Shipment updates. | [Download](assets/samples/ecom/shipments.csv) |
25+
| `products.csv` | Product catalog (sample). | [Download](assets/samples/ecom/products.csv) |
26+
| `inventory_snapshots.csv` | Inventory snapshots. | [Download](assets/samples/ecom/inventory_snapshots.csv) |
27+
| `addresses.csv` | Address book (per user). | [Download](assets/samples/ecom/addresses.csv) |
28+
| `events_outbox.csv` | Outbox events for async publish. | [Download](assets/samples/ecom/events_outbox.csv) |
1829

1930
### Social / Activity Feed
2031
| File | Description | Download |
2132
|---|---|---|
2233
| `access_patterns.csv` | Access patterns for timelines, fan-out, etc. | [Download](assets/samples/feed/access_patterns.csv) |
2334
| `queries.http` | HTTP queries for feed write/read paths. | [Download](assets/samples/feed/queries.http) |
2435
| `seed.jsonl` | Seed data for users, posts, timelines. | [Download](assets/samples/feed/seed.jsonl) |
36+
| `users.csv` | User master rows. | [Download](assets/samples/feed/users.csv) |
37+
| `posts.csv` | Posts (PK=POST#id, SK=META). | [Download](assets/samples/feed/posts.csv) |
38+
| `likes.csv` | Likes per post. | [Download](assets/samples/feed/likes.csv) |
39+
| `comments.csv` | Comments per post. | [Download](assets/samples/feed/comments.csv) |
40+
| `hashtags.csv` | Post tags. | [Download](assets/samples/feed/hashtags.csv) |
41+
| `feed_fanout.csv` | Fanout entries (home feed). | [Download](assets/samples/feed/feed_fanout.csv) |
42+
| `follows.csv` | Follow graph edges. | [Download](assets/samples/feed/follows.csv) |
43+
| `notifications.csv` | Notifications sample. | [Download](assets/samples/feed/notifications.csv) |
2544

2645
## Diagrams
2746

28-
2947
| Topic | Go |
3048
|---|---|
31-
| E-commerce | [Open Diagrams](ecom/diagrams/) |
32-
| Social / Activity Feed | [Open Diagrams](feed/diagrams/) |
33-
49+
| E-commerce | [Open Diagrams](ecom/diagrams.md) |
50+
| Social / Activity Feed | [Open Diagrams](feed/diagrams.md) |
3451

3552
## Production Checklists
3653

0 commit comments

Comments
 (0)