Skip to content

Commit 9726af5

Browse files
Merge pull request #285681 from v-ajajvanu/personal/v-ajaj/125137-2
125137 Import data documentation changes - Set 2
2 parents 3b6ebde + c0b7e64 commit 9726af5

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ 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/fhir-services/create-or-update) to update the FHIR service.
63+
64+
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.
6465

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

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

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

6868
- The data must be in the same tenant as the FHIR service.
6969

70+
- To obtain an access token, see [Access Token](using-rest-client.md)
71+
7072

7173
### Make a call
7274

@@ -251,6 +253,27 @@ The `import` operation fails and returns `500 Internal Server Error`. The respon
251253
Cause: You reached the storage limit of the FHIR service.
252254
Solution: Reduce the size of your data or consider Azure API for FHIR, which has a higher storage limit.
253255

256+
#### 423 Locked
257+
258+
**Behavior:** The `import` operation fails and returns `423 Locked`. The response body includes this content:
259+
260+
```json
261+
{
262+
"resourceType": "OperationOutcome",
263+
"id": "13876ec9-3170-4525-87ec-9e165052d70d",
264+
"issue": [
265+
{
266+
"severity": "error",
267+
"code": "processing",
268+
"diagnostics": "import operation failed for reason: Service is locked for initial import mode."
269+
}
270+
]
271+
}
272+
```
273+
**Cause:** The FHIR Service is configured with Initial import mode which will blocked other operations.
274+
275+
**Solution:** Switch the FHIR service's Initial import mode off, or select Incremental mode.
276+
254277
## Limitations
255278
- The maximum number of files allowed for each `import` operation is 10,000.
256279
- 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)