-
1. Re: Recommendation for HDD utilization - JBoss and database
wdfink Jul 4, 2013 12:09 PM (in response to lszymik)1 of 1 people found this helpfulJBoss will have benefit from a multicore system.
But all the parameters depend on the application.
In general it will be good to have a fast IO to disc to write the logfiles and store some necessary data (tmp or data).
But if you have not a big amount of data stored on a disc increasing the speed of IO might have no benefit for the application.
The amount of memory is the same, if you have an application with a small footprint, i.e. fast actions with only small data, a big heap might not good as it takes long to clean and adjust it and a smaller one will have less pauses.
-
2. Re: Recommendation for HDD utilization - JBoss and database
rhusar Jul 8, 2013 8:21 AM (in response to wdfink)1 of 1 people found this helpful+1
I also suspect that improving disk I/O is not going to help the deployment much apart from tmp/data writes and server startup.
So I would focus on the database needs and some redundancy setup to keep the data safe.
-
3. Re: Recommendation for HDD utilization - JBoss and database
lszymik Jul 8, 2013 9:52 AM (in response to lszymik)Thank you for information.
I have investigated it further and for sure the biggest impact is toward database performance. One of my application's use case is uploading and downloding files and these are rather big files.
The upload and download is realized over web service deployed on JBoss server. This is not perfect architecture, however it is as it is. I see that transfer of files is impacting database a lot. I suspect that any JBoss operation on temp, data and log directories might be affected.
Thanks
Łukasz
-
4. Re: Recommendation for HDD utilization - JBoss and database
wdfink Jul 9, 2013 2:15 AM (in response to lszymik)What is the impact? Maybe the network will be overloaded by up- and downloads. Maybe you split the network interfaces for extern and intern communication in tht case.