Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make sure we do not call "get" on unverified Result while fetching in batches #1169

Merged
merged 4 commits into from
Mar 31, 2025

Conversation

marcinczenko
Copy link
Contributor

While fetching blocks in batches we were doing the following:

while not iter.finished:
  let blocks = collect:
    for i in 0 ..< batchSize:
      if not iter.finished:
        let address = BlockAddress.init(cid, iter.next())
        if not (await address in self.networkStore) or fetchLocal:
          self.networkStore.getBlock(address)

  let res = await allFinishedFailed(blocks)
  if res.failure.len > 0:
    trace "Some blocks failed to fetch", len = res.failure.len
    return failure("Some blocks failed to fetch (" & $res.failure.len & " )")

  if not onBatch.isNil and
      batchErr =? (await onBatch(blocks.mapIt(it.read.get))).errorOption:
    return failure(batchErr)

Above in:

let res = await allFinishedFailed(blocks)
if res.failure.len > 0:
  trace "Some blocks failed to fetch", len = res.failure.len
  return failure("Some blocks failed to fetch (" & $res.failure.len & " )")

we are only testing the futures, but not the underlying result. getBlock returns Future[?!Block] which means that even for completed futures the underlying result can still be a failure.

Then in onBatch(blocks.mapIt(it.read.get)) we are calling get on potentially failed Result, which will endup in:

Unhandled defect: Trying to access value with err Result [ResultDefect]

This PR should fix that.

@marcinczenko marcinczenko self-assigned this Mar 25, 2025
@marcinczenko marcinczenko requested review from gmega and dryajov March 25, 2025 19:43
Copy link
Contributor

@dryajov dryajov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, we shouldn't be doing get() anywhere except tests.

@dryajov dryajov enabled auto-merge March 26, 2025 22:45
@marcinczenko marcinczenko force-pushed the bug/fetch-batched-accessing-unverified-result branch from 892f674 to bf3218b Compare March 27, 2025 17:31
@marcinczenko marcinczenko requested a review from munna0908 March 31, 2025 03:53
@dryajov dryajov added this pull request to the merge queue Mar 31, 2025
Merged via the queue into master with commit 5ec3b2b Mar 31, 2025
19 checks passed
@dryajov dryajov deleted the bug/fetch-batched-accessing-unverified-result branch March 31, 2025 06:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants