Hi I am working on a web based java tool. We have two instances of our tool deployed in 2 separate servers – one in production (used concurrently by many customers) and one in dev environment rarely used by me. Both the instances, dev and production, are deployed in exactly equivalent servers with same hardware specifications, have the exact code , heap size size, application server, version etc.
But I am observing much slowness in the production instance, compared to dev instance even at odd hours in the night when customer usage is zero (We have tools to monitor customer usage in production). This is surprising because all factors are identical. I am assuming that since the production instance is highly used, the heap there is almost full and fragmented while the heap in dev is relatively free and unfragmented. This is why the dev instance is much faster, even though everything is identical. Is this a reasonable assumption since a fragmented almost full heap will spend more time in object creation and thus degrade performance?
