Slashdot Mirror


disCERNing Data Analysis

technodummy writes: "Wired is reporting how CERN is driving the Linux-based, EU funded, DataGRID project. And no, they say, it's nothing like Seti@Home. The description on the site of the project is: ' The objective is to enable next generation scientific exploration which requires intensive computation and analysis of shared large-scale databases, from hundreds of TeraBytes to PetaBytes, across widely distributed scientific communities.'" If you're interested in this, check out the Fermi Lab work with LinuxNetworkX data as well as the all-powerful Google search on the Fermi Collider Linux project. As jamie points out, "Colliders produce *amazing* amounts of data in *amazingly* short time periods... on the order of "here's a gigabyte, you have 10 milliseconds to pull whatever's valuable out of it before the next gigabyte arrives".

15 of 82 comments (clear)

  1. shear quantity of data by Alien54 · · Score: 3, Interesting
    This first reaction I have is that I wonder if a distributed model of computing would even be able to make a dent if the amount of data is that big.

    Does anyone have a idea on how much data Seti at home has processed? This would certainly be useful as a yard stick of sorts.

    --
    "It is a greater offense to steal men's labor, than their clothes"
  2. distributed computing by sam@caveman.org · · Score: 5, Interesting

    here's a gigabyte, you have 10 milliseconds to pull whatever's valuable out of it before the next gigabyte arrives.

    let's see. 1 GB in 10 ms works out to 100 GB per second. how recently did GB ethernet come about? and what would the average bandwidth of users be? i would guess much less, but let us assume 100KB per second.

    so you have 107374182400 bytes of data per second. your users can take 102400 bytes per second each. even if everyone was connected directly to your network (no delays or bottlenecks... ha!) you would still require 1048576 users (that is over 1 million).

    and this is not taking into effect sending any data BACK to the source or actual computation time on the users.

    -sam

    --
    burn the computers. go back to the abacus.
    1. Re:distributed computing by fiziko · · Score: 5, Informative

      The data figure stated above is at the actual data collection stage, not the anlysis stage, so it's not being transmitted via ethernet. The project I'm working on (ATLAS, which should be running on the LHC when it gets built in the next few years) has actually found that magnetic media cannot keep up with the data rate, so they had to figure out another means of storing the data while they were sorting it between particle bursts. They decided on a switched capacitor array, since that can keep up. The data actually goes through (IIRC) three stages of analysis before it's finally approved and recorded indefinitely. This filtered data is the stuff that will be transmitted via the Grid.

      --
      - W. Blaine Dowler
      http://www.bureau42.com
    2. Re:distributed computing by PSC · · Score: 3, Informative

      let's see. 1 GB in 10 ms works out to 100 GB per second. how recently did GB ethernet come about? and what would the average bandwidth of users be? i would guess much less, but let us assume 100KB per second.

      Well 100 GB per second is the raw data rate, as read out (heavily parallel) from the detector, i.e. the data rate the DAQ (Data AQuisition) system has to keep up with. That's pretty difficult really, but done completely in hardware: the readout chips have relatively large on-chip buffers for each read-out channel. NOST OF THIS DATA IS DISCARDED RIGHT AWAY from the so-called Level 1 Trigger, whose purpose is to throw away the most obviously uninteresting collisions.

      Since the data rate after L1 is still WAY too large to be all stored, another trigger, unimaginatively called Level 2 Trigger, sorts out even more crap. Since the data rate is lower than for L1, L2 can use more sophisticated algorithms to figure out which event is crap and which is an ever-famous Higgs decay :-)

      One more trigger, Level 3 (you guessed it), is used to even further reduce the amount of data, again with more sophisticated means.

      Still, the required bandwidth is quite impressive. At CDF II, the data rate after Level 3 will be about 75 events per second, at half a meg each, summing up to 30-40 MB per second (well enough to saturate Gbit ethernet), which are all reconstructed right away.Note that for the LHC experiments (CMS, ATLAS) the amount of data is more than an order of magnitude larger than for CDF and D0 (at Fermilab).

      The LHC data will be spread all over the world, using a multi-tier architecture with CERN being Tier 0, and national computing centers as Tier 1 centers, universities being Tier 2, etc. No national computing center will be able to store ALL data, so the idea is that e.g. your Higgs search will be conducted on the U.S. Tier 1 center, B physics on the German Tier 1 center and so on. Obviously not only US scientists will search for the Higgs, so others will also submit analysis jobs on the US Tier 1 and vice versa. To get this working, the GRID is designed. A current implementation is GLOBUS.

      Having said this, it is important to note that right now, the GRID is nowhere near this goal. To submit jobs in this "fire and forget" way is not possible yet. There is a shitload of problems to yet solve, the most important ones: trust and horsepower.

      Trust: you must allow complete strangers to utilize your multi-million dollar cluster, and they haven't even signed a term-of-use form.

      Horsepower: everybody expects to get more CPU cycles out of the GRID than he/she contributes. Obviously, this will not work. (Albeit the load levveling might improve the overall performance.)

      --
      --- The light at the end of the tunnel is probably a burning truck.
  3. Re:EU funding by san · · Score: 5, Informative

    The WWW, developed at CERN by Tim Berners-Lee springs to mind..

  4. Re:Storage to the rescue by fiziko · · Score: 3, Informative

    That data rate doesn't apply to the analysis stage. Magnetic media can't keep up with the data as it comes in, so it has to be sifted through in a first pass to eliminate the boring cases. (These would be the times two particles passed each other in the detector without colliding, and things like that.) Most of the analysis is done later on. (In fact, the analysis I'm doing today is on data collected in August 2000.)

    --
    - W. Blaine Dowler
    http://www.bureau42.com
  5. Re:Storage to the rescue by jamie · · Score: 4, Informative
    BTW, don't hold me to those exact numbers, Hemos copy'n'pasted something I just typed into IRC without reflecting on it too much :)

    The problem is that there's way too much data to write to any storage medium to analyze later. The bandwidth makes hard drives look like tiny, tiny straws. When they throw the switch and the protons or whatever start smacking into each other, they get many collisions in a row, several every millisecond, maybe dozens every millisecond (depending on collider circumference I imagine). The huge array of detectors around the collision point stream out big chunks of data for each collision. The first line of defense is a network of computers that get handed each collision, or parts of it broken down, in round-robin order or something. Their job is to sift through X megabytes very quickly to decide whether there's anything "interesting" in this collision that warrants being remembered. If no flags go up, the data just gets dropped on the floor.

    The datagrid described in the article is, as far as I can tell, set up to process data after that "first line of defense" -- even after dropping the majority of the bits on the floor, there is still a prodigious amount that has to be sifted through, just to check that the Higgs didn't leave a track or something. That's a different sort of engineering project.

    My point was just that, yes, the amount of data involved here really is amazingly large.

  6. Grid computing? by Exmet+Paff+Daxx · · Score: 3, Insightful

    Taking a look at Gridcomputing, it's pretty clear to see that Grid Computing is actually... Distributed Computing. There's no new concept here - so why the new name? It doesn't make sense until you read the sound bite: "I believe grid computing will revolutionize the way we compute".

    Yes, if you can't invent an idea, rename it, and maybe you'll get some credit. What the hell, it's worked before.

    Oh well. More power to them. It looks like a great opportunity for the world to learn that Linux is a powerful tool.

    --
    If guns kill people, then CmdrTaco's keyboard misspells words.
  7. Re:EU funding by pubjames · · Score: 5, Informative

    Has anyone actually seen an IT related EU project that achieved something?

    Government funded work, in the EU, US and internationally, actually drive changes in the IT industry a lot more than most people realise (or perhaps would care to admit).

    For christssakes, the web itself came out of a CERN project! Also many other web standards originated in EU funded projects, for instance JPEG and MPEG. So, the most common formats on the web for text (HTML), images (JPEG), and video (MPEG), all owe something to funding from the EU.

    And of course the Internet itself comes from US government funded projects. Even commonly used business process have resulted from government funded work (project management methodologies).

    Both Americans and Europeans like to bitch about the inefficies of their governments, but the fact of the matter is that if you look at the history of IT, more fundamental innovations come from government funded work than from industry. Of course Bill Gates, Larry Ellison etc. don't want you to think that, but that's the way it is.

  8. Re:Storage to the rescue by sam@caveman.org · · Score: 4, Informative

    or just write it all as it comes in and analyze it later.

    1 GB per 10 ms comes out to 100 GB per second. after 24 hours of experimentation, you find yourself with 8.6 million gigabytes. hard drives are cheap, but not THAT cheap. and even if you had LOTS of 100 GB hard drives, you still need to find a place to PUT 86 thousand of them.

    every 24 hours.

    after 1 week's worth of data collection, you have 600 thousand 100 GB hard drives of data.

    this is why 'store now, analyze later' is not as good of an option for collision data. you have to take that 100 GB of data per second, and first filter and say, 'which of these collisions might be interesting to look at? which ones produced the particles we are trying to study?'

    -sam

    --
    burn the computers. go back to the abacus.
  9. Re:EU funding by pubjames · · Score: 3, Interesting

    Has anyone actually seen an IT related EU project that achieved something? The company I work for has been involved in two EU project proposals so far, and nothing came of either of them -- though they both consumed a large ammount of resources from universities to get through the three failed applications each.

    Perhaps you are expecting the wrong results.

    I have been involved in a couple of large EU funded projects, and have spoken to the project managers about the aims and motives of the projects.

    One principal point is that just because a new successful product/standard/format whatever does not arise from a project, does not mean that it has been a failure.

    The EU is made up of lots of different countries with lots of different types of people speaking different languages and with different working mentalities. This is a major competitive disadvantage for us compared to a country like the US. If a company in San Francisco wants to work with a company in New York, there aren't many barriers to them doing that. In the EU, there are lots of barriers. One of the main aims of EU funded projects (and the EU in general) is to break down these barriers by getting different companies and universities working together across the EU. If new technologies come our of these projects, so much the better, but that's not necessarily the principal aim.

  10. A few Corrections by Roger+W+Moore · · Score: 4, Informative

    Actually the Fermilab article pointed to concerns a cluster of machines used for the L3 trigger of the D0 experiment (of which I'm a member). This actually has very little to do with the GRID since it is used as the final stage of a three stage trigger process which decides when an "interesting" event has been produced by the collider. The previous stage, L2, also uses Linux/Alpha machines but is not really a cluster since these custom built boards sit in various crates of electronics and process only a fraction of the data that the L3 sees (however our time budget at L2 is 100 microseconds compared to L3's 100 milliseconds!).

    However, that said, D0 is heavily involved with the GRID project and has what is arguably one of the first production GRID applications, called SAM. This system essentially manages all of our data files around the entire globe and allows any member to run an analysis job on a selected set of data files. SAM then handles the task of getting those files to the machine where the job is running using whatever means is required (rcp or fetching it from a tape store). SAM also allows remote institutes to add data to the store which is used primarily by large farms of remote Linux boxes which run event simulations. We are also currently working on integrating SAM into our desktop Linux cluster which will allow us to use the incredibly cheap disk and CPU which is available for Linux machines. For more details you can consult the followng web pages:

    http://www-d0.fnal.gov/ - the D0 homepage
    http://d0db.fnal.gov/sam - the SAM homepage

  11. I was there! by GroovBird · · Score: 3, Funny

    I can see it already.


    *** jamie(~who@gives.a.fl.us) joined #slashdot
    <CmdrTaco> lookin' for cyber msg me
    <Hem0s> Hey jamie
    * KatzAWAY is now away [logger:on]
    <jamie> hey hemos
    <Hem0s> whazzup?
    <jamie> oh got this gr8 link here but got no access to the backend right now. can u help me out?
    <Hem0s> sure thing.. what you got?
    <CmdrTaco> jamie a/s/l?
    <jamie> i found this link about this grid computing whatsimagigger and i just thought it's cool ... u know linux and all
    <Hem0s> u uh
    <CmdrTaco> jamie a/s/l?
    <jamie> shut up taco
    <Hem0s> so what's the link?
    <timothy> boooooring
    <jamie> i found it while zapping through wired somehow my browser crashed on me again can u go find it?
    <Hem0s> sure ... hold on a sec
    <CmdrTaco> timothy a/s/l?
    *** CmdrTaco (rob@home) Quit (Connection reset by peer)
    <jamie> gotta tell you i LOVE that post you did on OpenGL a minute ago
    <Hem0s> thx ... can't find it though
    <jamie> it's there somewhere
    *** CmdrTaco (rob@home) joined #slashdot
    *** bill{Taco} sets mode: +b CmdrTaco
    <jamie> ok lemme try again
    <Hem0s> hurry jamie i already fired up mah mozilla dont know how long she stays put
    <CmdrTaco> lookin for a good time? msg me
    *** KatzAWAY left #slashdot
    <jamie> here it is ... CERN is driving the Linux-based, EU funded, DataGRID project.
    <jamie> The objective is to enable next generation scientific exploration which requires intensive computation and analysis of shared large-scale databases, from hundreds of TeraBytes to PetaBytes, across widely distributed scientific communities.'
    <Hem0s> great stuff... lemme copy'npaste here..
    <jamie> somethin bout amazing amounts of stuff in short timed periods ... like you know here's a gig fill it and you've got a split second to pull the goods outtathere
    <Hem0s> you don't mind if i edit this a bit don't you
    <jamie>gotta go bye!
    <Hem0s> you don't mind if i redo this a bit don't you?
    *** jamie left #slashdot (gotta reboot bye)
    <CmdrTaco> lookin for cyber. msg me
    <Hem0s> great ... now i gotta work this
    *** michael sets mode: +ms
    *** You were kicked by michael (spyin on us?)

  12. Virtual science by Sloppy · · Score: 3, Interesting

    This reminds me of an astronomy-related story I saw yesterday. Some projects are generating more data than the people doing the projects can handle.

    --
    As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
  13. From the ATLAS TDR... by krlynch · · Score: 3, Informative

    So I went and found the ATLAS Technical Design Report, which gives all the numbers:

    • The detector itself will experience events at the rate of 10^9 per second.
    • Now, not all of that data even makes it out of the detector; it would correspond to somewhere around 10^11 MB/s (yes, megaBYTES per second) if they tried to dump all the data out to computers, so the detector has a number of levels of "triggering", which is specialized recognition hardware distributed all over the detector that "recognizes" and integrates the information coming off of small clusters of detector elements and decides whether or not there is anything "interesting" in that information, without reference to what is going on in the rest of the detector. This data bubbles up through a small number of layers of triggers that integrate increasingly larger segments of the detector, until it actually comes out and is sent into computers to be "recognized" as actual events.
    • Those events are analyzed by banks of computers, which sift through about 100 events per second, and if they are all stored, it adds up to about 100MB/s (of course not all of those events will be stored, but that is an approximate ceiling on the storage rate).


    The final data rate is expected to be about 1PB/year (1 PB = 10^15 B = 10^7 MB). The LHC collider will probably run for about 25 years, there will be at least two experiments (and maybe up to four) running for most of that time ... you do the math on how much data will be collected and have to be analyzed :-)