Joe McDonald
09/01/2021, 3:30 PMquery taskRunParent($flowRunId: uuid, $taskId: uuid) {
task_run(
where: {_and: [{flow_run_id: {_eq: $flowRunId}}, {task_id: {_eq: $taskId}}]}
) {
id
__typename
}
}
variables: {
"taskId": null,
"flowRunId": null
}
nicholas
Joe McDonald
09/01/2021, 3:41 PMnicholas
Joe McDonald
09/17/2021, 4:58 PMNODE_OPTIONS="--max-old-space-size=4096"
worked to stop the crashing before the release was available, even though the query still timed out it didn’t come OOM killer to step in.nicholas