Your question took too long v0.42.4

Hi, I’m receiving error Your question took too long when executing a long query in querys with execution time over 1 minute 30 seconds.

Part of my nginx conf on /etc/nginx/sites-enabled:

proxy_connect_timeout 3600;
proxy_read_timeout 3600;
proxy_send_timeout 3600;
proxy_buffering off;

I also checked the Metabase log for any errors on Admin > Troubleshooting > Logs and I notice this line:

:error "ERROR: canceling statement due to user request"

I searcherd for many threads but I couldn't solve the problem

Can someone help me?

Hi @rlcdo
Then there must be another reverse-proxy/load-balancer/WAF/CDN/etc cutting off the connection.
Have a look at this thread: How to increase query timeout - Your question took too long
Check your Nginx logs. Check the request headers in your browser developer Network-tab.

Yes, you're right. I didn't remember there was another reverse proxy, but yes, there is another reverse proxy in front of it. Problem solved.

Thank you