fix: disable cache to resolve parse_cache namespace error#27
Closed
Kaiohz wants to merge 1 commit into
Closed
Conversation
The Kreuzberg cache was causing documents to fail processing with: - ERROR: Unknown namespace: parse_cache - WARNING: Error accessing parse cache - 'No valid documents to process after consistency check' This disables the cache until proper cache directory configuration is implemented.
Collaborator
Author
🤖 Review automatique SoluBot✅ Points positifs
|
| Critère | Note |
|---|---|
| Résout le problème | ✅ |
| Minimalité du fix | ✅ |
| Documentation | ✅ |
| Solution pérenne | ❌ (workaround) |
| Configurabilité | ❌ |
| Tests | ❌ |
🎯 Recommandations
-
Pour ce PR : Le fix est acceptable pour débloquer le pipeline. Prêt à merger.
-
Follow-up : Créer une issue pour :
- Configurer proprement le cache Kreuzberg via env var
- Ajouter des tests unitaires sur KreuzbergAdapter
Review terminée. Le fix débloque la prod, mais prévoir un retour pour une vraie solution de caching.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The Kreuzberg cache was causing documents to fail processing with:
Root Cause
Kreuzberg
use_cache=Truerequires a cache namespace that does not exist by default. The cache tried to accessparse_cachenamespace which was not configured.Solution
Disable the cache (
use_cache=False) until proper cache directory configuration is implemented.Impact
Test