KX Community

Find answers, ask questions, and connect with our KX Community around the world.
KX Community Guidelines

Home Forums kdb+ Can I apply a timeout for a spectific query or client request? Re: Can I apply a timeout for a spectific query or client request?

  • pmallon

    Member
    March 17, 2022 at 12:00 am

    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