https://learninghub.kx.com/forums/topic/can-i-apply-a-timeout-for-a-spectific-query-or-client-request
currently, there is a phenomenon in which there is no response between processes due to some request, but it is difficult to determine why. I know that the default timeout for the process can be set to T commands . I want to keep the default timeout to 60 seconds and limit it to 5 seconds only for specific query requests. Is there a way?
Hi,
Maybe something like this on the process servicing the queries:
funcTimeouts:`func1``func2`func3!60 5 10;
.z.pg:{ system T , string funcTimeouts x 0; value x }
Not complete above as need to consider funcs not in the dictionary and possibly resetting T after. Also, above assumes you call a function over the handle in list format.
Adding logging to .z.pg might help you identify the issue too.
Let me know if this helps.
Patrick