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
Cowait should support task-level caching. Tasks that can be considered idempotent can be marked with a cached flag to activate caching behavior.
Cache storage backend is configured in the task context. Any fsspec compatible filesystem can be used. Cached tasks are stored in .cowait/cache/<hash>.json
New TaskDefinition fields:
cached: bool
hash: string
The task hash will be computed from the following fields:
name
image
inputs
meta
The text was updated successfully, but these errors were encountered:
Cowait should support task-level caching. Tasks that can be considered idempotent can be marked with a
cached
flag to activate caching behavior.Cache storage backend is configured in the task context. Any
fsspec
compatible filesystem can be used. Cached tasks are stored in.cowait/cache/<hash>.json
New
TaskDefinition
fields:cached
: boolhash
: stringThe task hash will be computed from the following fields:
name
image
inputs
meta
The text was updated successfully, but these errors were encountered: