docs: add REST API job lifecycle cookbook#10983
Draft
DanielLeens wants to merge 2 commits into
Draft
Conversation
Add practical REST API job lifecycle guide covering: - Job submission via JSON body (single job and multi-transform examples) - Job status query: running, finished, and metrics endpoints - Log query endpoint usage - Stop / cancel / stop-with-savepoint semantics comparison table - Job recovery: restart from checkpoint or specific savepoint path - Authentication: basic auth and bearer token examples - Performance considerations: finished-job slowness, concurrent submission throttling - Common errors and troubleshooting table Closes apache#10979 (P0-3)
Contributor
CI Fix: Replace deprecated field namesThe Code style CI check is failing because Files affected:
Fix (16 occurrences, both files): The fix commit is available at: https://github.com/davidzollo/seatunnel/tree/fix/pr-10983-ci-fix You can apply it with: git fetch https://github.com/davidzollo/seatunnel fix/pr-10983-ci-fix
git cherry-pick FETCH_HEAD |
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.
Purpose
Practical operational guide for managing the full SeaTunnel Zeta REST API job lifecycle, complementing the existing REST API reference docs.
Changes
docs/en/engines/zeta/rest-api-job-lifecycle.md(EN)docs/zh/engines/zeta/rest-api-job-lifecycle.md(ZH)docs/sidebars.jsto include the new page inside the REST API categoryCoverage
Closes #10979 (P0-3)