Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
55ddce0 to
b477695
Compare
b477695 to
6362155
Compare
6362155 to
340f0a0
Compare
340f0a0 to
89da3f5
Compare
|
Going to bring in the Job Queue feature page into the PR today - just fyi. |
Signed-off-by: Phil Prasek <prasek@gmail.com>
|
added a commit: refine standalone activity encyclopedia and eval pages. note there's a placeholder for CLI download URL users will need to use. We'll want to make sure that's used consistently in the dev guides too. links to the SDK dev guides (Go/Python) are also broken until those other PRs land |
|
Note: metrics updates for standalone activities should be merged when this PR is merged. That PR is here: #4241 |
| - Priority and fairness - multi-tenant fairness, weighted priority tiers, and safeguards against starvation of lower-weighted tasks | ||
| - Visibility - list Activity Executions and view status, retry count, and last error | ||
| - Manual completion by ID (or token): ignore activity return and wait for external completion | ||
| - Activity metrics - including counts for success, failure, timeout, and cancel |
There was a problem hiding this comment.
There was a problem hiding this comment.
@jsundai looks like both PRs can be merged together when were ready: #4155 (comment)
…ities, fix capitalization, add todo placeholder for python cloud, consistency in sidebar, add clone instructions for python
|
|
||
| - Install the latest Temporal CLI | ||
|
|
||
| 🚧 Please build from development branch: https://github.com/temporalio/cli/tree/release/v1.6.x-standalone-activity |
There was a problem hiding this comment.
We need the official CLI version with a link to download before these docs are merged
There was a problem hiding this comment.
@dandavison can you add the min recommended CLI and Go SDK versions when available? /cc @yuandrew
|
|
||
| This documentation uses source code derived from the [Python sample](https://github.com/temporalio/samples-python/blob/main/hello/hello_standalone_activity.py). | ||
|
|
||
| <!-- TODO: Update with actual sample path when available --> |
There was a problem hiding this comment.
The sample path above looks good, are there any other changes needed for this TODO?
|
|
||
| - Install the latest Temporal CLI | ||
|
|
||
| 🚧 Please build from development branch: https://github.com/temporalio/cli/tree/release/v1.6.x-standalone-activity |
There was a problem hiding this comment.
We need the official CLI version with a link to download before these docs are merged
There was a problem hiding this comment.
@dandavison can you add the min recommended CLI and Python SDK versions when available?
prasek
left a comment
There was a problem hiding this comment.
Overall lgtm, dropped a few comments
All code samples now use ClientConfig.load_client_connect_config() instead of
hardcoding Client.connect("localhost:7233"), matching the Go approach. This means
the same code works against both local dev server and Temporal Cloud without
changes — just set environment variables or configure a TOML profile.
The Cloud section is collapsed from ~130 lines of duplicated setup (cert
generation, tcld install, namespace creation, duplicate code samples) to a
concise reference that links to the temporal-client page for full details.
Go matches the Python standalone activities pattern: add an info callout
explaining that all samples use envconfig (so they work against both local
and Cloud without code changes), and collapse the Cloud section from ~95
lines of duplicated setup to a concise env var reference with a link to the
temporal-client page.
|
0ac9ccb to
4dae2ca
Compare
📖 Docs PR preview links
|
0ae8f43 to
9a65e3a
Compare
Development branch for Standalone Activity documentation
Standalone Activity is currently in development, and due to reach Pre-release on March 11.
Rendered docs
To run a local server that supports Standalone Activity:
git clone https://github.com/temporalio/cli.git cd cli git fetch origin git checkout release/v1.6.x-standalone-activity go build ./cmd/temporal ./temporal server start-dev