-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaws_sqs.rb
47 lines (42 loc) · 1.65 KB
/
aws_sqs.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
require 'aws-sdk-sqs'
module AwsSqs
def self.included(klass)
klass.extend(ClassMethods)
end
module ClassMethods
def each
sqs = Aws::SQS::Client.new(region: self::QUEUE_REGION)
receipt_handles = []
start = Process.clock_gettime(Process::CLOCK_MONOTONIC)
loop do
result = sqs.receive_message({
queue_url: self::QUEUE_URL,
max_number_of_messages: 10,
visibility_timeout: self::MAX_RUNTIME,
wait_time_seconds: 0 # Do not wait to check for the message.
})
result.messages.each do |message|
body = message.body
yield new(body)
receipt_handles << message.receipt_handle
end
# If it runs for more than 10 mins already processed messages can become visible again.
break if (Process.clock_gettime(Process::CLOCK_MONOTONIC) - start) >= self::MAX_RUNTIME
break if result.messages.length <10
end
i=0
receipt_handles.each_slice(10) do |batch|
sqs.delete_message_batch({
queue_url: self::QUEUE_URL,
entries: batch.map do |receipt_handle|
{
id: (i += 1).to_s,
receipt_handle:
}
end
})
end
logger.info "deleted #{receipt_handles.length} from SQS"
end
end
end