Sidebar

Handling large DICOM files in MySQL or MariaDB

0 votes
796 views
asked Aug 11, 2015 by mike-r-7535 (13,830 points)

I am processing a large message that it cannot write to the database.  Within QIE, I see the following message:

Msg 37 [path=1-2-4] - could not insert: [com.qvera.qie.web.persistable.message.MessageQueue]

In the qie.log, I see the following:

Packet for query is too large (71239892 > 67108864). You can change this value on the server by setting the max_allowed_packet' variable. 

 

1 Answer

0 votes

With MySQL or MariaDB, I had to increase my max_allowed_packet length:

max_allowed_packet=128M

answered Aug 11, 2015 by mike-r-7535 (13,830 points)
...