Neo4j graphaware php $client->run($query) is long-running -
i using neo4j graphaware php client , having bad issues long-running queries.
$client->run($query, $params);   is long running , causing 504 gateway time-out.
i opened question concerning issue , thought identified cause, namely parameters named "0". lucky find out cause then.
i having same issue again , not being lucky identifying cause. not able reliably reproduce it. thought impose timeout on queries in neo4j config, graphaware client gets interrupted , can handle error / log data. doesn't work, seems never invoke query in neo4j.
it seems need timeout:
$client = clientbuilder::create()     ->setdefaulttimeout(3)     ->build();   which, unfortunately deprecated/doesn't work.
tl;dr: blocks graphaware client , see no way of finding out is. ideas?
 
 
Comments
Post a Comment