[ https://issues.apache.org/jira/browse/TINKERPOP-3144?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17937118#comment-17937118 ]
ASF GitHub Bot commented on TINKERPOP-3144: ------------------------------------------- codecov-commenter commented on PR #3075: URL: https://github.com/apache/tinkerpop/pull/3075#issuecomment-2740513149 ## [Codecov](https://app.codecov.io/gh/apache/tinkerpop/pull/3075?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) Report Attention: Patch coverage is `50.00000%` with `1 line` in your changes missing coverage. Please review. > Project coverage is 76.37%. Comparing base [(`9b46b67`)](https://app.codecov.io/gh/apache/tinkerpop/commit/9b46b6777d2fa250e41daacf2fa4554605aff53a?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) to head [(`60c9d5b`)](https://app.codecov.io/gh/apache/tinkerpop/commit/60c9d5bb28c29ce3fd01ae627b69be371df78b09?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). > Report is 325 commits behind head on 3.7-dev. | [Files with missing lines](https://app.codecov.io/gh/apache/tinkerpop/pull/3075?dropdown=coverage&src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Patch % | Lines | |---|---|---| | [.../gremlin/server/op/session/SessionOpProcessor.java](https://app.codecov.io/gh/apache/tinkerpop/pull/3075?src=pr&el=tree&filepath=gremlin-server%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Ftinkerpop%2Fgremlin%2Fserver%2Fop%2Fsession%2FSessionOpProcessor.java&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-Z3JlbWxpbi1zZXJ2ZXIvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3RpbmtlcnBvcC9ncmVtbGluL3NlcnZlci9vcC9zZXNzaW9uL1Nlc3Npb25PcFByb2Nlc3Nvci5qYXZh) | 0.00% | [1 Missing :warning: ](https://app.codecov.io/gh/apache/tinkerpop/pull/3075?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | <details><summary>Additional details and impacted files</summary> ```diff @@ Coverage Diff @@ ## 3.7-dev #3075 +/- ## ============================================= + Coverage 76.14% 76.37% +0.23% - Complexity 13152 13237 +85 ============================================= Files 1084 1061 -23 Lines 65160 61569 -3591 Branches 7285 7346 +61 ============================================= - Hits 49616 47024 -2592 + Misses 12839 12030 -809 + Partials 2705 2515 -190 ``` </details> [:umbrella: View full report in Codecov by Sentry](https://app.codecov.io/gh/apache/tinkerpop/pull/3075?dropdown=coverage&src=pr&el=continue&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). :loudspeaker: Have feedback on the report? [Share it here](https://about.codecov.io/codecov-pr-comment-feedback/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). <details><summary>🚀 New features to boost your workflow: </summary> - ❄ [Test Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, report on failures, and find test suite problems. - 📦 [JS Bundle Analysis](https://docs.codecov.com/docs/javascript-bundle-analysis): Save yourself from yourself by tracking and limiting bundle sizes in JS merges. </details> > Traversal not closed after interruption > --------------------------------------- > > Key: TINKERPOP-3144 > URL: https://issues.apache.org/jira/browse/TINKERPOP-3144 > Project: TinkerPop > Issue Type: Bug > Affects Versions: 3.7.3 > Reporter: Petr Langr > Priority: Major > > I noticed that when traversal takes a long time and eventually its execution > gets interrupted, the traversal does not get closed. > I work on custom graph provider, which needs to release its resources when > traversal is finished. However, when the execution takes too much time, the > executor thread gets interrupted and traversal hangs open. > Here is example log: > {code:java} > 2025-03-18 13:18:35.533 WARN > org.apache.tinkerpop.gremlin.server.op.traversal.TraversalOpProcessor - A > timeout occurred during traversal evaluation of [RequestMessage{, > requestId=c4de3b57-c90c-4ff7-ab4d-194684f8eff8, op='bytecode', > processor='traversal', args={gremlin=[[withStrategies(OptionsStrategy), > withStrategies(PartitionStrategy)], [V(), or([[], [has(label, > eq(EntityGroup)), has(createdTime, lt(1742303760000))]], [[], > [has(createdTime, lt(1742303760000)), has(lastSeenTime, > gte(1742300160000))]]), has(_deleted, neq(true)), has(id, > within([e-10255437896472327583])), union([[], [outE(), where([[], [inV(), > has(label, eq(KubernetesPod)), has(createdTime, lt(1742303760000)), > has(lastSeenTime, gte(1742300160000)), has(_deleted, neq(true)), has(label, > eq(KubernetesPod)), has(label, within([KubernetesPod]))]])]], [[], > [inE(MemberOf), where([[], [outV(), has(label, eq(KubernetesPod)), > has(createdTime, lt(1742303760000)), has(lastSeenTime, gte(1742300160000)), > has(_deleted, neq(true)), has(label, eq(KubernetesPod)), has(label, > within([KubernetesPod]))]])]]), project(e, out, in), by([[], [valueMap(), > with(~tinkerpop.valueMap.tokens, 2)]]), by([[], [outV(), valueMap(), > with(~tinkerpop.valueMap.tokens)]]), by([[], [inV(), valueMap(), > with(~tinkerpop.valueMap.tokens)]])]], aliases={g=g}}}] - consider increasing > the limit given to evaluationTimeout {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)