You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the runtime issue we encountered the hard way, through crashes of tile38: golang/go#37688
The issue manifests with tile38 if the query contains TIMEOUT and WHEREVAL and the timeout gets triggered (query does not finish within the allotted timeout). After such queries, the next GC cycle crashes the server, exactly like the issue above.
Rebuilding with go1.14.3 fixed the issue for us. We can reliably crash 1.14 runtime and not crash with 1.14.3 runtime on the same code.
The text was updated successfully, but these errors were encountered:
This is the runtime issue we encountered the hard way, through crashes of tile38:
golang/go#37688
The issue manifests with tile38 if the query contains
TIMEOUT
andWHEREVAL
and the timeout gets triggered (query does not finish within the allotted timeout). After such queries, the next GC cycle crashes the server, exactly like the issue above.Rebuilding with go1.14.3 fixed the issue for us. We can reliably crash 1.14 runtime and not crash with 1.14.3 runtime on the same code.
The text was updated successfully, but these errors were encountered: