I’m running Orthanc in a Docker container, alongside a MySSQL container that Orthanc is configured to use. I have NOT used the MySQL storage option, so the only information that’s stored in the database is the study metadata etc, not the binaries themselves (they reside on disk, within a volume).
Observing my MySQL container, I see a large number of the following: [Note] Aborted connection xxxxxx to db (orthancdb), user (orthancuser), host (localhost) : (Got a packet bigger than 'max_allowed_packet' bytes)
Now I know MySQL has a max_allowed_packet, but I find it hard to believe that all of a sudden Orthanc is sending such large packet sizes (the value is set to the default of 4194304).
I would expect this if I were storing the binaries into the database, but I’m not …