580 likes | 749 Views
Atropos. Comp 415 Project In partnership with JPMorganChase. Introductory Remarks. COMP 415 Class: Brad Chelsea Dave Felipe Hubert Matt Sohum Dr. Wong Jacy Grannis. A Word From Our Sponsors.
E N D
Atropos Comp 415 Project In partnership with JPMorganChase
Introductory Remarks • COMP 415 Class: • Brad • Chelsea • Dave • Felipe • Hubert • Matt • Sohum • Dr. Wong • Jacy Grannis
A Word From Our Sponsors... JacyGrannis has been our customer contact within JPMorganChase. He is a Rice Computer Science graduate and works in JPMorgan’s Houston office.
COMP 415—Summary • Software engineering • Real customer, real experience • Team environment • Communication • Organization
COMP 415—The benefits • Team programming experience is sought by employers and not often found in undergraduates • Saves on-the-job learning time • Industry exposure
COMP 415—The sequence • COMP 410 • COMP 415 • Teaching assistant for both courses • Need more courses
Atropos …semester in review
Atropos—Success • Correlation • Network View • Single Edge View • Remote communication
Atropos—Mistakes • Teams change • Individuals change • Team structure • Small team • Proxy pattern • Integration
System Requirements …an Atropos primer
System Requirements—Correlation • Track messages as they travel between servers • Different systems have different message formats • Messages have no fixed unique ID • Servers may split and merge messages
System Requirements—Scalability • System must handle thousands of messages per second • Components may run on separate machines • Concurrency • Asynchronous communications
System Requirements—Recoverability • Failure of one component should not bring the system down • Failure detection • Component restart • Restore component state • Replay dropped messages
System Design …the view from the top
Distributed system Service-oriented architecture (SOA) Component registration Atropos System Design—Unregistered
Distributed system Service-oriented architecture (SOA) Component registration Atropos System Design—Registered
Design—Abstraction and the Proxy Pattern • Allows flexible system configuration • Beneficial for testing purposes and agile development • Unbiased by transfer protocol
Design—Dynamic Correlation • Concepts of finding matches from message organization are logically distinct • Decouple algorithm from data • Correlation engines organize messages and use strategies to fine matches • Changing strategies at runtime enables intelligent load balancing and independence from JPM system configuration
Atropos Demo …which will totally work
Start Controller and Router • Initialize the controller • Service that manages the system • Router registers with controller
Start Correlation Engine, Data Client • Correlation Engines and Data Clients run in their own JVMs • On startup, they register with the controller • Controller configures them to connect them into the system
Starting View System • View Provider • View Client
Connect and Start Client • View Client connects to system • Requests data
Changing Sources and Edges • Utilize IAdmin API to add sources • Dynamically add and remove edges • Check system status after updates
Single Edge Latency View • Access • Dialog • Clicking edge in Dashboard View • Display • Time-chunk average of latency • Scalable to different time periods • Static or updatable
Custom Latency View • See correlation during a specific time window
Uncorrelated Messages • Messages change, machine connections change, parts of the topography may disappear completely • Messages will stop correlating • View uncorrelated messages over a period of time • Updates live (currently every 30 secs)
Disconnect View Client • Disconnect a view client currently registered • View client is unregistered • Future updates are no longer sent
Remote Communication …bridging gaps
Remote Communication • No guarantee that components are on the same machine • Need a way to communicate between multiple components • Solution must be • Scalable • Flexible • Pluggable
Mule—Benefits • Provides a scalable package solution • Open source • Provides a flexible framework that can adapt to any architecture • Can tie into many messaging protocols
Mule—Hardships • Little support and documentation • Remote method invocation can cause problems • Needs to be scaled to work effectively
Functional Communication • Proxy pattern connects components • Controller as an object on the Mule server • Mule support behind remote calls abstracted out
Data Client …the beginning of it all
Data Client—Goals • Vehicle for getting messages into the system • Robust • Abstract • Recoverable • Extensible
Data Client—Message Sources • Entry point for messages • Accepts messages with a simple API • accept(message)... too easy? • Next step: router
Data Client—Abstract • Messages can come from anywhere • Log parsers • Applications producing the messages • Manual API calls • Abstracting out information about the source is crucial for interoperability
Data Client—Recoverability • Router dies... • What happens to messages that have been sent through the Data Client but are dropped? • Take a lesson from Tivo! • Store information about messages that have been seen and replay! • Controller detects failure in the system • Can ynchronize all the modules in the system by replaying the Data Client
Data Client—Extensibility • Multiple sources can send information to one data client • Require that incoming messages are be tagged with their source ID • Data Clients can send to other Data Clients • Available for common special processing that can be added at run time • Added and removed via registration at run time with the Controller
Router …the grunt work
Router—Role • Data Clients are only aware of Router • All messages simply forwarded • Router responsible for mapping Data Clients to Correlation Engines • Data Client to Correlation Engine mapping not 1:1 • One-to-many relationship
Router—Extensibility • Routers can make use of the composite pattern • Updated dynamically at runtime by the Controller • Whenever Data Clients or Correlation Engines register (or unregister), the router must reflect those changes
Correlation Engine …the workhorse
Correlation Engine—Role • Organizes messages received • Applies correct strategies between various sources, as determined by the system’s IAdmin • Writes correlation information to a memory store • Keeps a store of what messages have been received for replay purposes
Correlation Engine—Design Concerns • Configurability • Should handle addition of sources and new rules at runtime • Concurrency • Thread safety • Use of concurrency to take advantage of multi-cores
Correlation Engine—Implementation Details • Makes messages appear to have been received in order; facilitates strategy implementation • Configurable correlation strategies • Handle rules for correlation • Insulated from issues related to system configuration, message order, etc.
User Interface …the pretty side
View Client—Technologies • Eclipse RCP Application • Java Universal Network/Graph (JUNG) framework • JFreeChart framework
Eclipse RCP Application—Positives • Portability • Integration with current JPMorgan systems • Faster development on Eclipse IDE • Powerful framework simplifies component connections
Eclipse RCP Application—Negatives • SWT less popular than AWT • Fewer resources for help • Steep learning curve