Author |
Message |
Topic: [SOLVED] Importing changes in process flow into runtime |
tsrisudh
Replies: 3 Views: 7991
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Mon Aug 20, 2007 1:00 am Subject: [SOLVED] Importing changes in process flow into runtime |
You need not wait till all the old processes finish to import your new process flow.
Only newly created workitmes will follow this new flow and the older ones will continue in the old path, so you ... |
Topic: Workflow performance |
tsrisudh
Replies: 4 Views: 7070
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Mon Jun 04, 2007 2:57 am Subject: Workflow performance |
We too had performance problem with query items returning slow, we were using one particular field in the GC to retrieve the process instances, when we created an Index (In the Workbech itself) and re ... |
Topic: FMC00106E error but isLoggedOn = true |
tsrisudh
Replies: 3 Views: 7140
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Thu May 24, 2007 2:09 am Subject: FMC00106E error but isLoggedOn = true |
you have to do a refresh before trying to check isLoggedOn, first do a service.refresh() and then check.
I too had faced the same problem and after using the refresh, it solved the problem |
Topic: Performance issue with WF |
tsrisudh
Replies: 3 Views: 5259
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Wed Apr 18, 2007 12:43 pm Subject: Performance issue with WF |
What do you mean by dynamic assignments?
We got a lot of load reduced on the WF by increasing the bufferpool on the DB2 and also by creating an index on the GC table.
But still i would like to ... |
Topic: Authenticating Worfklow users |
tsrisudh
Replies: 8 Views: 8505
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Tue Apr 10, 2007 4:24 pm Subject: Authenticating Worfklow users |
One thing i am not able to understand is whether you want to track this at app level or WF level, if you want to do at the app level then yes you can integrate with LDAP and do the authentication,
... |
Topic: Performance issue with WF |
tsrisudh
Replies: 3 Views: 5259
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Wed Apr 04, 2007 5:04 pm Subject: Performance issue with WF |
Hi,
We have MQWF 3.6 on AIX and MQ 5.3
The WF system when load tested is peaking to 90% utilization, most of the memory is consumed by db2sysc process.
The response times are fine but it is c ... |
Topic: [SOLVED] MQWF DB2 databse size increase |
tsrisudh
Replies: 15 Views: 35118
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Tue Mar 06, 2007 3:20 am Subject: [SOLVED] MQWF DB2 databse size increase |
I too ran the process and it deleted 120000 records in about 18 hours, any idea how we can speed up this process |
Topic: [SOLVED] MQWF DB2 databse size increase |
tsrisudh
Replies: 15 Views: 35118
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Mon Mar 05, 2007 5:38 am Subject: [SOLVED] MQWF DB2 databse size increase |
Pats21, so did the process complete successfully, and how much time did it finally take?
Any idea how many record it deleted from the AUDIT_TRAIL table? |
Topic: Getting Error - java.lang.UnsatisfiedLinkError |
tsrisudh
Replies: 8 Views: 14676
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Thu Mar 01, 2007 1:23 am Subject: Getting Error - java.lang.UnsatisfiedLinkError |
Are you using WAS, in case you are have you set the MQ path properly in the server?
Check the values for the variable below, they should point to the correct path.
MQ_INSTALL_ROOT
This vari ... |
Topic: [SOLVED] MQWF DB2 databse size increase |
tsrisudh
Replies: 15 Views: 35118
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Thu Mar 01, 2007 1:20 am Subject: [SOLVED] MQWF DB2 databse size increase |
I guess the filesize will decrease only when the transaction completes successfully. It is that way because the DB has to rollback in case there is an error in between the process.
I think this is ... |
Topic: [SOLVED] MQWF DB2 databse size increase |
tsrisudh
Replies: 15 Views: 35118
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Sat Feb 17, 2007 10:27 pm Subject: [SOLVED] MQWF DB2 databse size increase |
Yes having the audit on increases the DB size dramatically, i do not know he exact usage if the tool so cant help you there |
Topic: [SOLVED]Activity Expiration.. |
tsrisudh
Replies: 8 Views: 9900
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Tue Feb 13, 2007 12:46 am Subject: [SOLVED]Activity Expiration.. |
Surabhi, you can try other options but still the best way to accomplish what you said is using the JAVA API, we too have done the same thing, On session expiry we check if there are checkout items by ... |
Topic: [SOLVED] ExecutionSession ping |
tsrisudh
Replies: 3 Views: 5475
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Mon Feb 05, 2007 5:21 pm Subject: [SOLVED] ExecutionSession ping |
Same is my experience, when you only have isLoggedOn() without the refresh the results are not correct, so it is required to put a refresh() before this, and though refresh is costly it avoids lot of ... |
Topic: Query about Business Measures |
tsrisudh
Replies: 15 Views: 18991
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Mon Feb 05, 2007 5:18 pm Subject: Query about Business Measures |
Yes you got it right, you cannot set PROCESS_START for activities which are inside the block |
Topic: Query about Business Measures |
tsrisudh
Replies: 15 Views: 18991
|
Forum: Workflow Engines - IBM MQ Workflow & Business Process Choreographer Posted: Mon Feb 05, 2007 4:10 am Subject: Query about Business Measures |
Business measures defined inside blocks will not get recorded at the higher level, you can only define at the start and end of the block, but there is no way you can do that inside of a block. |