- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2022 06:12 AM
※Paris version
When I checked the transactions when I executed the following script, I could only execute up to 8 transactions at a time.
function scripte() {
//ScheduleJob
sleepe(12000);
function sleepe(a) {
var startMsec = new Date();
while (new Date() - startMsec < a);
}
}
var sched = new ScheduleOnce();
sched.script = '(' + scripte + ')();';
sched.schedule();
sched.schedule();
sched.schedule();
sched.schedule();
sched.schedule();
sched.schedule();
sched.schedule();
sched.schedule();
sched.schedule();
sched.schedule();
sched.schedule();
sched.schedule();
Originally I want 12 transactions to be launched.
Can this be adjusted from 8 to 12?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2022 03:49 PM
Hi, as Appli indicated a node has 8 configured 'workers' and it will also have a 'burst worker' which may activate under specific conditions to handle core functionality.
https://community.servicenow.com/community?id=community_article&sys_id=e61d22e5dbd0dbc01dcaf3231f9619fd
Can you clarify your business requirement\intended objectives?
Why do you require 12 concurrent transactions?