Here is my problem: I am trying to debug Apache Cassandra and understand the flow of the app. I.e. when a request is sent by the client, say put(), what methods are called and how the system is working internally.
So, here is what I am thinking:
- Write a main method in the cassandra code which calls the point of entry put() method, put breakpoints in eclipse etc etc OR
- Don't write a main method, simply use regular client (which accesses server via TCP) and "debug" (by reading the log files and understanding the code) using log4j loggers (already implemented in cassandra).
So, my question is, what is the ideal way of debugging such a distributed application?