I am now moving job queue from local beanstalkd server to Amazon SQS. But the problem is that SQS can only have short delay (15 min.) for a job.
In my application, there are thousands of deals, and I use beanstalkd to expire the deals (i.e. call api to update deal status to completed/failed) when it meets the expire time.
Is there any service/hacky way I can used to handle this use case?
Thanks