-
Notifications
You must be signed in to change notification settings - Fork 41
Introduce operations rate limits #1901
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
Open
IvanBorislavovDimitrov
wants to merge
10
commits into
master
Choose a base branch
from
LMCROSSITXSADEPLOY-3360-operation-rate-limits
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
5bbe96a
Introduce per-user/per-space operation rate limits
IvanBorislavovDimitrov bfe61a9
Delete expired operation rate-limit buckets
IvanBorislavovDimitrov 4441fb4
Extract operation rate-limit exception messages into constants
IvanBorislavovDimitrov 4543b7e
Raise expired-bucket cleanup batch size and iteration cap
IvanBorislavovDimitrov 68111be
Move operation rate-limit bucket cleaner next to the other clean-up jobs
IvanBorislavovDimitrov aee7c1e
Annotate PostgresBucketStore constructor with @Inject
IvanBorislavovDimitrov 24166c7
Log structured INFO event on every rate-limit rejection for Dynatrace
Yavor16 b3f70b3
Expose operation rate-limit rejection counters as JMX MBean
Yavor16 08b0c76
Finish implemenation
Yavor16 138ade3
Remove unused dependnecies
Yavor16 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
...foundry/multiapps/controller/persistence/db/changelog/db-changelog-2.52.0-persistence.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog | ||
| http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd"> | ||
|
|
||
| <changeSet author="sap.com" id="add_table_operation_rate_limit_bucket"> | ||
| <preConditions onFail="MARK_RAN"> | ||
| <not> | ||
| <tableExists tableName="operation_rate_limit_bucket"/> | ||
| </not> | ||
| </preConditions> | ||
|
|
||
| <createTable tableName="operation_rate_limit_bucket"> | ||
| <column name="id" type="BIGINT"> | ||
| <constraints primaryKey="true" primaryKeyName="operation_rate_limit_bucket_pk"/> | ||
| </column> | ||
|
|
||
| <column name="state" type="${small-blob.type}"/> | ||
|
|
||
| <column name="expires_at" type="BIGINT"/> | ||
| </createTable> | ||
| </changeSet> | ||
|
|
||
| </databaseChangeLog> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe remove the "Mockito." and make it a static import in order to be consistent with how it is in the OperationRateLimitBucketCleanerTest