Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We were forced to run a performance test on our JVM inside a windows server box. While everything looked good, The application when deployed will be running on AIX.

I understand java is relatively OS ignorant, but in the past I have noticed issues in other applications such as file descriptor limits on AIX.

Is our test valid? Are there any major concerns or areas we should look at closer to determine if we may have an issue.

share|improve this question
3  
You haven't tested if you haven't tested in a production setting. I've always found that sound advice. – Wivani Sep 1 '11 at 18:28
Couldn't Agree more with Wivani - something inevitably goes wrong. And there isn't anything you can do but spend time troubleshooting in front of the client (if you have a client - I am assuming you do since it sounds like you don't have access to the box). – skaz Sep 1 '11 at 18:29
While that's surely the best approach, you can hardly expect the client to give them access to the box months before the final deployment and finding out of performance problems after deployment isn't such a great situation. I'd agree if we were talking about some linux distro, but getting your hands on AIX and a machine that can run it, isn't that simple. – Voo Sep 1 '11 at 18:43
Test on linux at least it's a UNIX thing. FileDescriptors and sockets (and NIO) are significantly different on windows and linux. Also: thread priorities are different on linux and windows (dunno about AIX, but I expect the linux priority model). Thread priorities are important since mutator threads have to compete w/ the GC and the compiler ones for CPU. – bestsss Sep 1 '11 at 18:49
If you are testing your application occasionally on an identical machine you can still do most of your development on a completely different machine. Differences can appear, but they don't occur that often. Perhaps you can use an AIX box for continuous integration (even an old one) – Peter Lawrey Sep 1 '11 at 19:02

2 Answers

up vote 3 down vote accepted

Ideally you'd run your performance tests on as similar an environment as possible to your production environment. That means CPU, memory, JVM supplier and version, disk setup, network, and so on.

That's the ideal situation. However, if you are running identical JVM versions from identical JVM suppliers, with the same memory, and the same memory tuning parameters, you'll be relatively fine.

I suspect on the AIX box you'll need to run IBM's JVM. You should use IBM's JVM on Windows too.

share|improve this answer
1  
+1 for the same JVM aspect. That should certainly have quite some impact and is much simpler than finding an IBM box + machine. – Voo Sep 1 '11 at 18:50

Your company should have different test environments:

  • for integration or acceptance
  • for pre-production

In a perfect world, the integration or acceptance facilities should similar to those of production (OS wise).
The pre-production should be a clone of the production and could take over the production in case of a disaster.
Testing and making an application stable is an ongoing process and like Wivan said production is just another testing environment.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.