Ben Yitzhaki
Ben Yitzhaki

Reputation: 1416

Multiple aws beanstalk worker tiers with the same code

I have multiple php worker tiers that are listening to different sqs queues, however, the code that is deployed to those workers is always identical. is there a way to make multiple workers use the same ec2 instance?

thanks

Upvotes: 2

Views: 673

Answers (1)

Josh Davis
Josh Davis

Reputation: 6831

As far as using the same EC2 instances, this isn't possible.

I'd be interested in seeing your use case for having the same code but with different queues. Since this is the case, could you merge the queues into a single queue?

Upvotes: 1

Related Questions