Skip to main content
June 28, 2021
Question

main use of process backed record

  • June 28, 2021
  • 4 replies
  • 0 views

can someone provide a usecase where we use process backed record

    4 replies

    stefanhelzle0001
    Brainy
    June 28, 2021

    That is rarely used as we persist all relevant process data to DB. Did not do that in recent years since SAIL and Records was introduced in 2015.

    June 29, 2021

    thank you

    csteward
    June 28, 2021

    Yes, as best practice is to archive/delete your process instances on a short schedule, and process backed records only work on processes still in memory (not archived), there are not many use cases for this anymore.  I don't have any.

    The only time I use process reports is in a few situations where I need to check a process variable contents of a running process, which does not occur often since we can persist to the DB and check there.  

    June 29, 2021

    thank you