Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync dev branch from main #177

Merged
merged 21 commits into from
Feb 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
235a907
Merge pull request #75 from awslabs/dev
philasmar Nov 17, 2023
2bacb92
Merge pull request #83 from awslabs/dev
philasmar Dec 8, 2023
2ec157f
Merge pull request #87 from awslabs/dev
philasmar Dec 8, 2023
0bfd33c
Merge dev to main to release 0.2.0-beta
ashovlin Mar 8, 2024
fc8e967
Merge dev to main for 0.2.0-beta post-release work
ashovlin Mar 8, 2024
9c05f1c
Merge pull request #111 from awslabs/dev
philasmar Mar 20, 2024
8e9d33e
Merge pull request #116 from awslabs/dev
philasmar Mar 26, 2024
faf2f2a
Merge pull request #119 from awslabs/dev
philasmar Mar 26, 2024
db7703f
Merge pull request #122 from awslabs/dev
aws-sdk-dotnet-automation Apr 2, 2024
8581da7
docs: update telemetry design wording for clarity
eddiemcs3 Apr 8, 2024
b18c8e5
[UA update] chore: Update User-Agent string (#127)
96malhar Apr 16, 2024
79a9143
chore: add 'change file' section to the contributions file
philasmar Apr 12, 2024
00a8622
address alex's comment
philasmar Apr 12, 2024
90a00fe
Merge branch 'dev'
aws-sdk-dotnet-automation Apr 22, 2024
d090bc8
Merge pull request #138 from awslabs/dev
philasmar Apr 25, 2024
ee29c3d
chore: Add GitHub workflows for stale issue/discussions and closed is…
ashishdhingra Jun 17, 2024
c43c3bb
Merge branch 'dev'
aws-sdk-dotnet-automation Aug 2, 2024
479735d
Merge branch 'dev'
aws-sdk-dotnet-automation Aug 16, 2024
0541a95
chore: Modified bug issue template to add checkbox to report potentia…
ashishdhingra Sep 5, 2024
8209ab5
Merge branch 'dev'
aws-sdk-dotnet-automation Jan 15, 2025
a1b0aed
Fix issue with fifo queues message failure reporint issue (#175)
normj Feb 20, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .autover/changes/0529a49e-6b48-4eea-874b-1a5c2be8b029.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"Projects": [
{
"Name": "AWS.Messaging",
"Type": "Patch",
"ChangelogMessages": [
"Fix issue with fifo when a message is failed to process the later messages are not retried"
]
},
{
"Name": "AWS.Messaging.Lambda",
"Type": "Patch",
"ChangelogMessages": [
"Update AWS.Messaging dependency"
]
}
]
}
25 changes: 25 additions & 0 deletions .autover/changes/cb641346-f9f6-414d-be09-90ea0b8366a7.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"Projects": [
{
"Name": "AWS.Messaging",
"Type": "Patch",
"ChangelogMessages": [
"Update User-Agent string"
]
},
{
"Name": "AWS.Messaging.Lambda",
"Type": "Patch",
"ChangelogMessages": [
"Update project dependencies"
]
},
{
"Name": "AWS.Messaging.Telemetry.OpenTelemetry",
"Type": "Patch",
"ChangelogMessages": [
"Update project dependencies"
]
}
]
}
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ body:
description: What is the problem? A clear and concise description of the bug.
validations:
required: true
- type: checkboxes
id: regression
attributes:
label: Regression Issue
description: What is a regression? If it worked in a previous version but doesn't in the latest version, it's considered a regression. In this case, please provide specific version number in the report.
options:
- label: Select this option if this issue appears to be a regression.
required: false
- type: textarea
id: expected
attributes:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/BuildandTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # pinning V4
with:
dotnet-version: 6.0.x
- name: Setup .NET Core 8.0
uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # pinning V4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/issue-regression-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Apply potential regression label on issues
name: issue-regression-label
on:
issues:
types: [opened, edited]
jobs:
add-regression-label:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Fetch template body
id: check_regression
uses: actions/github-script@v7
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TEMPLATE_BODY: ${{ github.event.issue.body }}
with:
script: |
const regressionPattern = /\[x\] Select this option if this issue appears to be a regression\./i;
const template = `${process.env.TEMPLATE_BODY}`
const match = regressionPattern.test(template);
core.setOutput('is_regression', match);
- name: Manage regression label
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if [ "${{ steps.check_regression.outputs.is_regression }}" == "true" ]; then
gh issue edit ${{ github.event.issue.number }} --add-label "potential-regression" -R ${{ github.repository }}
else
gh issue edit ${{ github.event.issue.number }} --remove-label "potential-regression" -R ${{ github.repository }}
fi
11 changes: 9 additions & 2 deletions src/AWS.Messaging/Services/DefaultMessageManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,19 @@ public async Task ProcessMessageGroupAsync(List<ConvertToEnvelopeResult> message
var remaining = messageGroup.Count;

// Sequentially process each message within the group
foreach (var message in messageGroup)
for(var i = 0; i < messageGroup.Count; i++)
{
var message = messageGroup[i];

var isSuccessful = await InvokeHandler(message.Envelope, message.Mapping, token);
if (!isSuccessful)
{
// If the handler invocation fails for any message, skip processing subsequent messages in the group.
// If the handler invocation fails for any message, report failure for the rest in the group so they are reported back to Lambda
// as not failure that should be retried. Otherwise Lambda will think the messages were successfully processed and delete the messages.
for (var unprocessedIndex = i + 1; unprocessedIndex < messageGroup.Count; unprocessedIndex++)
{
await _sqsMessageCommunication.ReportMessageFailureAsync(messageGroup[unprocessedIndex].Envelope, token);
}
_logger.LogError("Handler invocation failed for a message belonging to message group '{GroupdId}' having message ID '{MessageID}'. Skipping processing of {Remaining} messages from the same group.", groupId, message.Envelope.Id, remaining);
break;
}
Expand Down
38 changes: 34 additions & 4 deletions test/AWS.Messaging.UnitTests/LambdaTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,44 @@ public async Task MessageHandlerReturnsFailedStatusBatchResponse()
Id = "failed-message-1",
ReturnFailedStatus = true
};
var secondMessage = new SimulatedMessage
{
Id = "second-message-1",
ReturnFailedStatus = false
};

var tuple = await ExecuteWithBatchResponse(new SimulatedMessage[] { failedMessage });
var tuple = await ExecuteWithBatchResponse(new SimulatedMessage[] { failedMessage, secondMessage });
_mockSqs!.Verify(
expression: x => x.ChangeMessageVisibilityAsync(It.IsAny<ChangeMessageVisibilityRequest>(), It.IsAny<CancellationToken>()),
times: Times.Never);
Assert.Single(tuple.batchResponse.BatchItemFailures);
Assert.Equal("1", tuple.batchResponse.BatchItemFailures[0].ItemIdentifier);
}

[Fact]
public async Task MessageHandlerReturnsFailedStatusBatchResponseFifo()
{
var failedMessage = new SimulatedMessage
{
Id = "failed-message-1",
ReturnFailedStatus = true,
MessageGroupId = "group1"
};
var secondMessage = new SimulatedMessage
{
Id = "second-message-1",
ReturnFailedStatus = false,
MessageGroupId = "group1"
};

var tuple = await ExecuteWithBatchResponse(new SimulatedMessage[] { failedMessage, secondMessage }, isFifoQueue: true);
_mockSqs!.Verify(
expression: x => x.ChangeMessageVisibilityAsync(It.IsAny<ChangeMessageVisibilityRequest>(), It.IsAny<CancellationToken>()),
times: Times.Never);
Assert.Equal(2, tuple.batchResponse.BatchItemFailures.Count);
Assert.Equal("1", tuple.batchResponse.BatchItemFailures[0].ItemIdentifier);
}

[Fact]
public async Task MessageHandlerResetsVisibilityWhenFailedStatusBatchResponse()
{
Expand Down Expand Up @@ -304,13 +333,14 @@ private async Task<string> Execute(SimulatedMessage[] messages, int maxNumberOfC
SimulatedMessage[] messages,
int maxNumberOfConcurrentMessages = 1,
bool deleteMessagesWhenCompleted = false,
int? visibilityTimeoutForBatchFailures = default)
int? visibilityTimeoutForBatchFailures = default,
bool isFifoQueue = false)
{
var provider = CreateServiceProvider(
maxNumberOfConcurrentMessages: maxNumberOfConcurrentMessages,
deleteMessagesWhenCompleted: deleteMessagesWhenCompleted,
visibilityTimeoutForBatchFailures: visibilityTimeoutForBatchFailures);
var sqsEvent = await CreateLambdaEvent(provider, messages);
visibilityTimeoutForBatchFailures: visibilityTimeoutForBatchFailures, isFifoQueue: isFifoQueue);
var sqsEvent = await CreateLambdaEvent(provider, messages, isFifoQueue: isFifoQueue);

var logger = new TestLambdaLogger();
var context = new TestLambdaContext()
Expand Down
Loading