docs: add Transaction Protocol guide + fix silent CSV size check#11270
Open
vystartasv wants to merge 2 commits intodeepset-ai:mainfrom
Open
docs: add Transaction Protocol guide + fix silent CSV size check#11270vystartasv wants to merge 2 commits intodeepset-ai:mainfrom
vystartasv wants to merge 2 commits intodeepset-ai:mainfrom
Conversation
The os.stat() call for file size warning had a bare except Exception: pass with no diagnostic output. Added logger.debug() so operators can see which files failed size detection.
|
@vystartasv is attempting to deploy a commit to the deepset Team on Vercel. A member of the Team first needs to authorize it. |
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.
What This Adds
Two changes:
1. Transaction Protocol Integration Guide
TRANSACTION_PROTOCOL.md— documents how the Transaction Protocol adds idempotency, rollback, and audit trails to Haystack pipelines. Includes architecture diagram, code example wrapping a Haystack pipeline, and why it matters for production RAG deployments.2. Bug Fix: Silent CSV Size Check
haystack/components/converters/csv.py— theos.stat()call for file size warning had a bareexcept Exception: pass. Addedlogger.debug()so operators can see which files failed size detection.Why Transaction Protocol for Haystack
Haystack is the leading RAG framework in production. Production means:
References