Skip to content

docs: add SDK parity 1 — nav, reference pages, Java reference#420

Merged
pratyush618 merged 12 commits into
masterfrom
docs/parity-references
Jul 12, 2026
Merged

docs: add SDK parity 1 — nav, reference pages, Java reference#420
pratyush618 merged 12 commits into
masterfrom
docs/parity-references

Conversation

@pratyush618

@pratyush618 pratyush618 commented Jul 12, 2026

Copy link
Copy Markdown
Collaborator

Nav + universal pages

  • Link the shared keda + prometheus pages into the Java guide nav — they fanned out to Java URLs but were never linked.
  • SDK-gate Python-only framing shown to every SDK: the queue comparison page, architecture cards (cloudpickle/proxies), the mesh crate path, and a note on the Python-syntax changelog samples.

Missing reference pages

  • New python/api-reference/serializers and python/api-reference/errors — both features ship, only Node/Java documented them.
  • New node/api-reference/testing (mockResource).

Java reference completeness (feature ships, reference was silent)

  • Task-log streaming (writeTaskLog / getTaskLogs / getTaskLogsAfter / queryTaskLogs).
  • Circuit breakers (CircuitBreakerConfig + listCircuitBreakers).
  • Job dependencies (EnqueueOptions.Builder.dependsOn).

Every documented API verified against SDK source. Parity gate, typecheck, and static build all pass.

Summary by CodeRabbit

  • Documentation
    • Expanded Java documentation for structured task logs, streaming, circuit breakers, task dependencies, and configuration options.
    • Added Node.js testing documentation, including resource mocking guidance.
    • Added Python documentation for serializers and the exception hierarchy.
    • Added Prometheus and KEDA guides to navigation.
    • Updated architecture, comparison, changelog, and SDK-specific API reference content for clarity and broader coverage.

@github-actions github-actions Bot added the docs label Jul 12, 2026
@coderabbitai

coderabbitai Bot commented Jul 12, 2026

Copy link
Copy Markdown

Review Change Stack

Warning

Review limit reached

You’ve reached a temporary PR review limit under our Fair Usage Limits Policy.

Your recent review volume is higher than typical usage, so adaptive limits are currently applied.

Next review available in: 43 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: c7d86c44-591d-4d09-8d74-b82cc4d6cb80

📥 Commits

Reviewing files that changed from the base of the PR and between 6f24706 and 383cb8d.

📒 Files selected for processing (3)
  • docs/content/docs/java/api-reference/task.mdx
  • docs/content/docs/python/api-reference/errors.mdx
  • docs/content/docs/resources/comparison.mdx
📝 Walkthrough

Walkthrough

This PR refreshes architecture and comparison documentation, expands Java queue API references, adds Node testing and Python error/serializer references, updates documentation navigation, and adds a generated changelog notice.

Changes

Documentation refresh

Layer / File(s) Summary
Architecture and comparison documentation
docs/content/docs/architecture/*, docs/content/docs/resources/comparison.mdx, docs/content/docs/resources/changelog.mdx, scripts/sync-changelog.mjs
Architecture descriptions, SDK-aware comparison content, and changelog notices are updated.
Java queue and task APIs
docs/content/docs/java/api-reference/queue/*, docs/content/docs/java/api-reference/task.mdx, docs/content/docs/java/guides/core/enqueue-options.mdx, docs/content/docs/java/guides/{integrations,operations}/meta.json
Java documentation adds structured task-log queries, circuit-breaker APIs, dependency-gated enqueue options, and related guide navigation.
Node testing API
docs/content/docs/node/api-reference/*
Node API navigation and reference content document the in-process testing model and mockResource.
Python errors and serializers
docs/content/docs/python/api-reference/*
Python API navigation adds errors and serializers pages covering exception handling, serializer protocols, built-in formats, and payload codecs.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately summarizes the PR’s main theme: adding SDK parity documentation across navigation and reference pages.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/parity-references

Comment @coderabbitai help to get the list of available commands.

@pratyush618 pratyush618 changed the title docs: SDK parity 1 — nav, reference pages, Java reference docs: add SDK parity 1 — nav, reference pages, Java reference Jul 12, 2026

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 5

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@docs/content/docs/java/api-reference/queue/workers.mdx`:
- Around line 21-24: Update the listCircuitBreakers() description to document
only fields exposed by CircuitBreakerState, removing the unsupported “next-probe
time” claim or explicitly describing it as derived from openedAt plus
cooldownMs. Preserve the existing coverage of open/closed/half-open state and
failure counts.

In `@docs/content/docs/java/api-reference/task.mdx`:
- Around line 49-51: Update the dependsOn(String... jobIds) description in the
task API reference to state that the job remains pending until all listed jobs
complete successfully, and is cancelled if any dependency fails or is cancelled.
Match the wording and behavior documented in the enqueue options guide.

In `@docs/content/docs/python/api-reference/errors.mdx`:
- Around line 14-20: Update the ResourceNotFoundError example around reregister
so it does not pass exc.args[0] as though it were the resource name. Use an
explicit resource-name value or demonstrate extracting the name from the
formatted exception message before calling reregister, while preserving the
existing TaskitoError handling.

In `@docs/content/docs/resources/comparison.mdx`:
- Around line 180-184: Revise the JVM job schedulers paragraph around Quartz,
JobRunr, and Spring Batch to match the comparison table: avoid grouping all
three as cron/batch tools backed by relational databases, and describe their
categories and supported storage more precisely. Keep the taskito capabilities
and backend description unchanged.
- Around line 6-8: Update the comparison page’s introductory text and the
affected Broker/backend entries to consistently distinguish broker requirements
from backend choices: state that no broker is required, SQLite is the default,
and Postgres or Redis are optional scale-out backends. Remove wording that
implies Redis is unsupported, and include Postgres wherever the scale-out
options are listed.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: e81e5c13-9bb6-419c-b61a-db69b832e9dc

📥 Commits

Reviewing files that changed from the base of the PR and between f77e589 and 6f24706.

📒 Files selected for processing (18)
  • docs/content/docs/architecture/index.mdx
  • docs/content/docs/architecture/mesh.mdx
  • docs/content/docs/java/api-reference/queue/events.mdx
  • docs/content/docs/java/api-reference/queue/workers.mdx
  • docs/content/docs/java/api-reference/task.mdx
  • docs/content/docs/java/guides/core/enqueue-options.mdx
  • docs/content/docs/java/guides/integrations/meta.json
  • docs/content/docs/java/guides/operations/meta.json
  • docs/content/docs/node/api-reference/index.mdx
  • docs/content/docs/node/api-reference/meta.json
  • docs/content/docs/node/api-reference/testing.mdx
  • docs/content/docs/python/api-reference/errors.mdx
  • docs/content/docs/python/api-reference/index.mdx
  • docs/content/docs/python/api-reference/meta.json
  • docs/content/docs/python/api-reference/serializers.mdx
  • docs/content/docs/resources/changelog.mdx
  • docs/content/docs/resources/comparison.mdx
  • scripts/sync-changelog.mjs

Comment thread docs/content/docs/java/api-reference/queue/workers.mdx
Comment thread docs/content/docs/java/api-reference/task.mdx Outdated
Comment thread docs/content/docs/python/api-reference/errors.mdx
Comment thread docs/content/docs/resources/comparison.mdx Outdated
Comment thread docs/content/docs/resources/comparison.mdx Outdated
@pratyush618
pratyush618 merged commit 420a62d into master Jul 12, 2026
14 checks passed
@pratyush618
pratyush618 deleted the docs/parity-references branch July 12, 2026 16:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant