Skip to content

Commit 6cdc7e7

Browse files
committed
Remove StackOverflow examples from documentation and navigation; update dependencies comment
1 parent 65cc14b commit 6cdc7e7

16 files changed

Lines changed: 3 additions & 7269 deletions

.github/workflows/test-python-examples.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ jobs:
247247
python3 download_data.py movielens-small
248248
fi
249249
250-
if echo "$examples" | grep -qE '(^|[[:space:]])07_stackoverflow_multimodel\.py([[:space:]]|$)'; then
250+
if echo "$examples" | grep -qE '(^|[[:space:]])(08_stackoverflow_tables_oltp|09_stackoverflow_tables_olap|10_stackoverflow_graph_oltp|11_stackoverflow_graph_olap|14_stackoverflow_hybrid_queries)\.py([[:space:]]|$)'; then
251251
echo "📥 Downloading Stack Overflow Small dataset..."
252252
python3 download_data.py stackoverflow-small --no-vectors
253253
fi
@@ -334,11 +334,6 @@ jobs:
334334
example_name="$example (vector search, import from JSONL)"
335335
timeout_duration=900 # 15 minutes
336336
;;
337-
"07_stackoverflow_multimodel.py")
338-
example_args="--dataset stackoverflow-small"
339-
example_name="$example (stackoverflow-small dataset)"
340-
timeout_duration=1800 # 30 minutes
341-
;;
342337
*)
343338
example_args=""
344339
example_name="$example"

bindings/python/docs/development/contributing.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,6 @@ arcadedb/bindings/python/
135135
│ ├── 04_csv_import_documents.py
136136
│ ├── 05_csv_import_graph.py
137137
│ ├── 06_vector_search_recommendations.py
138-
│ ├── 07_stackoverflow_multimodel.py
139-
│ ├── 07_server_mode_rest_api.py
140138
│ ├── download_data.py # Data download helper
141139
│ ├── data/ # Example datasets
142140
│ └── benchmark-vector/ # Vector benchmark suite

bindings/python/docs/development/testing/test-resultset.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,3 @@ Key behaviors: ResultSet is single-use for iteration, `count()` runs server-side
9090
- **[Results API](../../api/results.md)** - Full API reference
9191
- **[Query Guide](../../guide/core/queries.md)** - Query patterns
9292
- **[Database Tests](test-core.md)** - Database operations
93-
- **[Example 07: StackOverflow](../../examples/07_stackoverflow_multimodel.md)** - Complex queries

bindings/python/docs/examples/02_social_network_graph.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -362,11 +362,8 @@ db.command("sql", """
362362
- [**03 - Vector Search**](03_vector_search.md) - Semantic similarity search with HNSW indexing
363363
- [**05 - CSV Import (Graph)**](05_csv_import_graph.md) - Creating graph structures from CSV data
364364
- [**06 - Vector Search Recommendations**](06_vector_search_recommendations.md) - Semantic search and movie recommendations
365-
- [**07 - Multi-Model Stack Overflow**](07_stackoverflow_multimodel.md) - Combining graph, documents, and vectors
366365
367366
## Next Steps
368367
369368
- Learn about [Vector Search](03_vector_search.md) for AI-powered semantic search
370369
- Explore [CSV Import (Graph)](05_csv_import_graph.md) for importing graph data from files
371-
- See [Multi-Model Stack Overflow](07_stackoverflow_multimodel.md) for combining graph with documents and vectors
372-
- Check out [Server Mode & HTTP API](07_server_mode_rest_api.md) for production deployment

bindings/python/docs/examples/07_stackoverflow_multimodel.md

Lines changed: 0 additions & 120 deletions
This file was deleted.

bindings/python/docs/examples/08_server_mode_rest_api.md

Lines changed: 0 additions & 114 deletions
This file was deleted.

bindings/python/docs/examples/basic.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,6 @@ Browse all examples:
113113
- **[04 - CSV Import (Tables)](04_csv_import_documents.md)** - Import tabular data
114114
- **[05 - CSV Import (Graph)](05_csv_import_graph.md)** - Import graph data
115115
- **[06 - Vector Search (Movies)](06_vector_search_recommendations.md)** - Movie recommendations
116-
- **[07 - StackOverflow (Multi-Model)](07_stackoverflow_multimodel.md)** - Multi-model database
117-
- **[07 - Server Mode](07_server_mode_rest_api.md)** - HTTP server & Studio UI
118116

119117
## Source Code
120118

bindings/python/docs/examples/download_data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Dataset sizes:
8383
- stackoverflow-large: ~10 GB disk (subset of full)
8484
- stackoverflow-full: ~323 GB disk
8585

86-
Expected document counts (from `07_stackoverflow_multimodel.py`):
86+
Expected document counts:
8787

8888
**stackoverflow-small**
8989

bindings/python/docs/examples/import.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -131,18 +131,6 @@ with arcadedb.open_database("./graph_import_demo") as db:
131131
print(stats)
132132
```
133133

134-
## Multi-Model Import
135-
136-
Combine different import strategies for multi-model databases:
137-
138-
**[Example 07 - StackOverflow Multi-Model](07_stackoverflow_multimodel.md)**
139-
140-
See a complete example that combines:
141-
142-
- Document storage for questions/answers
143-
- Graph relationships for user connections
144-
- Vector embeddings for semantic search
145-
146134
## Performance Tips
147135

148136
### Optimize Import Speed

bindings/python/docs/examples/index.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@ Production graph creation from MovieLens dataset. Comprehensive performance anal
2828
**[06 - Vector Search - Movie Recommendations](06_vector_search_recommendations.md)**
2929
Production-ready vector embeddings and HNSW (JVector) indexing for semantic movie search.
3030

31-
**[07 - Multi-Model: Stack Overflow Q&A](07_stackoverflow_multimodel.md)**
32-
Documents (questions/answers), graph (user relationships, tags), and vectors (duplicate detection) in one comprehensive system. Demonstrates all three models working together with rich Stack Exchange dataset. Features RID-based pagination patterns and index-based vertex lookups for high performance.
33-
34-
**[07 - Server Mode & HTTP API](07_server_mode_rest_api.md)**
35-
Embedded server with Studio UI and REST API. Demonstrates hybrid access pattern (embedded Python + HTTP API), concurrent load testing with multiple clients, polyglot querying (SQL + OpenCypher), and visual database exploration using ArcadeDB Studio.
3631

3732
## Quick Start
3833

@@ -51,8 +46,6 @@ python 01_simple_document_store.py
5146
4. **CSV Import - Documents** (04) - ETL to documents with MovieLens
5247
5. **CSV Import - Graph** (05) - Same data as graph with performance benchmarks
5348
6. **Vector Search - Movies** (06) - Semantic search and recommendations
54-
7. **Multi-Model Stack Overflow** (07) - Documents + Graph + Vectors
55-
8. **Server Mode** (08) - Production deployment and Studio UI
5649

5750
---
5851

0 commit comments

Comments
 (0)