feat: introduce dedicated bucketing types - #8712
Open
chaen wants to merge 4 commits into
Open
Conversation
chaen
force-pushed
the
v9.1_feat_dedicatedAccountingAgent
branch
2 times, most recently
from
July 23, 2026 12:03
0511f68 to
0f91cbb
Compare
chaen
force-pushed
the
v9.1_feat_dedicatedAccountingAgent
branch
2 times, most recently
from
August 17, 2026 08:40
970c555 to
d51d3af
Compare
chaen
marked this pull request as ready for review
August 17, 2026 08:40
andresailer
reviewed
Aug 17, 2026
fstagni
reviewed
Aug 31, 2026
| Dedicated DataStore accounting | ||
| ============================== | ||
|
|
||
| It is possible to run myltiple DataStore, each bucketing only certain type of accounting. It can be useful in case of backlog for certain types of accounting. It is however not recommended to run like that. |
Contributor
There was a problem hiding this comment.
Suggested change
| It is possible to run myltiple DataStore, each bucketing only certain type of accounting. It can be useful in case of backlog for certain types of accounting. It is however not recommended to run like that. | |
| It is possible to run multiple DataStore, each bucketing only certain type of accounting. It can be useful in case of backlog for certain types of accounting. It is however not recommended to run like that. |
Why "it is not recommended"?
Contributor
Author
There was a problem hiding this comment.
Because of the reason below: you need to keep a list of existing types
chaen
force-pushed
the
v9.1_feat_dedicatedAccountingAgent
branch
from
September 2, 2026 09:27
d51d3af to
4440a4d
Compare
fstagni
reviewed
Sep 4, 2026
| def initializeHandler(cls, svcInfoDict): | ||
| multiPath = PathFinder.getDatabaseSection("Accounting/MultiDB") | ||
| cls.__acDB = MultiAccountingDB(multiPath) | ||
| # we can focus on only some of the accoutning type |
Contributor
There was a problem hiding this comment.
Suggested change
| # we can focus on only some of the accoutning type | |
| # we can focus on only some of the accounting type |
| { | ||
| Default = authenticated | ||
| } | ||
| # Specify which bucketing to run. Not recommended, see the docs |
Contributor
There was a problem hiding this comment.
Suggested change
| # Specify which bucketing to run. Not recommended, see the docs | |
| # Specify for which of the existing Accounting types to run the bucketing. Not specifying this option means all of the accounting types, which is default and recommended. Refer to the official documentation. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR does 3 things:
BEGINRELEASENOTES
*Accounting
FIX: AccountingDB do not block for an hour after a bucketing error
FEAT: AccountingDB optimized with caching
FEAT: allow to split the DataStore based on AccountingType
ENDRELEASENOTES