Last active
August 24, 2017 23:24
-
-
Save alexcusack/8bb684beb46af55ea45c2a44db48cb10 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A not-exactly-how-we-did-this-but-something-similar-implementation | |
* Enqueues a payment-processor execution for 0 - (buckets - 1) | |
* @param {Int} buckets: the number of Payment Processor executions to enqueue | |
* @param {Object} queue: Amazon SQS queue | |
* @returns {Promise(<Array>)} Array of queue receipts | |
*/ | |
import {range} from 'lodash'; | |
import * as P from 'bluebird'; | |
function enqueueParallelExecutions(buckets, queueService) { | |
const enqueuedRequests = range(buckets).map((bucket) => { | |
return queueService.enqueue('payment-processor', {bucket, buckets}); | |
}); | |
return P.all(enqueuedRequests); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment