FHIR "Search selects more than maximum allowed number of results (1000)."
I'm experimenting with FHIR bulk data load using NDJSONs, so far the import is running smoothly, but when I'm trying to perform a request of kind /Patient or /Procedure I'm getting back the following error:
{
"resourceType": "OperationOutcome",
"issue": [
{
"severity": "error",
"code": "too-costly",
"diagnostics": "<HSFHIRErr>SearchTooCostly",
"details": {
"text": "Search selects more than maximum allowed number of results (1000)."
}
}
]
}
Is this a limitiation of IRIS for Health community edition or what?
Product version: IRIS 2024.1
Discussion (0)0
Comments
I'm sorry for the false alarm. I've increased the FHIR server "Max Search Results" option value so now everything works fine.
The parameter: set configData.MaxSearchResults = 10000
And an example of how this could be set up.