You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some changes to the user facing APIs also will be made in this PR:
POST /v1/process/sync - Receive payload and return result synchronously. If client gets disconnects (network error or timeouts), the results can still be retrieved using /v1/process/serve endpoint
POST /v1/process/async - Receive payload and process asynchronously.
GET /v1/process/serve - Receive processing status and/or results. The request may be submitted using /sync or /async endpoint.
GET /v1/process/message - Retrive message graph for a request id
When submitting the request (either /sync or /async), the request id must not already exist in the store (for the duration of the store TTL). This is needed to avoid accidental overwrite of the results. A query parameter can be provided to allow overwriting.
The callback info will be saved in memory. It will be saved to Redis when the pod is shutting down or when all callbacks for a request id is received.
The text was updated successfully, but these errors were encountered:
Some changes to the user facing APIs also will be made in this PR:
POST /v1/process/sync
- Receive payload and return result synchronously. If client gets disconnects (network error or timeouts), the results can still be retrieved using/v1/process/serve
endpointPOST /v1/process/async
- Receive payload and process asynchronously.GET /v1/process/serve
- Receive processing status and/or results. The request may be submitted using /sync or /async endpoint.GET /v1/process/message
- Retrive message graph for a request idWhen submitting the request (either
/sync
or/async
), the request id must not already exist in the store (for the duration of the store TTL). This is needed to avoid accidental overwrite of the results. A query parameter can be provided to allow overwriting.The callback info will be saved in memory. It will be saved to Redis when the pod is shutting down or when all callbacks for a request id is received.
The text was updated successfully, but these errors were encountered: