Make usage of an DB index for transaction type in the rollover script
Description
Environment
Potential Workaround
is blocked by
is cloned by
Checklist
hideActivity

Serhii_NoskoJune 14, 2024 at 5:01 PM
Looks good, karate tests passed, thanks for finding an approach on how to speedup overall acq performance with these indexes and simplify rollover script code.
DamienJune 12, 2024 at 6:15 PM
I checked the performance impact of this change on fiscal year rollover.
The finance rollover (including the encumbrance script) is very fast, so I could not measure a difference for that.
The order rollover is still slow (despite and ), and it did make a difference because of all the requests to retrieve transactions based on the fiscal year id and po line ids (the PR improves the index for po line ids and it simplifies SQL expressions). Overall the rollover was about 30% faster (single measurement using 5000 order lines with encumbrances).
The transactionType
is not used in the order rollover, but it is used in many other places, so this change will speed up other workflows.
DamienJune 12, 2024 at 1:26 PM
is not fixed yet, but we have a workaround now: generally use ObjectMapperTool.getMapper().writeValueAsString(entity)
instead of JsonObject.mapFrom(entity).encode()
, and simply send entity
instead of JsonObject.mapFrom(entity)
when using pgClient.update()
.
DamienMay 7, 2024 at 1:55 PM
I created about it.
DamienMay 6, 2024 at 4:46 PM
When updating RMB from 35.2.0 to 35.3.0-SNAPSHOT to use your latest PR, I get a lot of errors like this:
date/time field value out of range: "1715011526007"
I imagine this is related to RMB 35.2.1 and 35.2.2, but I don’t see any upgrade documentation for these versions. Is there something I need to do in order to use the latest RMB in mod-finance-storage ?
Details
Assignee
Serhii_NoskoSerhii_NoskoReporter
Serhii_NoskoSerhii_NoskoPriority
TBDSprint
NoneDevelopment Team
ThunderjetFix versions
Release
Ramsons (R2 2024)TestRail: Cases
Open TestRail: CasesTestRail: Runs
Open TestRail: Runs
Details
Details
Assignee

Reporter

Filtering by transactionType should use index in both places:
rollover script - https://github.com/folio-org/mod-finance-storage/blob/master/src/main/resources/templates/db_scripts/budget_encumbrances_rollover.sql
Java code to filter transactions by transactionType
We have 2 options to resolve:
currently we have gin index for this field and all requests (java and rollover script) should use this style: https://github.com/folio-org/mod-finance-storage/pull/389/files#diff-baa21c6fbd54f2e8ce00081abcdb5b4e4c045ab4bdead3af832632efc31fff09R219
new simple b-tree index is introduced to not modify source code (actually the code for should be simplified, but it would make usage more readable)