docs(workflows): document 5KB variable limit and error handling behavior#15034
Merged
meikelmosby merged 2 commits intomasterfrom Feb 17, 2026
Merged
Conversation
Documents the 5KB workflow variable size limit and the error handling behavior when the limit is exceeded. Workflows now throw an error instead of silently dropping values. Relates to PostHog/posthog#47846
Documents the new 5KB variable size limit for workflow output variables, including the error message, solutions using result_path, and error handling behavior (on_error: abort vs continue). Ref: PostHog/posthog#47846
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
meikelmosby
approved these changes
Feb 17, 2026
sarahxsanders
pushed a commit
that referenced
this pull request
Feb 27, 2026
…ior (#15034) * docs(workflows): add variable size limit documentation Documents the 5KB workflow variable size limit and the error handling behavior when the limit is exceeded. Workflows now throw an error instead of silently dropping values. Relates to PostHog/posthog#47846 * docs(workflows): add troubleshooting section for 5KB variable size limit Documents the new 5KB variable size limit for workflow output variables, including the error message, solutions using result_path, and error handling behavior (on_error: abort vs continue). Ref: PostHog/posthog#47846 --------- Co-authored-by: inkeep[bot] <257615677+inkeep[bot]@users.noreply.github.com>
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.
Summary
This PR updates the Workflows documentation to reflect changes from PostHog/posthog#47846, which:
on_error: abortexit on error, andon_error: continueskip to the next stepChanges
contents/docs/workflows/best-practices.mdxresult_pathto store only needed fieldson_error: abortvson_error: continue)contents/docs/workflows/troubleshooting.mdxRelated PR