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: articles/healthcare-apis/fhir/how-to-run-a-reindex.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ ms.author: mikaelw
13
13
There are scenarios where you may have search parameters in the FHIR service in Azure Health Data Services that haven't yet been indexed. This is the case when you define your own custom search parameters. Until the search parameter is indexed, it can't be used in live production. This article covers how to run a reindex job to index any custom search parameters that haven't yet been indexed in your FHIR service database.
14
14
15
15
> [!Warning]
16
-
> It's important that you read this entire article before getting started. A reindex job can be very performance intensive. This article discusses options for how to throttle and control the reindex job.
16
+
> It's important that you read this entire article before getting started. A reindex job can be very performance intensive. This article discusses options for how to throttle and control a reindex job.
17
17
18
18
## How to run a reindex job
19
19
@@ -31,7 +31,7 @@ POST {{FHIR_URL}}/$reindex
31
31
}
32
32
```
33
33
34
-
Leave the `"parameter": []` field blank (as shown) if you don't need to tweak the compute resources allocated to the reindex job. If the request is successful, you will receive a **201 Created** status code. The FHIR service will also return a `Parameters` resource in response:
34
+
Leave the `"parameter": []` field blank (as shown) if you don't need to tweak the compute resources allocated to the reindex job. If the request is successful, you will receive a **201 Created** status code in addition to a `Parameters` resource in response:
35
35
36
36
```json
37
37
HTTP/1.1 201 Created
@@ -93,7 +93,7 @@ Once you’ve started a reindex job, you can check the status of the job using t
|`QueryDelayIntervalInMilliseconds`| The delay between each batch of resources being kicked off during the reindex job. A smaller number will speed up the job while a bigger number will slow it down. | 500 MS (.5 seconds) | 50 to 500000 |
188
+
|`QueryDelayIntervalInMilliseconds`| The delay between each batch of resources being kicked off during the reindex job. A smaller number will speed up the job while a larger number will slow it down. | 500 MS (.5 seconds) | 50 to 500000 |
189
189
|`MaximumResourcesPerQuery`| The maximum number of resources included in the batch of resources to be reindexed. | 100 | 1-5000 |
190
190
|`MaximumConcurrency`| The number of batches done at a time. | 1 | 1-10 |
191
191
192
-
If you want to use any of the parameters above, you can pass them into the `Parameters` resource when you send a`POST` request to start a reindex job.
192
+
If you want to use any of the parameters above, you can pass them into the `Parameters` resource when you send the initial`POST` request to start a reindex job.
0 commit comments