I won't post the full document which is about 30 pages but I will summarize things as OAS / IAS is deprecated after Oracle acquired BEA WebLogic Application Server.
To the point - we have build a Java simple application doing few things:
- I/O test:
Reading a file located on the system disk (server side) and displaying its contents to the client. - DB test:
Executing query to an Oracle DB and displaying the result to the client. - HTML test:
Simple HTML page containing some text an few images in different sizes. - Memory Leak test:
Memory leak, by adding objects to the session and not releasing them.
At first we found that Windows and Linux (JVM) crushed and fail-back in the exact same manner when dealing with the Memory leak scenario.
The same with the queries to Oracle DB scenario (bottle-neck was with [UPDATE LATER]).
HTML test was the first time we finally got different results.
After adjusting the Apache.conf few times we got an amazing result,
Windows-based server couldn't keep up with over 300 concurrent users (bottle-neck was CPU) while in the exact same scenario Linux-based server got 1000 concurrent users (and CPU was less then 75%) !
Encouraged with our last results we continue to the last test, I/O test.
We found that Linux can handle requests much faster when parsing the exact same file with the same amount of concurrent users.
[UPDATE LATER]...
Our final conclusion is that J2EE performance is far better on Linux env rather than on Winodws env. It is extremely obvious with the HTML test (which is actually not J2EE) that Apache on Linux can handle four-times throughput than on Windows.
Feel free to ask for more information if you feel something is missing.
This comment has been removed by the author.
ReplyDeleteGood afternoon.
ReplyDeleteYou have made the performance test Oracle Forms & Reports 11g from Linux or Windows?.
Thanks..
Well indeed we used the OAS but the application we've tested wasn't Forms and Reports. Just a plain J2EE web app (servlets and jsp pages). The main point for you is that oracle switched to Weblogic instead of the old Orion based application servers (I think as of Oracle 11g) so you cannot use these results in your case.
ReplyDelete