3 Replies Latest reply on Nov 6, 2007 4:53 AM by kukeltje

    I am probably missing something but ....

    hurtdp

      I am trying to evaluate jBPM's capabilities. Here is my problem, a simple workflow;

      Get requests -> Process request(s) Task#1 -> Process request(s) Task#2 -> Process request(s) Task#3 -> End

      The first step "Get requests" may generate 1 - 999 separate requests. At each of the following steps, "Task#1" etc, any number of requests could get processed at one time.

      Can the processing of each request proceed independently (or as groups) or can only one task be active at a time?

      From the forums it seems that this is possible through the use of child Tokens but I want to confirm before attempting it.

      Thanks

      Dave

        • 1. Re: I am probably missing something but ....
          kukeltje

          sure it can proceed independently but in several different ways: multiple tasks in one node or a dynamic fork behave differently, so for a more specific answer, you need to be more clear what happens in the 'proceding'

          • 2. Re: I am probably missing something but ....
            hurtdp

            Ronald,

            Thanks for the quick response and I am sorry if my description is a little lacking.

            Exactly what happens at each step is going to vary - our system will have to support a lot of different kinds of steps - but in general it is just adding additional information to the request.

            The main issue is that the requests should be able to proceed through the workflow instance all together, in groups or individually depending on the operating procedures and available staff in place. So in simple terms of

            A->B->C->D

            500 requests are created at step A and move to B.
            A->B(500)->C->D

            50 are processed (information added) at B and move to C
            A->B(450)->C(50)->D

            Some time later 10 of the 50 at C are processed and 100 at B are processed
            A->B(350)-C(140)->D(10)

            This would continue (any number of requests getting processed at any step at any time) until all have been processed or they are canceled.

            I hope this makes sense.

            Dave

            • 3. Re: I am probably missing something but ....
              kukeltje

              what is the relation between the requests? if there is none, just start multiple instances of the process. If they are related, look at the custom fork in the wiki.