Closed bilua-xiaolei closed 10 months ago
I got this error from my application and checking gearmand logs (on debug mode), I found this error:
mysql_stmt_execute failed: Unknown prepared statement handler (1)
Looks like if you use the mysql driver, is needed the uuid package (libuuid in alpine)
As I'm not sure if this repository is maintained any more, if you get this error, just create your own Dockerfile and add these thre lines:
USER root RUN apk add libuuid USER gearman
source: https://ma.ttias.be/gearman-queue-error-mysql_stmt_execute-failed-unknown-prepared-statement-handler-1/
Thank you! If you are interested, please submit a pull request.
I got this error from my application and checking gearmand logs (on debug mode), I found this error:
Looks like if you use the mysql driver, is needed the uuid package (libuuid in alpine)
As I'm not sure if this repository is maintained any more, if you get this error, just create your own Dockerfile and add these thre lines:
source: https://ma.ttias.be/gearman-queue-error-mysql_stmt_execute-failed-unknown-prepared-statement-handler-1/