-
Notifications
You must be signed in to change notification settings - Fork 19
/
SqsClient.cs
205 lines (182 loc) · 7.97 KB
/
SqsClient.cs
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
using Amazon.SQS;
using Amazon.SQS.Model;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Models;
using Newtonsoft.Json;
namespace SqsWriter.Sqs
{
public class SqsClient : ISqsClient
{
private readonly AppConfig _appConfig;
private readonly IAmazonSQS _sqsClient;
private readonly ILogger<SqsClient> _logger;
private readonly ConcurrentDictionary<string, string> _queueUrlCache;
public SqsClient(IOptions<AppConfig> awsConfig, IAmazonSQS sqsClient, ILogger<SqsClient> logger)
{
_appConfig = awsConfig.Value;
_sqsClient = sqsClient;
_logger = logger;
_queueUrlCache = new ConcurrentDictionary<string, string>();
}
public string GetQueueName()
{
return _appConfig.AwsQueueName;
}
public async Task CreateQueueAsync()
{
const string arnAttribute = "QueueArn";
try
{
var createQueueRequest = new CreateQueueRequest();
if (_appConfig.AwsQueueIsFifo)
{
createQueueRequest.Attributes.Add("FifoQueue", "true");
}
createQueueRequest.QueueName = _appConfig.AwsQueueName;
var createQueueResponse = await _sqsClient.CreateQueueAsync(createQueueRequest);
createQueueRequest.QueueName = _appConfig.AwsDeadLetterQueueName;
var createDeadLetterQueueResponse = await _sqsClient.CreateQueueAsync(createQueueRequest);
// Get the the ARN of dead letter queue and configure main queue to deliver messages to it
var attributes = await _sqsClient.GetQueueAttributesAsync(new GetQueueAttributesRequest
{
QueueUrl = createDeadLetterQueueResponse.QueueUrl,
AttributeNames = new List<string> { arnAttribute }
});
var deadLetterQueueArn = attributes.Attributes[arnAttribute];
// RedrivePolicy on main queue to deliver messages to dead letter queue if they fail processing after 3 times
var redrivePolicy = new
{
maxReceiveCount = "3",
deadLetterTargetArn = deadLetterQueueArn
};
await _sqsClient.SetQueueAttributesAsync(new SetQueueAttributesRequest
{
QueueUrl = createQueueResponse.QueueUrl,
Attributes = new Dictionary<string, string>
{
{"RedrivePolicy", JsonConvert.SerializeObject(redrivePolicy)},
// Enable Long polling
{"ReceiveMessageWaitTimeSeconds", _appConfig.AwsQueueLongPollTimeSeconds.ToString()}
}
});
}
catch (Exception ex)
{
_logger.LogError(ex, $"Error when creating SQS queue {_appConfig.AwsQueueName} and {_appConfig.AwsDeadLetterQueueName}");
}
}
public async Task<SqsStatus> GetQueueStatusAsync()
{
var queueName = _appConfig.AwsQueueName;
var queueUrl = await GetQueueUrl(queueName);
try
{
var attributes = new List<string> { "ApproximateNumberOfMessages", "ApproximateNumberOfMessagesNotVisible", "LastModifiedTimestamp" };
var response = await _sqsClient.GetQueueAttributesAsync(new GetQueueAttributesRequest(queueUrl, attributes));
return new SqsStatus
{
IsHealthy = response.HttpStatusCode == HttpStatusCode.OK,
Region = _appConfig.AwsRegion,
QueueName = queueName,
LongPollTimeSeconds = _appConfig.AwsQueueLongPollTimeSeconds,
ApproximateNumberOfMessages = response.ApproximateNumberOfMessages,
ApproximateNumberOfMessagesNotVisible = response.ApproximateNumberOfMessagesNotVisible,
LastModifiedTimestamp = response.LastModifiedTimestamp
};
}
catch (Exception ex)
{
_logger.LogError($"Failed to GetNumberOfMessages for queue {queueName}: {ex.Message}");
throw;
}
}
public async Task<List<Message>> GetMessagesAsync(string queueName, CancellationToken cancellationToken = default)
{
var queueUrl = await GetQueueUrl(queueName);
try
{
var response = await _sqsClient.ReceiveMessageAsync(new ReceiveMessageRequest
{
QueueUrl = queueUrl,
WaitTimeSeconds = _appConfig.AwsQueueLongPollTimeSeconds,
AttributeNames = new List<string> { "ApproximateReceiveCount" },
MessageAttributeNames = new List<string> { "*" }
}, cancellationToken);
if (response.HttpStatusCode != HttpStatusCode.OK)
{
throw new AmazonSQSException($"Failed to GetMessagesAsync for queue {queueName}. Response: {response.HttpStatusCode}");
}
return response.Messages;
}
catch (TaskCanceledException)
{
_logger.LogWarning($"Failed to GetMessagesAsync for queue {queueName} because the task was canceled");
return new List<Message>();
}
catch (Exception)
{
_logger.LogError($"Failed to GetMessagesAsync for queue {queueName}");
throw;
}
}
public async Task<List<Message>> GetMessagesAsync(CancellationToken cancellationToken = default)
{
return await GetMessagesAsync(_appConfig.AwsQueueName, cancellationToken);
}
public async Task PostMessageAsync<T>(string queueName, T message)
{
var queueUrl = await GetQueueUrl(queueName);
try
{
var sendMessageRequest = new SendMessageRequest
{
QueueUrl = queueUrl,
MessageBody = JsonConvert.SerializeObject(message),
MessageAttributes = SqsMessageTypeAttribute.CreateAttributes<T>()
};
if (_appConfig.AwsQueueIsFifo)
{
sendMessageRequest.MessageGroupId = typeof(T).Name;
sendMessageRequest.MessageDeduplicationId = Guid.NewGuid().ToString();
}
await _sqsClient.SendMessageAsync(sendMessageRequest);
}
catch (Exception ex)
{
_logger.LogError(ex, $"Failed to PostMessagesAsync to queue '{queueName}'. Exception: {ex.Message}");
throw;
}
}
public async Task PostMessageAsync<T>(T message)
{
await PostMessageAsync(_appConfig.AwsQueueName, message);
}
private async Task<string> GetQueueUrl(string queueName)
{
if (string.IsNullOrEmpty(queueName))
{
throw new ArgumentException("Queue name should not be blank.");
}
if (_queueUrlCache.TryGetValue(queueName, out var result))
{
return result;
}
try
{
var response = await _sqsClient.GetQueueUrlAsync(queueName);
return _queueUrlCache.AddOrUpdate(queueName, response.QueueUrl, (q, url) => url);
}
catch (QueueDoesNotExistException ex)
{
throw new InvalidOperationException($"Could not retrieve the URL for the queue '{queueName}' as it does not exist or you do not have access to it.", ex);
}
}
}
}