Looking at "SHOW PROCESSLIST" and it looks like your queries are running individually instead of in batches like you sent?
This happens because MySQL runs each update statement individually, but you should still be able to see the batches when the queries are in the "init" state.
Use this query to see the batched queries: SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST where state="init";
None of the plug-ins for doing custom nginx configurations were working for me.
So, I changed the following two files: /var/lib/dokku/plugins/nginx-vhosts/templates/nginx.ssl.conf /var/lib/dokku/plugins/nginx-vhosts/templates/nginx.conf
I added the following under "location / {": proxy_connect_timeout 300s; proxy_read_timeout 300s;
Create an apt-packages file in the root directory of your repository with the following lines: python-dev libldap2-dev libsasl2-dev libssl-dev
Now, commit your new apt-packages file and python-ldap should install successfully.
I also had trouble installing pymssql, and got an error saying "_mssql.c:314:22: fatal error: sqlfront.h: No such file or directory". Similar fix, just add "freetds-dev" to your apt-packages file.