Skip to content

Our MAS Single plan is a single server deployment designed for up to 50* concurrent users. This user capacity can be for your entire MAS System (supporting 150 total actual users for example), or 50 concurrent users per Organization or Site even, to provide more capacity and resilience.

Our MAS Cluster plan includes a minimum of 2 worker nodes so can handle more users and provides a level of resilience since it has more than one application server. An unlimited number of worker nodes can be added to this plan, including special worker nodes with GPU processors for MAS modules that utilize AI.

More information:

MaxStack versus other MAS SaaS Options

Estimating the Maximo capacity you need for your concurrent user load

To estimate your Maximo concurrent users, find your current high-water mark with the following SQL query. This will return the top 10 concurrent user counts and the day each occurred in the prior year. You may choose to disregard any outliers.

You may also want to decrease your high-water mark if you have set Maximo’s time-out period to be longer than the standard 30 minutes, as this means the high-water number returned by the query may be inflated in terms of actual load on the server.

SQL Server:

select top 10 cast(attemptdate as Date) as countdate, max(currentcount) as concurrentcount from logintracking where attemptdate > getdate()-365 group by cast(attemptdate as Date)
order by max(currentcount) desc;

Oracle:

select * from
(select trunc(attemptdate) as countdate, max(currentcount) as concurrentcount from logintracking where attemptdate > sysdate-365 group by trunc(attemptdate)
order by max(currentcount) desc)
Where rownum <=10;

* IBM and Red Hat suggest that our MAS Single plan is appropriate for up to 70 concurrent users. We use 50 as the recommended number to be safe.