Will async.parallel still call the final callback after all tasks are done if any of them gets error?
Asked Answered
E

2

10
var async = require('async');
async.parallel([
  function(cb) {
    cb(true);
  },
  function(cb) {
    cb(null, true);
  }], 
  function(error, results) {
  }
);

In the code, if the first task runs cb(true) before the second tasks, will the second tasks still run? and If so, after it is done, will the main callback still be called?

Evidently answered 3/2, 2014 at 20:31 Comment(0)
S
11

The async.parallel executes all functions in parallel. If any of the functions pass an error to its callback (callback first parameter is not null), the main callback is immediately called with the value of the error. All functions will be executed though.

With the following code your execution will be as follows 1, 3, 2, 2.1:

var async = require('async');
async.parallel([
  function(cb) {
    console.info('1')
    cb(true);
  },
  function(cb) {
    console.info('2')
    cb(null, true);
  },
  function(cb) {
    console.info('2.1')
    cb(null, true);
  }], 
  function(error, results) {
    console.info('3')
  }
);
Sirrah answered 3/2, 2014 at 20:44 Comment(1)
Is there a way to get result of all tasks even in case of error. i.e list of all errors and result in main callback.Townsley
S
1

yes, second task is called (because tasks are expected to be async and exit immediately). async.parallel callback is called with error from first failed task

Sternutation answered 3/2, 2014 at 20:41 Comment(2)
Suppose there are 3 tasks t1 t2 t3, t1 t2 get errors, and t3 successes. So async.parallel's callback will be called twice for t1 and t2 individually. But after all t1, t2 and t3 are done, it does not call the callback with results. Is this correct?Evidently
no, it'll wait for callbacks from all t1, t2, t3 (no matter success or error) and call resulting callback exactly onceSternutation

© 2022 - 2024 — McMap. All rights reserved.