back to top

Add Multi-Threading to Infor CRM Job Server

Infor CRM use a job service to handle certain tasks, such as reports and exports.  It will also offload standard tasks such as searches to the job service if they are too big.  This is so tasks that would take longer to run can queue up in their own service and not slow down the rest of what the server is doing.  Sadly, there is only one queue, so if single job gets stuck there, no more jobs will run until the service is restarted.  There is a way to add multi-threading, so that a single stuck job does not stop the entire job service.  Be warned, however, it is very memory intensive, so will not be an appropriate solution for all servers.

How memory intensive, you ask.  The job service is programed to take up the 1.5 GB of memory if it needs.  If you add multi-threading, each thread can take up to 1.5 GB.  So, should you set this up, make sure the server has 1.5 GB of RAM per thread, over and above whatever RAM it needs for everything else it does.  The example Infor provides is for 10 threads, which would require and extra 15 GB RAM on that server.

To actually enable multi-threading in Infor CRM, follow the following steps:

  • Stop the Job Server Service
  • Stop the Cache Server Service
  • Navigate to C:\Program Files (x86)\Saleslogix
  • Open SLXJobServer.exe config file in a text editor\
  • Uncomment the following line:

<!–
 <add key=”quartz.threadPool.type” value=”Sage.Scheduling.Server.ProcessPool, SLXJobServer” />
  –>

  • Add the following entry to the SLXJobServer.exe config file under the section commented out above:

<add key=”quartz.threadPool.threadCount” value=”10″ />

  • Start the Cache Server Service
  • Start the Job Server Service

Changes in SLXjobserver.exe.config

For typical Infor CRM setups, that is all you need to do.  If your system is using BODs (Business Object Documents, you will know if you are using them), there is the extra step where you must go into SQL and clear out all the BODs that were trying to process while you were making changes.  In that case, before restarting the services, go into SQL management studio and run the following SQL commands:

NOTE: If no BODs are currently processing, you may skip this step.
                        DELETEFROM [sysdba].[QRTZ_BLOB_TRIGGERS]
                        DELETEFROM [sysdba].[QRTZ_CALENDARS]
                        DELETEFROM [sysdba].[QRTZ_CRON_TRIGGERS]
                        DELETEFROM [sysdba].[QRTZ_FIRED_TRIGGERS]
                        DELETEFROM [sysdba].[QRTZ_JOB_DETAILS]
                        DELETEFROM [sysdba].[QRTZ_LOCKS]
                        DELETEFROM [sysdba].[QRTZ_PAUSED_TRIGGER_GRPS]
                        DELETEFROM [sysdba].[QRTZ_SCHEDULER_STATE]
                        DELETEFROM [sysdba].[QRTZ_SIMPLE_TRIGGERS]
                        DELETEFROM [sysdba].[QRTZ_SIMPROP_TRIGGERS]
                        DELETEFROM [sysdba].[QRTZ_TRIGGERS]
                        DELETEFROM [sysdba].[SYSINBOXSTATUS]

Contact Customer FX for your CRM project
We let our expertise speak for itself - let us know how our all-star team can help on your CRM project
About the Author

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Infor CRM SLX 10.0: Delegate Ownership Changes for “Everyone” Records

Learn how the new EveryoneOwnerAssignment secured action in Infor CRM SLX 10.0 allows designated users to change ownership of Everyone-owned records without requiring Administrator access.

Related Articles

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Related Videos