Skip to content

[PWGDQ] Fix table reservation problem - #17230

Open
JifengDeng wants to merge 2 commits into
AliceO2Group:masterfrom
JifengDeng:fix-reserve-size
Open

[PWGDQ] Fix table reservation problem#17230
JifengDeng wants to merge 2 commits into
AliceO2Group:masterfrom
JifengDeng:fix-reserve-size

Conversation

@JifengDeng

Copy link
Copy Markdown

Fix the reserve size problem in asymmetric pairing of tableReader_withAssoc

In the original code, ditrack table reserves based on the number of tracks rather than on the number of pairs, which may cause the crash of the program.

Adapt the similar strategy as what has been done in same event pairing to fix the problem.

@github-actions

github-actions Bot commented Jul 28, 2026

Copy link
Copy Markdown

O2 linter results: ❌ 183 errors, ⚠️ 84 warnings, 🔕 9 disabled

JifengDeng added a commit to JifengDeng/O2Physics that referenced this pull request Jul 28, 2026
Please consider the following formatting changes to AliceO2Group#17230
mcoquet642
mcoquet642 previously approved these changes Jul 29, 2026
@mcoquet642
mcoquet642 enabled auto-merge (squash) July 29, 2026 01:55
@alibuild

Copy link
Copy Markdown
Collaborator

Error while checking build/O2Physics/staging for 92fc771 at 2026-07-29 04:09:

## sw/BUILD/O2Physics-latest/log
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
ninja: build stopped: subcommand failed.

Full log here.

@alibuild

alibuild commented Jul 29, 2026

Copy link
Copy Markdown
Collaborator

Error while checking build/O2Physics/code-check for 92fc771 at 2026-07-29 10:56:

## sw/BUILD/O2Physics-code-check-latest/log
--
========== List of issues found ==========
++ echo 'Found 13 errors and 0 warnings.'
Found 13 errors and 0 warnings.
++ [[ 13 -gt 0 ]]
++ cat /sw/BUILD/46b3c7248d3091e95893a67911c25839ff6fc194/O2Physics-code-check/errors.txt
PWGDQ/Tasks/tableReader_withAssoc.cxx:711:30: error: do not use static_cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-static-cast-downcast,-warnings-as-errors]
PWGDQ/Tasks/tableReader_withAssoc.cxx:962:29: error: do not use static_cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-static-cast-downcast,-warnings-as-errors]
PWGDQ/Tasks/tableReader_withAssoc.cxx:1894:5: error: use auto when initializing with a cast to avoid duplicating the type name [modernize-use-auto,-warnings-as-errors]
PWGDQ/Tasks/tableReader_withAssoc.cxx:3215:29: error: do not use static_cast to downcast from a base to a derived class; use dynamic_cast instead [cppcoreguidelines-pro-type-static-cast-downcast,-warnings-as-errors]
PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: parameter 'assocs' is unused [misc-unused-parameters,-warnings-as-errors]
PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [clang-diagnostic-unused-parameter,-warnings-as-errors]
PWGDQ/Tasks/tableReader_withAssoc.cxx:3521:9: error: use auto when initializing with a cast to avoid duplicating the type name [modernize-use-auto,-warnings-as-errors]
PWGDQ/Tasks/tableReader_withAssoc.cxx:3522:9: error: use auto when initializing with a cast to avoid duplicating the type name [modernize-use-auto,-warnings-as-errors]
PWGDQ/Tasks/tableReader_withAssoc.cxx:3721:5: error: use auto when initializing with a cast to avoid duplicating the type name [modernize-use-auto,-warnings-as-errors]
PWGDQ/Tasks/tableReader_withAssoc.cxx:3722:5: error: use auto when initializing with a cast to avoid duplicating the type name [modernize-use-auto,-warnings-as-errors]
PWGDQ/Tasks/tableReader_withAssoc.cxx:4203:5: error: use auto when initializing with a template cast to avoid duplicating the type name [modernize-use-auto,-warnings-as-errors]
PWGDQ/Tasks/tableReader_withAssoc.cxx:4572:19: error: implicit conversion 'uint32_t' (aka 'unsigned int') -> 'bool' [readability-implicit-bool-conversion,-warnings-as-errors]
PWGDQ/Tasks/tableReader_withAssoc.cxx:4620:19: error: implicit conversion 'uint32_t' (aka 'unsigned int') -> 'bool' [readability-implicit-bool-conversion,-warnings-as-errors]
++ [[ 0 -gt 0 ]]
++ [[ 13 -gt 0 ]]
++ exit 1
--

Full log here.

@alibuild

alibuild commented Jul 29, 2026

Copy link
Copy Markdown
Collaborator

Error while checking build/O2Physics/o2 for 92fc771 at 2026-07-29 11:04:

## sw/BUILD/O2Physics-latest/log
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
/sw/SOURCES/O2Physics/slc9_x86-64-slc9_x86-64/0/PWGDQ/Tasks/tableReader_withAssoc.cxx:3461:106: error: unused parameter 'assocs' [-Werror=unused-parameter]
ninja: build stopped: subcommand failed.

Full log here.

@vkucera
vkucera disabled auto-merge July 29, 2026 12:44
@vkucera
vkucera marked this pull request as draft July 29, 2026 12:44
Jifeng Deng and others added 2 commits July 30, 2026 17:12
…hAssoc

In the original code, ditrack table reserves based on the number of tracks rather than on the number of pairs, which may cause the crash of the program.

Adapt the similar strategy as what has been done in same event pairing to fix the problem.
@JifengDeng
JifengDeng marked this pull request as ready for review July 30, 2026 09:26
@JifengDeng
JifengDeng requested a review from mcoquet642 August 4, 2026 03:01
@alibuild

alibuild commented Aug 6, 2026

Copy link
Copy Markdown
Collaborator

Error while checking build/O2Physics/code-check for 1c7a30f at 2026-08-15 19:40:

## sw/BUILD/O2Physics-latest/log
2026-08-15T15:34:12.607+0200 [26816:140086873767552] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Write()", last gRPC error was [14: Socket closed]
2026-08-15T15:34:32.611+0200 [26816:140086873767552] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ActionCache.UpdateActionResult()", last gRPC error was [14: failed to connect to all addresses; last error: UNKNOWN: ipv4:127.0.0.1:8980: connection attempt timed out before receiving SETTINGS frame]
2026-08-15T15:37:33.205+0200 [28431:140430527942272] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-15T15:37:33.208+0200 [28431:140430527942272] [executioncontext.cpp:739] [ERROR] Failed to download output blob 2ce2ca6d2709576d879fd1d56d0da8563564a49c5c3a590ba1d9fd84c2244cb4: 14: Socket closed
2026-08-15T15:37:24.374+0200 [27103:139968279813760] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Write()", last gRPC error was [14: recvmsg:Connection reset by peer]
2026-08-15T15:37:44.378+0200 [27103:139968279813760] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ActionCache.UpdateActionResult()", last gRPC error was [14: failed to connect to all addresses; last error: UNKNOWN: ipv4:127.0.0.1:8980: connection attempt timed out before receiving SETTINGS frame]
2026-08-15T15:35:01.671+0200 [28626:140480882855552] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ActionCache.GetActionResult()", last gRPC error was [14: failed to connect to all addresses; last error: UNKNOWN: ipv4:127.0.0.1:8980: connection attempt timed out before receiving SETTINGS frame]
2026-08-15T15:35:01.672+0200 [28626:140480882855552] [executioncontext.cpp:544] [ERROR] Error while querying action cache at "http://localhost:8980": 14: failed to connect to all addresses; last error: UNKNOWN: ipv4:127.0.0.1:8980: connection attempt timed out before receiving SETTINGS frame
2026-08-15T15:43:32.963+0200 [28626:140480882855552] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "FindMissingBlobs()", last gRPC error was [14: failed to connect to all addresses; last error: UNKNOWN: ipv4:127.0.0.1:8980: connection attempt timed out before receiving SETTINGS frame]
2026-08-15T15:38:30.089+0200 [28591:140182556802688] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ActionCache.GetActionResult()", last gRPC error was [14: Socket closed]
2026-08-15T15:38:30.090+0200 [28591:140182556802688] [executioncontext.cpp:544] [ERROR] Error while querying action cache at "http://localhost:8980": 14: Socket closed
2026-08-15T15:45:50.541+0200 [28591:140182556802688] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "FindMissingBlobs()", last gRPC error was [14: failed to connect to all addresses; last error: UNKNOWN: ipv4:127.0.0.1:8980: connection attempt timed out before receiving SETTINGS frame]

Full log here.

@alibuild

Copy link
Copy Markdown
Collaborator

Error while checking build/O2Physics/o2 for 1c7a30f at 2026-08-14 08:50:

## sw/BUILD/O2Physics-latest/log
2026-08-14T08:50:50.696+0200 [23185:140468954802752] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "BatchReadBlobs()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.753+0200 [23185:140468954802752] [executioncontext.cpp:739] [ERROR] Failed to download output blob 219bf817590ed13c11fe3a08c0b69cd466026f415f187dc6823addfb8ac13dbb: 14: Socket closed
2026-08-14T08:50:50.696+0200 [23138:139886072334912] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.753+0200 [23138:139886072334912] [executioncontext.cpp:739] [ERROR] Failed to download output blob d4263fce20bf2e2f74e2e90f3fc95a135ced535a73b924bdfbae7adbb353286a: 14: Socket closed
2026-08-14T08:50:50.696+0200 [23007:140199827364416] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.755+0200 [23007:140199827364416] [executioncontext.cpp:739] [ERROR] Failed to download output blob 635c6e887e05744942c4691c90b2caa7f7b1c70eaf5b49445b39d992ceb825b6: 14: Socket closed
2026-08-14T08:50:50.696+0200 [22983:140090383915584] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.756+0200 [22983:140090383915584] [executioncontext.cpp:739] [ERROR] Failed to download output blob 52931fcfee193ddb6b84b3aba7dd54d18843afed611d71503c19c131e85e3f41: 14: Socket closed
2026-08-14T08:50:50.696+0200 [22849:140563388107328] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.756+0200 [22849:140563388107328] [executioncontext.cpp:739] [ERROR] Failed to download output blob c31bedbb65520db85a0629fbf03ccf450c8b8b986eca5bd28b51916fd95d4811: 14: Socket closed
2026-08-14T08:50:50.696+0200 [22766:140178855098944] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.756+0200 [22766:140178855098944] [executioncontext.cpp:739] [ERROR] Failed to download output blob 398cfe5e46fcdee42b0048a3ecbc02537fb956487058e164b65f672003ccf809: 14: Socket closed
2026-08-14T08:50:50.697+0200 [22892:139894576458304] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.756+0200 [22892:139894576458304] [executioncontext.cpp:739] [ERROR] Failed to download output blob d1d0daf6f5b6157bebcf64c97e77374fa88f37504c1d9613b4767ccac4fba66b: 14: Socket closed
2026-08-14T08:50:50.697+0200 [23140:140675374000704] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.756+0200 [23140:140675374000704] [executioncontext.cpp:739] [ERROR] Failed to download output blob fb3f3dc04ad6a74bbcd2d2a4a1aa0827208ec67355870b768056747b2ba5d258: 14: Socket closed
2026-08-14T08:50:50.696+0200 [23207:140046358268480] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: recvmsg:Connection reset by peer]
2026-08-14T08:50:50.756+0200 [23207:140046358268480] [executioncontext.cpp:739] [ERROR] Failed to download output blob 2469dcf6b21f20dd103791e3ad053c2d134dffaae72559ecb34d7230df9c7013: 14: recvmsg:Connection reset by peer
2026-08-14T08:50:50.697+0200 [23041:140019147192896] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: recvmsg:Connection reset by peer]
2026-08-14T08:50:50.756+0200 [23041:140019147192896] [executioncontext.cpp:739] [ERROR] Failed to download output blob f784e88fc362c8fe2d27b26074b18dacb1d5643bfd02661d9fcf282fa3b05323: 14: recvmsg:Connection reset by peer
2026-08-14T08:50:50.696+0200 [22961:140547190041152] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.757+0200 [22961:140547190041152] [executioncontext.cpp:739] [ERROR] Failed to download output blob 0a2cae3b1aaca415a9f553bc2455b6ec0e64a5d4b9c7be6df4dfc4f98466daa6: 14: Socket closed
2026-08-14T08:50:50.696+0200 [23117:139775271836224] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: recvmsg:Connection reset by peer]
2026-08-14T08:50:50.756+0200 [23117:139775271836224] [executioncontext.cpp:739] [ERROR] Failed to download output blob 5c5dc69d76506b7b61847f76c6c7c4762e2ecee02ebcfba626078515dce0c6d0: 14: recvmsg:Connection reset by peer
2026-08-14T08:50:50.697+0200 [22626:140440681916992] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.763+0200 [22626:140440681916992] [executioncontext.cpp:739] [ERROR] Failed to download output blob 047e3b650426fdd667f268dfb6ae9596917b1423c354b39d214246848ba313ea: 14: Socket closed
2026-08-14T08:50:50.696+0200 [22848:139933178665536] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.759+0200 [22848:139933178665536] [executioncontext.cpp:739] [ERROR] Failed to download output blob ebe2b4a2d1a2cbd865ab849ab818b8857b012de7814f9054b5689a08e43bb08d: 14: Socket closed
2026-08-14T08:50:50.698+0200 [22914:140330549271104] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.758+0200 [22914:140330549271104] [executioncontext.cpp:739] [ERROR] Failed to download output blob cc5b6008029e2cdbe7a8a66cf814785c1e92c1d3179b6f71f0f7cbece664b9a6: 14: Socket closed
2026-08-14T08:50:50.697+0200 [22935:140598559324736] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.761+0200 [22935:140598559324736] [executioncontext.cpp:739] [ERROR] Failed to download output blob 58d5bab16020256ddf6c6da980b10386f9122684221b48a32fa89935695e1815: 14: Socket closed
2026-08-14T08:50:50.696+0200 [22602:139965658036800] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: recvmsg:Connection reset by peer]
2026-08-14T08:50:50.767+0200 [22602:139965658036800] [executioncontext.cpp:739] [ERROR] Failed to download output blob b2a60cf02281df62d19b2c181cc518aab44f0e4eafb56a043c182218ba177619: 14: recvmsg:Connection reset by peer
2026-08-14T08:50:50.697+0200 [22720:139813922548288] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: recvmsg:Connection reset by peer]
2026-08-14T08:50:50.768+0200 [22720:139813922548288] [executioncontext.cpp:739] [ERROR] Failed to download output blob ea04b6c878a97f3e9ee98d796f294ff2ea5715e699491e7e790cda9d98b14607: 14: recvmsg:Connection reset by peer
2026-08-14T08:50:50.697+0200 [22682:140462331562560] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.771+0200 [22682:140462331562560] [executioncontext.cpp:739] [ERROR] Failed to download output blob 30ce2aaed01590eddafbe623559b53b667b942574beb66248c3384c0fbdf41b7: 14: Socket closed
2026-08-14T08:50:50.696+0200 [22360:140127324748352] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.772+0200 [22360:140127324748352] [executioncontext.cpp:739] [ERROR] Failed to download output blob 0f9a12bb899f8c316010abfa0a5adbdd44f17535e6081af00b75588c10dc0fdb: 14: Socket closed
2026-08-14T08:50:50.696+0200 [22569:140409279396416] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.774+0200 [22569:140409279396416] [executioncontext.cpp:739] [ERROR] Failed to download output blob 57bf65b2fd084353848134a726462092735cc8fb48f6cb1f95fad8230b4ea44a: 14: Socket closed
2026-08-14T08:50:50.697+0200 [22513:139985237035584] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.775+0200 [22513:139985237035584] [executioncontext.cpp:739] [ERROR] Failed to download output blob b1b8bf384cbfff59e695838bcc61d6c2d3ef0d00abdd776c6ac1f5e53efb1432: 14: Socket closed
2026-08-14T08:50:50.697+0200 [22657:139683289651776] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: Socket closed]
2026-08-14T08:50:50.781+0200 [22657:139683289651776] [executioncontext.cpp:739] [ERROR] Failed to download output blob cfe91705d34c69bf54a2e9175331a8067331d1f21d9b851ed2f923ea0244f6bb: 14: Socket closed
2026-08-14T08:50:50.696+0200 [22468:139684059671104] [buildboxcommon_grpcretrier.cpp:177] [ERROR] Retry limit (0) exceeded for "ByteStream.Read()", last gRPC error was [14: recvmsg:Connection reset by peer]
2026-08-14T08:50:50.783+0200 [22468:139684059671104] [executioncontext.cpp:739] [ERROR] Failed to download output blob 62d207080babc1fbf81117ec01d567a66bdcaf2895f13e84887929da5e71ada5: 14: recvmsg:Connection reset by peer
[0 more errors; see full log]

Full log here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Development

Successfully merging this pull request may close these issues.

3 participants