I’m using the osimis:22.7.0 plugin, I store my scans in the s3 bucket and initially when I had launched the orthanc server, I could open any scan immediately and there wouldn’t be any delay but now a lot scans have come into the server about 672 studies, scans take significantly longer time to load up. Any reason why this might be happening ?
This is my orthanc-setup
to Orthanc Users
version: “3.3”
services:
orthanc:
image: osimis/orthanc:22.5.2
ports: [ 8042:8042 ]
environment:
- ORTHANC__AWS_S3_STORAGE__BUCKET_NAME=
- ORTHANC__AWS_S3_STORAGE__REGION=ap-south-1
- ORTHANC__AWS_S3_STORAGE__ACCESS_KEY=
- DICOM_WEB_PLUGIN_ENABLED=true
- ORTHANC__EXTRA_MAIN_DICOM_TAGS__INSTANCE=[“Rows”, “Columns”, “ImageType”, “SOPClassUID”, “ContentDate”, “ContentTime”, “FrameOfReferenceUID”, “PixelSpacing”, “SpecificCharacterSet”, “BitsAllocated”, “BitsStored”]
- ORTHANC__EXTRA_MAIN_DICOM_TAGS__SERIES=[“TimezoneOffsetFromUTC”, “PerformedProcedureStepStartDate”, “PerformedProcedureStepStartTime”, “00400275”]
- ORTHANC__EXTRA_MAIN_DICOM_TAGS__STUDY=[“TimezoneOffsetFromUTC”]
- ORTHANC__EXTRA_MAIN_DICOM_TAGS__PATIENT=[]
- ORTHANC__DICOM_SERVER_ENABLED=false
- ORTHANC__AUTHENTICATION_ENABLED=true
volumes:
- ./config/orthanc.json:/etc/orthanc/orthanc.json:ro
- ./volumes/orthanc-db/:/var/lib/orthanc/db/
secrets: - ORTHANC__AWS_S3_STORAGE__SECRET_KEY
- ORTHANC__DICOM_WEB__SERVERS
- ORTHANC__REGISTERED_USERS
secrets:
ORTHANC__AWS_S3_STORAGE__SECRET_KEY:
file: config/aws-s3-secret-key.txt
ORTHANC__DICOM_WEB__SERVERS:
file: config/dicom-web.txt
ORTHANC__REGISTERED_USERS:
file: config/users.txt