Skip to content

Commit 38cc98c

Browse files
authored
125137 Import data documentation changes
1 parent 95e3182 commit 38cc98c

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

articles/healthcare-apis/fhir/configure-import-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ For this step, you need to get the request URL and JSON body:
6060
3. Select **JSON View**.
6161
4. Select the API version as **2022-06-01** or later.
6262

63-
To specify the Azure storage account in JSON view, you need to use the [REST API](/rest/api/healthcareapis/services/create-or-update) to update the FHIR service.
63+
To specify the Azure storage account in JSON view which is in **READ** mode, you need to use the [REST API](/rest/api/healthcareapis/services/create-or-update) to update the FHIR service.
6464

6565
[![Screenshot of selections for opening the JSON view.](media/bulk-import/fhir-json-view.png)](media/bulk-import/fhir-json-view.png#lightbox)
6666

articles/healthcare-apis/fhir/import-data.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ To achieve the best performance with the `import` operation, consider these fact
7272

7373
- The data must be in the same tenant as the FHIR service.
7474

75+
- To obtain an access token, see [Access Token](using-rest-client.md)
76+
7577

7678
### Make a call
7779

@@ -288,6 +290,27 @@ Here are the error messages that occur if the `import` operation fails, along wi
288290

289291
**Solution:** Reduce the size of your data or consider Azure API for FHIR, which has a higher storage limit.
290292

293+
#### 423 Locked
294+
295+
**Behavior:** The `import` operation fails and returns `423 Locked`. The response body includes this content:
296+
297+
```json
298+
{
299+
"resourceType": "OperationOutcome",
300+
"id": "13876ec9-3170-4525-87ec-9e165052d70d",
301+
"issue": [
302+
{
303+
"severity": "error",
304+
"code": "processing",
305+
"diagnostics": "import operation failed for reason: Service is locked for initial import mode."
306+
}
307+
]
308+
}
309+
```
310+
**Cause:** The FHIR Service is configured with Initial import mode which will blocked other operations.
311+
312+
**Solution:** Switch the FHIR service's Initial import mode off, or select Incremental mode.
313+
291314
## Limitations
292315
- The maximum number of files allowed for each `import` operation is 10,000.
293316
- The number of files ingested in the FHIR server with same lastUpdated field value upto milliseconds can't exceed beyond 10,000.

0 commit comments

Comments
 (0)