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: demos/app_runner/README.md
+17-1Lines changed: 17 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ This demo shows how an application integrates with the MONAI Deploy Informatics
7
7
8
8
## Requirements
9
9
10
-
- MONAI Deploy Informatics Gateway 0.1.0+
10
+
- MONAI Deploy Informatics Gateway 0.1.1+
11
11
- MONAI Deploy App SDK 0.2.1+
12
12
- A MAP from the [examples](https://github.com/Project-MONAI/monai-deploy-app-sdk/tree/main/examples/apps/) or BYO MAP.
13
13
- RabbitMQ configured and running
@@ -30,6 +30,22 @@ This demo shows how an application integrates with the MONAI Deploy Informatics
30
30
31
31
**Notes**: For MONAI Deploy App SDK 0.2.1, set `ignore_json` to `false` in the `config.json` file so DICOM JSON files are not downloaded.
32
32
33
+
## Job Directory Structure
34
+
35
+
Both retrieved input dataset and MAP generated output are stored under the `jobs/` directory which is configurable in the
36
+
`config.json` file under `working_dir`.
37
+
38
+
A subdirectory is created for each request received using the `correlation_id` specified in the payload.
39
+
Given that one or more workflows can be specified in the payload, output generated from each MAP is stored under `jobs/{correlation_id}/output/{map_name}`.
40
+
41
+
Sample output of `jobs` directory:
42
+
```
43
+
└── db61c4fc-b84e-4255-b40a-60254f93ca6f (correlation_id of the request)
44
+
├── input
45
+
└── output
46
+
└── dcm-to-img-latest (name of the workflow/MAP)
47
+
```
48
+
33
49
## Other Ideas
34
50
35
51
💡 Instead of calling App Runner, integrate with [MIS](https://github.com/Project-MONAI/monai-deploy-app-server)
0 commit comments