Wondering if it matters (reliability wise) choosing Redhat or Windows 2003 Server? Assume equal skills in both. Thanks
|
|
|
|
|
|
|
I think you'll find most people will argue Redhat over Windows for reliability. Glassfish itself should run the same on either. You should probably ask this on Server Fault |
||
|
|
|
|
If you check the glassfish source, specifically ./appserv-commons/src/java/com/sun/enterprise/util/io/FileUtils.java, you'll see all of the contortions that Glassfish goes through in order to delete/rename files and directories on Windows. This is a Windows problem, with its restrictions on deleting and renaming open files. There are all sorts of tricks in there, including requesting a GC from the JVM multiple times in the hope of closing the file stream, "pseudo" renaming, sleep-try loops. Some examples:
In practice this sometimes translates to borked deployments or redeployments on Windows, as some files cannot be deleted or moved and end up being left behind. Of the 50 or so Glassfish instances I run I've never had a problem on Solaris 10 and always have problems relating to this on Windows. In short, any *NIX will be better for this reason alone, other platform admin considerations aside. |
||
|
|
