Slashdot Mirror


Keeping Google's In-house Database Ticking

An anonymous reader writes "ZDNet has a short but interesting piece on the what Google did with its 12GB database when it became a challenge for the finance department. The database was split into three, says Chris Schulze, technical program manager for Google — one for the current financial planning projections, one for the actual current data from existing HR and general ledger systems, and one storing historic information. The article says Google has been using a variety of products from Hyperion (recently bought by Oracle) to manage its internal financial systems since 2001."

11 of 79 comments (clear)

  1. Re:WTF WTF? by pasamio · · Score: 5, Insightful

    Its an advertisement! Read the bottom: "Angus Kidman travelled to Orlando as a guest of Hyperion". The thing mentions Hyperion a dozen times, its the old trick of substituting news with press releases written by companies.

    --
    I always wondered where this setting was...
  2. Only 12 GB? by operagost · · Score: 4, Funny

    12 GB? You call that big? I haven't seen an Exchange mail store that small!

    --

    Gamingmuseum.com: Give your 3D accelerator a rest.
  3. Only 12GB? by WapoStyle · · Score: 4, Insightful

    I don't get it, that doesn't seem like much to me.

    We have many databases that are larger here from MSSQL to Oracle, some around the 600GB mark.

    What's so special about Google's database?

    1. Re:Only 12GB? by ms1234 · · Score: 4, Funny

      What's so special about Google's database?

      Google.

    2. Re:Only 12GB? by alxtoth · · Score: 4, Informative

      TFA is about a _cube_ of 12 Gb . Not _relational_ database. Read my other post http://developers.slashdot.org/comments.pl?sid=232 481&threshold=1&commentsort=0&mode=thread&pid=1889 9385#18899875

      --
      http://revj.sourceforge.net
    3. Re:Only 12GB? by hemp · · Score: 5, Informative

      Google's Hyperion database is an OLAP ( on-line analytical processing ) database rather than an OLTP ( on-line transaction processing ) database. OLAP databases are optimized more for processing human queries rather than standard transactions (like most MSSQL and Oracles are). Hyperion incorporates multi-demensional data hierarchies and other data formats that are difficult if not impossible to model in straight SQL(think of a Rubik's cube in 7 demensions).

      The downside of this approach is that it can cause lengthy time periods when the cubes needs to be re-calculated. In Google's case, evidently, this took 48 hours.

      --
      Skip ------ See the latest from http://www.anArchyFortWorth.com
  4. Re:WTF WTF? by eln · · Score: 5, Insightful

    It's not only a press release, it's a very unimpressive one. Hyperion can handle data larger than 12 GB?! Stop the presses! You could manage a company of 50, maybe even 60 employees with that!

    Plus, the "story" says that in order to manage such a large (*cough*) amount of data, the solution was to partition the database into 3 different parts. Now, I can see partitioning it for ease of management along functional areas, but certainly not because it grew to 12 whole gigabytes. If you can't handle chunks of data larger than 4 GB without partitioning it, you're in big trouble.

    I'm guessing the "anonymous reader" who submitted this works for Hyperion.

  5. Err..yeah...it's really a Hyperion ad by kiwimate · · Score: 3, Funny

    This is the bit that gets me in the summary:

    ZDNet has a short but interesting piece

    Interesting to whom, precisely? Hyperion's marketing department? Scant technical details and really only notable for the link to the photos of Google's new Sydney office which are kind of interesting, I suppose, in an "ooh wow shiny...okay what's next?" kind of way.

  6. 12 GB is not 12 gigs. by nathan+s · · Score: 5, Funny

    Obviously that's 12 GOOGLE-Bytes*. Which are far huger than ordinary bytes, or even gigabytes, and therefore much more interesting.

    * Note that GoogleBytes are still in beta and therefore the exact amount of storage in a single GB is yet to be determined.

  7. OLAP is a different beast by alxtoth · · Score: 5, Informative

    12 Gb of _relational_ database falls under "nothing to see, move along". But Essbase http://en.wikipedia.org/wiki/Essbase is doing OLAP http://en.wikipedia.org/wiki/OLAP , which means that data is pre-aggregated across multiple _hierarchies_ . Those 150 users are likely the top management looking at the revenue, or reviewing the budget.
    In Open Source land there are similar projects: http://freshmeat.net/search/?q=olap&section=projec ts

    --
    http://revj.sourceforge.net
  8. Oh, my! by Jerky+McNaughty · · Score: 3, Informative

    So Google used horizontal partitioning to split load across servers? Wow, that's rocket science. None of us in the database community have thought of doing this before. :-) But, if you want to find some news here, you can. One nice thing that Google did recently was to donate their horizontal partitioning code for Hibernate to the open source community. Hibernate Shards definitely needs a lot of work to get it to the point where it does a lot of stuff that people would want, but, hey, release early and often!