-
Notifications
You must be signed in to change notification settings - Fork 132
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
Data Index processing events in groups #2113
Comments
9 tasks
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 14, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 14, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 14, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 14, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 14, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 14, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 14, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 15, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 15, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 15, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 15, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 15, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 15, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 15, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 15, 2024
fjtirado
added a commit
to fjtirado/kogito-apps
that referenced
this issue
Oct 15, 2024
rgdoliveira
pushed a commit
to rgdoliveira/kogito-apps
that referenced
this issue
Oct 24, 2024
* [Fix apache#2113] Data index group processing * [Fix apache#2113] Support group containing different process instance ids * [Fix apache#2113] Flush call is probably not needed * [Fix apache#2113] Optimization for user tasks * Update data-index/data-index-storage/data-index-storage-jpa-common/src/main/java/org/kie/kogito/index/jpa/storage/ProcessInstanceEntityStorage.java Co-authored-by: Gonzalo Muñoz <[email protected]> --------- Co-authored-by: Gonzalo Muñoz <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
apache/incubator-kie-issues#1457 allows the possibility of grouping event publishing.
Data index and data audit were modified to be able to consume the new events, but they are still processed individually.
While this is perfectly fine for data audit, in the case of data index it will be pretty interesting, from performance point of view, to be able to process them in groups, achieving a potentially huge performance gain
Implementation ideas
Modify indexing and storage interfaces to accept collection of ProcessInstaceDataEvent and UserTaskInstanceEvent
This way, in the JPA implementation we can take full benefit of the hibernate optimitazion when several sets are invoked within the same transaciton.
The text was updated successfully, but these errors were encountered: