Skip to content

parallel and corrupted data? #328

@ronag

Description

@ronag

I've noticed a strange occurrence. I'm reading raw compressed data from multiple files and then concatenating them:

   .map(url => _(request.get(url))
   .parallel(8)
   .through(decoder())

However, this results sometimes in corrupted data.

While the following works just fine:

   .map(url => _(request.get(url))
   .parallel(1)
   .through(decoder())

I don't have any reproducible example yet. The problem is somewhat intermittent.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions