Skip to content

Instantly share code, notes, and snippets.

@alexcusack
Last active August 24, 2017 23:24
Show Gist options
  • Save alexcusack/8bb684beb46af55ea45c2a44db48cb10 to your computer and use it in GitHub Desktop.
Save alexcusack/8bb684beb46af55ea45c2a44db48cb10 to your computer and use it in GitHub Desktop.
/**
* 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