Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Storm + Trident and The Holistic Architecture: Using Hadoop for batch and Storm for real time

Storm + Trident and The Holistic Architecture: Using Hadoop for batch and Storm for real time

Yodit Stanton, Freelance Data Scientist, Developer & Systems Architect talk at Data Science London @ds-ldn, 24/0413

Data Science London

April 25, 2013
Tweet

More Decks by Data Science London

Other Decks in Technology

Transcript

  1. The Holistic Architecture Storm + Hadoop @yoditstanton AGILE Holistic Fool

    Proof AGILE When you don't know what you are doing ™
  2. Example TridentTopology topology = new TridentTopology(); TridentState wordCounts = topology.newStream("spout1",

    spout) .each(new Fields("sentence"), new Split(), new Fields ("word")) .groupBy(new Fields("word")) .persistentAggregate(new MemoryMapState. Factory(), new Count(), new Fields("count")) .parallelismHint(6);