0 votes
536 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 937 views
0 votes
0 answers 187 views
0 votes
1 answer 739 views
0 votes
1 answer 2.1k views
0 votes
0 answers 298 views
0 votes
1 answer 837 views
0 votes
0 answers 752 views
0 votes
0 answers 215 views
0 votes
2 answers 2.7k views
0 votes
0 answers 614 views
0 votes
0 answers 426 views
0 votes
0 answers 657 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
...