Skip to content
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

Improved: Add delegator method to create in mass many entities (OFBIZ-13176) #857

Commits on Nov 14, 2024

  1. Improved: Add delegator method to create in mass many entities (OFBIZ…

    …-13176)
    
    When you need to load huge record on your database (like system synchronization, data import) OFBiz can have latency with the delegator.create.
    Incriminated unitary workflow and eeca control. You can disable eeca on use a dedicate delegator but sometime it's not enough.
    
    So for special case, we implement a new function delegator.createAllByBatchProcess that will use an insert with one transaction through the standard sql method INSERT TO ... VALUES ... .
    
    By the way, like the process isn't unitary, the eeca system can't run on this batch, so this function must therefore be used with care
    
    Thanks to Néréide team for this contribution
    nmalin committed Nov 14, 2024
    Configuration menu
    Copy the full SHA
    d4a7962 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2024

  1. Configuration menu
    Copy the full SHA
    678da21 View commit details
    Browse the repository at this point in the history