Written by

UKK Köln
Question Dmitrii Baranov · Nov 2, 2024

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

Comments

Dmitrii Baranov · Nov 2, 2024

I'm sorry for the false alarm. I've increased the FHIR server "Max Search Results" option value so now everything works fine.

0
Evgeny Shvarov  Mar 8 to Dmitrii Baranov

The parameter: set configData.MaxSearchResults = 10000

And an example of how this could be set up.

0