31aafa53e4a899bd81e69582a9c87f50af9e246b
Topic Creation Methods:
1. Manual CLI (Fastest - 2 min):
└─ kubectl port-forward + curl POST /v1/queues
└─ k8s/config/create-kmsvc-topics.sh (interactive)
2. Kubernetes Job (Automated - 1 min):
└─ kubectl apply kmsvc-topics-job.yaml
└─ Runs once, creates topics if not exist
└─ Can re-run safely
3. Terraform (IaC - 2 min):
└─ terraform apply -target=null_resource.create_kmsvc_topics
└─ Tracks topic creation in .tfstate
└─ Idempotent
4. Shell Script (Interactive - 1 min):
└─ ./create-kmsvc-topics.sh
└─ Auto port-forward or manual mode
└─ Color output + progress logging
Topics Created:
1. poimen-memory-dlq (DLQ for extraction + webhook + agent)
├─ Retention: 14 days (1,209,600 seconds)
├─ Visibility: 5 minutes (300 seconds)
├─ Messages: {id, type, workflow_id, error, timestamp, ...}
└─ Consumer: queue_worker_dlq.rs::DlqHandler
2. poimen-memory-metric-dlq (DLQ for metrics failures)
├─ Retention: 14 days
├─ Visibility: 5 minutes
├─ Messages: {id, type, agent_id, error, timestamp, ...}
└─ Consumer: (future) metrics replay handler
Files Added:
1. k8s/config/create-kmsvc-topics.sh (executable)
├─ 90 lines
├─ Auto port-forward + retry logic
├─ Color output + error handling
└─ Usage: ./create-kmsvc-topics.sh [manual]
2. k8s/config/kmsvc-topics-job.yaml (Kubernetes)
├─ Job resource (one-time execution)
├─ Uses curl container
├─ Waits for management-service readiness
├─ 30-second retry loop
└─ Non-fatal on existing topics
3. k8s/config/terraform-kmsvc-topics.tf (Terraform)
├─ null_resource with local-exec
├─ Variables for endpoint + namespace
├─ Idempotent + traceable
└─ Outputs: created_topics + test_commands
4. docs/PHASE_6_6_KMSVC_TOPICS.md (Complete Guide)
├─ Table of topics + config
├─ 4 creation methods with examples
├─ Verification commands
├─ Message format specs
├─ Monitoring + alerts
├─ Troubleshooting guide
└─ Next steps checklist
Verification Commands:
✅ List all topics:
curl http://localhost:8080/v1/queues
✅ Check specific topic:
curl http://localhost:8080/v1/queues/poimen-memory-dlq
✅ Send test message:
curl -X POST http://localhost:8080/v1/queues/poimen-memory-dlq/messages -H "Content-Type: application/json" -d '{"body": "{\"type\": \"test\"}"}'
✅ Receive messages:
curl -X POST http://localhost:8080/v1/queues/poimen-memory-dlq/messages/receive -H "Content-Type: application/json" -d '{"maxNumberOfMessages": 10}'
Integration Points:
Phase 6.6 Code → kmsvc Topics:
1. webhook_executor.rs::send_dlq_message()
└─ On max retries: Send to poimen-memory-dlq
└─ Payload: {workflow_id, webhook_url, status, error, ...}
2. metrics_persistence.rs::send_persistence_dlq()
└─ On DB failure: Send to poimen-memory-metric-dlq
└─ Payload: {agent_id, error, timestamp}
3. queue_worker_dlq.rs::DlqHandler
└─ Processes poimen-memory-dlq messages
└─ Retries extraction failures
Production Checklist:
✅ Topics defined (2 topics)
✅ Configuration documented (retention, visibility)
✅ Creation methods (4 options)
✅ Verification commands
✅ Message formats specified
✅ Monitoring guide
✅ Troubleshooting guide
✅ Ready for deployment
Next Steps:
1. Choose creation method (recommend Method 1 for fast testing)
2. Create topics: ./create-kmsvc-topics.sh or kubectl apply job
3. Verify: curl http://localhost:8080/v1/queues
4. Deploy memory service (Phase 6.5)
5. Test webhook + metrics failures send to DLQ
6. Monitor DLQ lag + message rate (Phase 7)
Phase 6.6 Complete: ✅
- Webhook execution: ✅
- Metrics persistence: ✅
- kmsvc DLQ integration: ✅
- Topic creation (4 methods): ✅
- Documentation: ✅
Poimen Memory System
Production-grade knowledge graph RAG system with semantic search, temporal filtering, community detection, path finding, and faceted search.
Quick Start
# Build
cargo build --release
# Run
cargo run --release -- --config config/default.toml
API Documentation
See API.md for complete endpoint specifications, request/response formats, and usage examples.
Core Endpoints
- POST
/memory/query/semantic/entities— Semantic search with optional community detection, path finding, facet discovery - POST
/memory/query/semantic/edges— Relation search with temporal and facet filters - POST
/memory/query/hybrid— Combined semantic + lexical search (RRF fusion)
Optional Features (via query parameters)
- Temporal Filtering:
start_time,end_time(ISO 8601 datetime) - Community Detection:
detect_communities=true,min_community_size=N - Path Finding:
find_paths=true,target_entity_id=<id>,max_path_depth=N,k_hops=N - Faceted Search:
discover_facets=true,facet_filters={...}
Architecture
crates/mem-cli/src/
├── query/
│ ├── semantic_retriever.rs (vector + lexical search)
│ ├── community_detector.rs (Louvain algorithm)
│ ├── path_finder.rs (BFS/DFS graph traversal)
│ └── faceted_search.rs (multi-dimension filtering)
├── handlers/
│ └── semantic.rs (HTTP endpoints)
└── http_server.rs (Actix-web server)
crates/mem-core/src/
├── domain.rs (data structures)
├── entity.rs, edge.rs (graph entities)
└── scoring.rs (relevance metrics)
crates/mem-store/src/
└── *_repo.rs (database persistence)
Testing
# Run all tests
cargo test --lib
# Run specific test suite
cargo test --lib query::semantic
cargo test --lib handlers::semantic
# With output
cargo test --lib -- --nocapture
Configuration
See config/default.toml for:
- Database connection strings
- JWT authentication settings
- Rate limiting thresholds
- Embeddings model configuration
Production Deployment
- Build release binary:
cargo build --release - Set environment:
JWT_SECRET,DATABASE_URL,OPENAI_API_KEY - Run:
./target/release/mem-cli - Health check:
GET http://localhost:8080/health
Development
Quality Standards:
- CRAP score < 3.2 (low complexity)
- DRY > 98% (minimal duplication)
- SOLID 5.0/5 (excellent design)
- 230+ comprehensive tests (100% pass rate)
- Performance: P50 latency < 500ms
Adding New Features:
- Create core module in
crates/mem-cli/src/query/ - Add optional parameters to request struct
- Extend response with optional field (use
skip_serializing_if) - Add handler logic (delegate to core module)
- Write 25-35 tests (unit + integration)
- Document in API.md
See CLAUDE.md for project context and constraints.
Description
Agent-ready Graph-RAG system with hallucination prevention and enterprise RBAC
https://forgejo.riotpiao.com/rock/poimen-memory
1.8 MiB
Languages
Rust
98.7%
Shell
0.6%
Python
0.4%
PLpgSQL
0.2%