How to achieve parallelism that retains order of tasks

This page summarizes the projects mentioned and recommended in the original post on /r/rust

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • zerostash

    Zero-metadata file storage

  • This is precisely the issue I had with file system backups: how do I maintain saturation when I have smaller and larger files? My solution was using Tokio and spawning a task for every chunk of a file and then collect the results in order. You may notice in the same file that I also process multiple files at the same time, all on the same thread pool basically waiting and spawning tasks in lockstep.

  • Av1an

    Cross-platform command-line AV1 / VP9 / HEVC / H264 encoding framework with per scene quality encoding

  • The order of encoding the video matters, but if you concatenate all the chunks at the end in the correct order, then you can do it in any order you want. You do have to concatenate the chunks at the end, but the speed of this process would actually not be affected by the order you encode the chunks, because the exact same concatenation code would run, and the same files exist at the end. Basically, I'm trying to port av1an to Rust and this is something that the original implementation does, by using concurrent.futures.ThreadPoolExecutor from the Python standard library.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Guide to Adopting AV1 Encoding

    4 projects | news.ycombinator.com | 3 Nov 2023
  • I have a feeling crunchyroll should be using AV1

    1 project | /r/Crunchyroll | 28 Jun 2023
  • Automatic choose encode settings?

    3 projects | /r/ffmpeg | 29 May 2023
  • Building pc for ffmpeg rendering

    1 project | /r/ffmpeg | 11 May 2023
  • Codecs for the 4K Era: HEVC, AV1, VVC and Beyond

    1 project | /r/hardware | 17 Apr 2023