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
I am trying to export data using the $export operation via the following endpoint:
{Base-URL}/fhir/Patient/$export
The request successfully returns a Job ID in the response header "Content-Location", which indicates the job has started. However, when making a GET request to the URL provided in "Content-Location", the request fails with the following 500
Internal Server Error:
{
"diagnostics": "Too many errors: 4. Last error msg was HAPI-1319: No interceptor provided a value for pointcuts: [STORAGE_PARTITION_IDENTIFY_ANY, STORAGE_PARTITION_IDENTIFY_READ]"
}
To Reproduce
Steps to reproduce the behavior:
Initiate the export process by sending a request to: GET {Base-URL}/fhir/Patient/$export
This request returns a Job ID in the "Content-Location" response header.
Retrieve the export status by making a GET request to the returned URL: GET {Base-URL}/fhir/$export-poll-status?_jobId=
Example:
GET {Base-URL}/fhir/$export-poll-status?_jobId=1e6ed0df-3ed4-402d-a067-ebe73173c7b6
Instead of returning a list of downloadable file links, the request fails with a 500 Internal Server Error and logs the HAPI-1319 error.
Expected behavior
The polling request ($export-poll-status) should return a response containing downloadable file links instead of an error.
Screenshots
Environment (please complete the following information):
HAPI FHIR Version : 7.6.0
OS: [e.g. Windows]
Additional context
It appears that partitioning is enabled, but the system does not have an appropriate partitioning interceptor registered to handle the required pointcuts (STORAGE_PARTITION_IDENTIFY_ANY, STORAGE_PARTITION_IDENTIFY_READ).
Disabling partitioning also did not resolve the issue.
Please confirm if an additional configuration step is needed to ensure the bulk export polling process works correctly.
The text was updated successfully, but these errors were encountered:
NOTE: Before filing a ticket, please see the following URL:
https://github.com/hapifhir/hapi-fhir/wiki/Getting-Help
Describe the bug
I am trying to export data using the $export operation via the following endpoint:
{Base-URL}/fhir/Patient/$export
The request successfully returns a Job ID in the response header "Content-Location", which indicates the job has started. However, when making a GET request to the URL provided in "Content-Location", the request fails with the following 500
Internal Server Error:
{
"diagnostics": "Too many errors: 4. Last error msg was HAPI-1319: No interceptor provided a value for pointcuts: [STORAGE_PARTITION_IDENTIFY_ANY, STORAGE_PARTITION_IDENTIFY_READ]"
}
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The polling request ($export-poll-status) should return a response containing downloadable file links instead of an error.
Screenshots
Environment (please complete the following information):
Additional context
The text was updated successfully, but these errors were encountered: