0 votes
518 views
in Integrations by (16.3k points)
For performance reasons we may want to make logging asynchronous what are the possible ways of accomplishing it in a BPM service.

3 Answers

0 votes
by (2.0k points)
Hi. You can create an "utility service" (in a toolkit) that use the JMS/MQ connector (part of the BPM provided "Integration.jar") to "write" the log on a queue (a JMS queue or a WebSphere Queue). This is a fast and asynchronous way to log messages.

Another application can "dequeue" the messages from the queue and manage the informations as required (eg. put them on a relational DB).
0 votes
by (16.3k points)

If you dont want to use external processing of log messages a simple way is to use the javascript timeout function

setTimeout(function(){ <write to log/db> }, 3000);

where 3000 is the delay in processing the function, this way the current thread does not wait for the completion of the write.

0 votes
by (1.3k points)
you can use any async logging framework in bpm. just create a server side js function and call the underlying logging l

Related questions

+1 vote
0 answers 1.2k views
0 votes
1 answer 922 views
0 votes
0 answers 173 views
0 votes
1 answer 709 views
0 votes
1 answer 2.1k views
0 votes
0 answers 293 views
0 votes
1 answer 825 views
0 votes
0 answers 734 views
0 votes
0 answers 207 views
0 votes
2 answers 2.7k views
0 votes
0 answers 603 views
0 votes
0 answers 418 views
0 votes
0 answers 626 views

634 questions

495 answers

97 comments

2.7k users

Join BPM Community Discord Channel

Welcome to BPM Tips Q&A, Community wiki/forum where you can ask questions and receive answers from other IBM BPM experts and members of the community. Users with 2000 points will automatically be promoted to expert level.
Created by Dosvak LLC
Our Youtube Channel
...