Re: [PR] Correct per-entry HashMap overhead in WindmillStateCache [beam]

2024-04-10 Thread via GitHub
scwhittle merged PR #30672: URL: https://github.com/apache/beam/pull/30672 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail:

Re: [PR] Correct per-entry HashMap overhead in WindmillStateCache [beam]

2024-04-08 Thread via GitHub
dmitryor commented on PR #30672: URL: https://github.com/apache/beam/pull/30672#issuecomment-2043539547 I rebased to recent `main` and tests are passing now. I suspect the previous failure was a flake. -- This is an automated message from the Apache Git Service. To respond to the

Re: [PR] Correct per-entry HashMap overhead in WindmillStateCache [beam]

2024-04-04 Thread via GitHub
scwhittle commented on PR #30672: URL: https://github.com/apache/beam/pull/30672#issuecomment-2036657711 Will merge if retriggered tests pass -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

Re: [PR] Correct per-entry HashMap overhead in WindmillStateCache [beam]

2024-04-04 Thread via GitHub
scwhittle closed pull request #30672: Correct per-entry HashMap overhead in WindmillStateCache URL: https://github.com/apache/beam/pull/30672 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

Re: [PR] Correct per-entry HashMap overhead in WindmillStateCache [beam]

2024-03-19 Thread via GitHub
scwhittle commented on PR #30672: URL: https://github.com/apache/beam/pull/30672#issuecomment-2006346607 > Task :runners:google-cloud-dataflow-java:worker:test org.apache.beam.runners.dataflow.worker.windmill.state.WindmillStateCacheTest > testBasic FAILED

Re: [PR] Correct per-entry HashMap overhead in WindmillStateCache [beam]

2024-03-19 Thread via GitHub
github-actions[bot] commented on PR #30672: URL: https://github.com/apache/beam/pull/30672#issuecomment-2006009059 Stopping reviewer notifications for this pull request: review requested by someone other than the bot, ceding control -- This is an automated message from the Apache Git

Re: [PR] Correct per-entry HashMap overhead in WindmillStateCache [beam]

2024-03-19 Thread via GitHub
dmitryor commented on PR #30672: URL: https://github.com/apache/beam/pull/30672#issuecomment-2006005444 R: @scwhittle -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To

[PR] Correct per-entry HashMap overhead in WindmillStateCache [beam]

2024-03-19 Thread via GitHub
dmitryor opened a new pull request, #30672: URL: https://github.com/apache/beam/pull/30672 Existing code incorrectly assumes a per-entry HashMap overhead is 16 bytes. In reality it's 32 bytes [per this article](https://appsintheopen.com/posts/52-the-memory-overhead-of-java-ojects),