You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lucas Nelaupe edited this page Jan 12, 2018
·
2 revisions
By default, all jobs will run in sequence. You can decide to create multiple queues and run job in parallel. To do this you need to specify a group name in JobBuilder.
jobBuilder.group(name:"tweet")
All job with group "tweet" will run in sequence. But job with other names will run in parallel.