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
Copy file name to clipboardExpand all lines: docker/README.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -233,7 +233,7 @@ You can override the default image used by any service in
233
233
```yaml
234
234
services:
235
235
fiftyone-app:
236
-
image: voxel51/fiftyone-app-torch:v2.15.0
236
+
image: voxel51/fiftyone-app-torch:v2.16.0
237
237
```
238
238
239
239
## :rocket: Step 4: Initial Deployment
@@ -826,8 +826,11 @@ If containers show unhealthy states (e.g., `Restarting`, `Exited`):
826
826
| `FIFTYONE_DELEGATED_OPERATION_RUN_LINK_PATH` | Full path to a network-mounted file system or a cloud storage path to use for storing logs generated by delegated operation runs, one file per job. The default `null` means log upload is disabled. | No |
827
827
| `FIFTYONE_DEFAULT_APP_ADDRESS` | The host address that `fiftyone-app` should bind to; `127.0.0.1` is appropriate in most cases | Yes |
828
828
| `FIFTYONE_DEFAULT_APP_PORT` | The host port that `fiftyone-app` should bind to; the default is `5151` | Yes |
829
-
| `FIFTYONE_DO_EXPIRATION_DAYS` | The amount of time in days that a delegated operation can run before being automatically terminated. Default is 1 day. | No |
830
-
| `FIFTYONE_DO_EXPIRATION_MINUTES` | The amount of time in minutes that a delegated operation can run before being automatically terminated. Default is `FIFTYONE_DO_EXPIRATION_DAYS` converted to minutes. If this field is provided it will override `FIFTYONE_DO_EXPIRATION_DAYS`. | No |
829
+
| `FIFTYONE_DO_REQUEUE_DELAY_MINUTES` | The number of minutes an operation can sit in a queued state before being requeued. Can be any positive number. Default is `30`. | No |
830
+
| `FIFTYONE_DO_REQUEUE_MAX_ATTEMPTS` | The number of times an operation is requeued before being terminated. `-1` will never terminate. `0` will terminate without requeue. Default is `3`. | No |
831
+
| `FIFTYONE_DO_EXPIRATION_DAYS` | Deprecated use `FIFTYONE_DO_LEGACY_EXPIRATION_MINUTES` instead. The amount of time in days that an unmonitored delegated operation can run before being automatically terminated. Default is 1 day. | No |
832
+
| `FIFTYONE_DO_EXPIRATION_MINUTES` | The amount of time in minutes that a monitored delegated operation can run without reporting its status before being automatically terminated. If your executor was launched with the `-m` argument or is push based, then it is monitored. Default is 30 minutes. | No |
833
+
| `FIFTYONE_DO_LEGACY_EXPIRATION_MINUTES` | The amount of time in minutes that an unmonitored delegated operation can run before being automatically terminated. Default is `FIFTYONE_DO_EXPIRATION_DAYS` converted to minutes. If this field is provided it will override `FIFTYONE_DO_EXPIRATION_DAYS`. | No |
831
834
| `FIFTYONE_ENCRYPTION_KEY` | Used to encrypt storage credentials in MongoDB | Yes |
832
835
| `FIFTYONE_ENV` | GraphQL verbosity for the `fiftyone-teams-api` service; `production` will not log every GraphQL query, any other value will | No |
833
836
| `FIFTYONE_LOGGING_FORMAT` | The format to use for log messages; `json` or `text`. The default is `text`. | No |
0 commit comments