2 Replies Latest reply on Nov 2, 2006 4:05 AM by matthieugd

    jBPM database USAGE

    moonrainbow

      I've looked at jBPM database schema. It's very normalized, which might not be too good if it does a lot of selects (joins). How does jBPM uses the DB? It probably reads process definitions and all the related tables at the process initialization (fetches them from the cache?) but what about the rest of them? Does it ever read from the log?

        • 1. Re: jBPM database USAGE
          moonrainbow

          Ok, it seems there are no takers. I don't understand the lack of interest - maybe that's because I'm missing some really important point. Let me define where I'm coming from:
          I'm going to run on average N*100000 workflows per day. That amounts to about 10*N*100000 variable instances and goodly quantity of tokens and such. So it stands to the reason that after about 10 days my db will start loosing performance even if the SQL it just perfect - no bad joins, no search by non-indexed fields etc. So I'd really love to partition all the tables by some field (say, date), add that field to the queries and just drop the partitions older that 2 days. All of this obviously is relevant to the DBMS with partitioning ability, like Oracle.
          Then I'd love to build the proper indices in the db. Obviously, they'll have to be local, because I can not afford index-rebuild downtime following a partition drop.
          So where could I find some information in respect to the queries and the update process? These issues have got to be common for all people with high load systems. Am I to understand that nobody runs jBPM for more than a few hundreds/thousands workflows per day?

          • 2. Re: jBPM database USAGE
            matthieugd

            I think you should look to the file where queries are defined :
            org/jbpm/db/hibernate.queries.hbm.xml

            And you can customize hibernate mapping file, see the persistence chapter :
            http://docs.jboss.com/jbpm/v3/userguide/persistence.html