[Digikam-devel] [digikam] [Bug 365354] Application crash on scanning for faces in large picture set.

via KDE Bugzilla bugzilla_noreply at kde.org
Thu Jul 14 11:47:46 BST 2016


https://bugs.kde.org/show_bug.cgi?id=365354

--- Comment #5 from swatilodha27 at gmail.com ---
The default max_allowed_packet variable is 16MB. For larger packets, it issues
an ER_NET_PACKET_TOO_LARGE error and closes the connection. You may also get a
"Lost connection to MySQL server during query" error.
( Select @@global.max_allowed_packet; will provide current value)

You could start MySQL server with "mysql --max_allowed_packet=128M. OR in
my.ini or ~/.my.cnf, change the following option:
[mysqld]
max_allowed_packet=128M

It is safe to increase the value of this variable because the extra memory is
allocated only when needed.

-- 
You are receiving this mail because:
You are the assignee for the bug.



More information about the Digikam-devel mailing list