Java Performance Tuning

Java(TM) - see bottom of page

|home |services |training |newsletter |tuning tips |tool reports |articles |resources |about us |site map |contact us |
Tools: | GC log analysers| Multi-tenancy tools| Books| SizeOf| Thread analysers| Heap dump analysers|

Our valued sponsors who help make this site possible
JProfiler: Get rid of your performance problems and memory leaks! 

Training online: Concurrency, Threading, GC, Advanced Java and more ... 

News September 2012

JProfiler
Get rid of your performance problems and memory leaks!

Modern Garbage Collection Tuning
Shows tuning flow chart for GC tuning


Java Performance Training Courses
COURSES AVAILABLE NOW. We can provide training courses to handle all your Java performance needs

Java Performance Tuning, 2nd ed
The classic and most comprehensive book on tuning Java

Java Performance Tuning Newsletter
Your source of Java performance news. Subscribe now!
Enter email:


Training online
Threading Essentials course


JProfiler
Get rid of your performance problems and memory leaks!


Back to newsletter 142 contents

The Masstree paper I extracted tips from this month (see articles below) achieves the same performance as memcached, yet with the addition of persistency. This is a pointer to the future application use of storage: we'll increasingly be using in-memory storage with persistency for all our data rather than the older paradigm of persistent storage with some of the data cached in memory. After all, if Google feels it's beneficial to put their entire web index into memory (which they had already started doing as early as 2001 according to Jeff Dean's WSDM09 presentation), it's highly likely that your application storage requirements can cost-effectively fit into memory too.

Of course if you need to manage many terabytes of stored data, we may not be there yet, but the vast majority of applications have not more than multi-gigabyte storage requirements, and that can now comfortably fit into memory.

A note from this newsletter's sponsor

New Relic - Try New Relic today and get your free Data Nerd shirt!
Free SaaS APM tool to monitor, troubleshoot, and tune apps
running on Websphere, Weblogic, Tomcat, Jetty, JBoss, Solr, Resin

The simplest way to store data in-memory is just to make your caches big enough to store all your persistent data. This is effectively how your database server can work as an in-memory system. The database vendors work to ensure that this configuration works effectively, they're fully aware that servers are increasingly coming with hundreds of gigabytes of memory. Naturally database caches are very specific types of caches optimized for database management, not the same sort of things you plug into your application. But the principle is the same.

However, that's the old "persistent storage + cache" technique, where the persistent storage is primary and the cache an optimization. If you are designing your application now, you should really be thinking the other way round - how do I design so that the in-memory storage is my primary working storage, and I have additionally a mechanism to ensure that any changes are persisted so that I can recover if necessary.

This is the future world of applications - parallel, multicore enabled, efficiently highly concurrent, with in-memory storage and persistence for recovery. Now on to all our usual links to Java performance tools, news, articles and, as ever, all the extracted tips from all of this month's referenced articles.

A note from this newsletter's sponsor

Free Java Performance Tool - From AppDynamics
Fight fires in production with less than 2% overhead.
Gain complete visibility into your java app. Free Download!

News

Java performance related news.

Tools

Java performance related tools.

A note from this newsletter's sponsor

ManageEngine: Application Performance Management for Java EE Apps.
Monitor App Servers: JBoss, WebSphere, WebLogic, JVMs and JMX Apps.
*** Monitor up to 25 App Servers, Databases & Servers at $795/Yr***.

Articles

Jack Shirazi


Back to newsletter 142 contents


Last Updated: 2024-09-29
Copyright © 2000-2024 Fasterj.com. All Rights Reserved.
All trademarks and registered trademarks appearing on JavaPerformanceTuning.com are the property of their respective owners.
Java is a trademark or registered trademark of Oracle Corporation in the United States and other countries. JavaPerformanceTuning.com is not connected to Oracle Corporation and is not sponsored by Oracle Corporation.
URL: http://www.JavaPerformanceTuning.com/news/news142.shtml
RSS Feed: http://www.JavaPerformanceTuning.com/newsletters.rss
Trouble with this page? Please contact us