Neo4j App Performance Profile Management using New Relic
Join the DZone community and get the full member experience.
Join For Freehi,
we currently need a way to have performance profiling management solution in place for neo4j running in windows azure cloud. the benefits of course is on going data analysis and performance statistics, not to mention assisting in debugging issues with performance. the best part of it all, is the agent that collects the data just runs as part of the jvm and the data is automatically uploaded to the website where you can view it online.
new relic account
the first thing you will need to do is create a new relic account at:
once, this is done, you can then download the java agent which will contain two files:
newrelic.jar
newrelic.yml
the yml file contains the license key and the application name to display on the new relic performance dashboard website. when you use new relic it has a trial option, so it is easy to test out.
infrastructure
what we do is store these zip files in blob storage and when the worker role is bootstrapping, it will then download the zip file, and then automatically edit the neo4j config files before starting up neo4j.
neo4j configuration
it is extremely simple to configure the relic agent to run and profile neo4j, all you need to do is edit the neo4j-wrapper.conf file and add this line of code.
wrapper.java.additional.2=-javaagent:..\newrelic.jar
we use a relative path, as we store the newrelic jar relative to the neo4j binaries, so all you need to do is store the newrelic.jar file in a location where neo4j can access it from when starting up.
dashboard
once this has been deployed to the cloud, we then have performance statistic automatically made available to use via the neo4j jvm on the new relic web site!
from here, you can actually click a segment on the graph and drill into the method level calls that occurred in the jvm.
notice that you can get details about the timing of method invocation timings.
comparing environments
what is really cool, is comparing response times between environments, so you can see how fast uat/prod/dev are compared to one another
conclusion
it is a relatively easy task to get application performance
statistics for neo4j running in or out of the cloud and new relic seems
to be a really useful tool with minimal overhead to get up and running,
so i would highly recommend using the combination together. this coupled
with visualjm should provide enough performance data and profiling when
collecting performance data and compiling reports.
source:
http://romikoderbynew.com/2012/01/16/neo4j-application-performance-profiling-management-with-new-relic/
Opinions expressed by DZone contributors are their own.
Comments