Skip to content

feature: Idempotency module #717

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

Merged
merged 31 commits into from
Feb 16, 2022
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
4440dce
Move JSON config to a new utility module
jeromevdl Jan 24, 2022
08c575b
Use new utility module for JSON config
jeromevdl Jan 24, 2022
03999db
Idempotency module
jeromevdl Jan 24, 2022
b1d0262
Idempotency module example
jeromevdl Jan 24, 2022
2ac9f65
Idempotency module added to lambda-powertools
jeromevdl Jan 24, 2022
4ed575d
solve JDK 16 build
jeromevdl Jan 24, 2022
a8e0ff5
refactoring to simplify 'around' method
jeromevdl Jan 24, 2022
8ec3b90
solve javadoc warnings
jeromevdl Jan 24, 2022
a4db313
PR #717: document exceptions
jeromevdl Feb 2, 2022
9d29528
PR #717: move cache to utilities
jeromevdl Feb 2, 2022
2aa583e
PR #717: native libs for dynamo & sqlite
jeromevdl Feb 2, 2022
92fafe6
PR #717: changes post review
jeromevdl Feb 2, 2022
c284584
PR #717: add modules to GitHub workflows
jeromevdl Feb 2, 2022
b2ec97d
PR #717: fix utilities dependency
jeromevdl Feb 2, 2022
32fd1e5
PR #717: fix utilities dependency
jeromevdl Feb 2, 2022
a48a5d3
PR #717: fix utilities dependency
jeromevdl Feb 2, 2022
1803bb9
PR #717: upgrade utilities and idempotency version to 1.10.3
jeromevdl Feb 2, 2022
cd71b5f
PR #717: end to end test with a handler
jeromevdl Feb 2, 2022
3245ba6
PR #717: upgrade version in example
jeromevdl Feb 3, 2022
69521ec
PR #717: expiration in seconds instead of ms
jeromevdl Feb 3, 2022
96eadc0
PR #717: new test
jeromevdl Feb 3, 2022
d302f7a
adding documentation
jeromevdl Feb 7, 2022
f713c3c
removing unused dependencies
jeromevdl Feb 7, 2022
38522bb
sqlite dependency for Mac M1
jeromevdl Feb 14, 2022
7401f22
update doc for sqlite dependency on M1
jeromevdl Feb 14, 2022
c39d3a9
change expiration to duration
jeromevdl Feb 14, 2022
4855a20
update doc for utilities
jeromevdl Feb 14, 2022
81a7052
PR #717: rename utilities into serialization
jeromevdl Feb 16, 2022
cefd1f7
PR #717: move back LRU into idempotency module
jeromevdl Feb 16, 2022
1550cc4
PR #717: local cache disabled by default
jeromevdl Feb 16, 2022
221855e
PR #717: update documentation
jeromevdl Feb 16, 2022
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
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ on:
paths:
- 'powertools-cloudformation/**'
- 'powertools-core/**'
- 'powertools-utilities/**'
- 'powertools-logging/**'
- 'powertools-sqs/**'
- 'powertools-tracing/**'
- 'powertools-validation/**'
- 'powertools-idempotency/**'
- 'powertools-parameters/**'
- 'powertools-metrics/**'
- 'powertools-test-suite/**'
Expand All @@ -22,10 +24,12 @@ on:
paths:
- 'powertools-cloudformation/**'
- 'powertools-core/**'
- 'powertools-utilities/**'
- 'powertools-logging/**'
- 'powertools-sqs/**'
- 'powertools-tracing/**'
- 'powertools-validation/**'
- 'powertools-idempotency/**'
- 'powertools-parameters/**'
- 'powertools-metrics/**'
- 'powertools-test-suite/**'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/spotbugs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ on:
paths:
- 'powertools-cloudformation/**'
- 'powertools-core/**'
- 'powertools-utilities/**'
- 'powertools-logging/**'
- 'powertools-sqs/**'
- 'powertools-tracing/**'
- 'powertools-validation/**'
- 'powertools-parameters/**'
- 'powertools-idempotency/**'
- 'powertools-metrics/**'
- 'powertools-test-suite/**'
- 'pom.xml'
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ hs_err_pid*

# Maven build
target/
native-libs/

######################
# IntelliJ
Expand Down
Binary file added docs/media/idempotent_sequence.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/media/idempotent_sequence_exception.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading