Slashdot Mirror


Database Bigwigs Lead Stealthy Open Source Startup

BobB writes "Michael Stonebraker, who cooked up the Ingres and Postgres database management systems, is back with a stealthy startup called Vertica. And not just him, he has recruited former Oracle bigwigs Ray Lane and Jerry Held to give the company a boost before its software leaves beta testing. The promise — a Linux-based system that handles queries 100 times faster than traditional relational database management systems."

27 of 187 comments (clear)

  1. Partners by stoolpigeon · · Score: 5, Informative

    The article mentions that redhat and hp are listed among their partners. i'm not surprised by red hat or informatica (another partner though they aren't mentioned in the article) but i was a little surprised by hp - since they have been trying to get the word out about their own data warehousing and bi stuff. i wonder what that indicates about how they regard this new player.
     
    also interesting is the wikipedia article on Michael Stonebraker if you aren't already familiar with him.

    --
    It's hard to believe that's how Micronians are made. Why don't we see it right now by having you both kiss one another?
    1. Re:Partners by AKAImBatman · · Score: 4, Insightful

      i was a little surprised by hp - since they have been trying to get the word out about their own data warehousing and bi stuff.

      It's called "hedging your bets". If the little company doesn't work out, no big deal. If it does, then HP is in a position to either benefit from contractual relations, acquire it, or squash it. Whichever happens to be their fancy.
  2. When Will This Be Ported? by Anonymous Coward · · Score: 4, Funny

    The question is when will this be ported to a mainstream OS such as Windows?

  3. Everyone, we are moving to ASP now by varmittang · · Score: 3, Funny

    It was LAMP, now its LAVA. Much cooler name.

    --
    -----BEGIN PGP SIGNATURE-----
    12345
    -----END PGP SIGNATURE-----
  4. buzzword enabled by hey · · Score: 3, Insightful

    "grid-enabled, column-oriented relational database management system"
    What does that mean?
    If anything.

    1. Re:buzzword enabled by c0nst · · Score: 5, Informative

      Here you go:
      Stonebraker, Mike; et al. (2005). C-Store: A Column-oriented DBMS (PDF). Proceedings of the 31st VLDB Conference.
      From the paper:
      Among the many differences in its design are: storage of data by column rather than by row, careful coding and packing of objects into storage including main memory during query processing, storing an overlapping collection of columnoriented projections, rather than the current fare of tables and indexes, a non-traditional implementation of transactions which includes high availability and snapshot isolation for read-only transactions, and the extensive use of bitmap indexes to complement B-tree structures
      :-)

    2. Re:buzzword enabled by Jherek+Carnelian · · Score: 5, Funny

      "grid-enabled, column-oriented relational database management system"
      What does that mean?

      Uh, a spreadsheet?
    3. Re:buzzword enabled by perfczar · · Score: 5, Informative

      Buzzwords, yes, but they have a little bit of meaning left. Grid-enabled means that it works on a "shared nothing" environment, that you can use a networked cluster of commodity computers if one isn't enough to hold the data, and so on. This is in contrast to using one big huge box (big computer, big storage array, or whatever). Of course many databases are similarly grid-enabled. Column-oriented means that data is stored on disk by column, this makes it fast to process a subset of columns that touch lots of rows, as is typical in data warehouse applications. This is a key architectural difference among databases; Oracle, DB2, etc., are "row stores", while Sybase IQ, Vertica, etc. are "column stores". Note: I work for Vertica Systems

    4. Re:buzzword enabled by ChrisA90278 · · Score: 4, Informative
      Column oriented means it can read data in from one column from the disk without pulling in all the other bytes in the row. Possibly much less reduced I/O bandwidth usage depending on the query. (kind of like if you turned the normal file structure side ways.)

      Grid enabled - This means the DBMS can make use of a large distributed group of computers and potentially have access to a huge amount of computing power. The typical DBMS runs on at beat a multi-processor server. Thi sis kind of like a DBMS server running a a "seti at home" type network.

      Going solely by the developer's reputation, this could be a big deal. He is not some random hacker. He is a well known university professor who has several times in the past lead projects that have been revolutionary and turned the field around. His ideas are widely used Still "100X faster" is a big claim. Lots of smart people have been working on DMBSes for many years, a two order of magnitude improvement is a "I will have to see it to believe it" type claim

      I'm using PostgreSQL to handle some telemetry data right now. If my 45 minute run times can be reduced to seconds, I'll be happy.

    5. Re:buzzword enabled by Kjella · · Score: 3, Insightful

      Under ideal conditions, I don't have a problem seeing that:

      1. Make up lots of 100-column+ tables
      2. Select one column from each table
      3. If you're IO bound, you should now see about a 100:1 increase

      However, most real data models don't work that way. Usually you put stuff that's useful at the same time in the same table, in which case it probably won't make much of a difference.

      --
      Live today, because you never know what tomorrow brings
  5. Perfect timing by defile · · Score: 3, Interesting

    Loading a million random records out of a set of one hundred million records is an enormously difficult task for an RDBMS on commodity hardware (e.g. magnetic rotating disks). This is a more common task than you would think. ORM systems backed by an RDBMS, such as Ruby on Rails, Django, Hibernate, have exactly this requirement and will only demand more as these models become more mainstream. Think about what search engines have to do: find millions among billions, all to show a user a dozen.

    These problems are solvable now, but there's a lot of duplication of effort going on that a smart database vendor could solve for us.

  6. Doesn't "stealthy" require some stealth anymore? by georgewilliamherbert · · Score: 3, Insightful

    Vertica's website has had all the details about what they're doing for months. They've had a Wikipedia article for a long time.

    This is some new Network World definition of "Stealthy", apparently...

  7. Re:Column oriented databases by georgewilliamherbert · · Score: 4, Informative

    KX is primarily in-memory. The competing column-oriented product is primarily Sybase IQ, which has been on the market for a while now.

  8. Best of luck by 140Mandak262Jamuna · · Score: 5, Insightful
    I dont want to rain in their parade. But typically whenever people start with a spec like "100 times better than what they can do", they assume they will continue to perform at current levels while these people take years to develop and mature their new technology. In the real world, the traditional methods too improve and unless they can maintain a 100x lead continually the new technology flops.

    What happened to Gallium Arsenide replacing silicon? What happened to solid state memory completely repalcing magnetic disks? Technology field is littered with such fiascos.

    --
    sed -e 's/Chuck Norris/Rajnikant/g' joke > fact
  9. Re:Column oriented? by AKAImBatman · · Score: 4, Informative

    A column oriented relational database? I'd like some more details on how that works.

    http://en.wikipedia.org/wiki/Column-oriented_DBMS

    It's basically an optimization of the current data access patterns. Databases have been row-oriented for decades, because they evolved from fixed width flat files. Once we eliminated COBOL-style accesses to databases, the full row data became less important. It became far more important to be able to scan a column as fast as possible. For example:

    select * from names where lastname LIKE '%son'

    The above query might have an index available to find what it needs. But it's just as likely that the database will need to do a table-scan. Since table-scans involve looking through every record in the database, you can imagine that it would be faster to just load the lastname column rather than loading every row in the database just to discard 90% of that data.
  10. Re:Column oriented? by georgewilliamherbert · · Score: 5, Insightful

    A column oriented relational database? I'd like some more details on how that works.

    Column oriented is easy. Imagine a database as a set of tables, each of which has rows of data records, in organized columns (column 1 = "User name", column 2 = "User ID", column 3 = "Favorite slashdot admin", etc).

    Normal row-oriented databases store records which have a row of the data: "User name", "User ID", "Favorite slashdot admin" for user row #12345.

    Column oriented databases store records which have a column of the data: "User name" for user rows 1-100,000; "User ID" for user rows 1-100,000; etc.

    Updates are faster with row-oriented: you access the last record file and append something, or access an intermediate record file and update one "row" across.

    Searches are faster with column-oriented: you access the record file for "Favorite slashdot admin" and look for entries which say "Phred", and then output the list of rows of data which match. Instead of going through the whole database top to bottom for the search, you just search on the one column. If you have 100 columns of data, then you look through 1/100th of the total data in the search. To pull data out, you then have to look at all the column files and index in the right number of records, but that goes relatively quickly.

    Indexes are useful, but column-oriented is more efficient in some ways. You don't have to maintain the indexes, and can just automatically search any column without having indexed it, in a reasonably efficient manner.

    Column-oriented also lets you compress the data on the fly efficiently: all the records are the same data type (string, integer, date, whatever) and lists of same data types compress well, and uncompress typically far faster than you can pull them off disk, so you can just automatically do it for all the data and save both speed and time...

  11. You're bound to get some strange looks... by Anonymous Coward · · Score: 5, Funny

    during the transition when you tell people your business runs on LAVA-LAMP technology.

  12. Speculation by cartman · · Score: 5, Informative

    I noticed that Stonebraker is the company founder. Stonebraker has contributed extensively to database research over the years.

    He's known for advocating the "shared-nothing" approach to parallel databases. The shared-nothing approach means that nodes in the parallel database don't attempt memory or cache synchronization, and each node has its own commodity disk array. In a shared-nothing parallel database, the data is "partitioned" across servers. So, for example, rows with id's 1-10 would be on the first server, 11-20 on the second server, etc. Executing the SQL query "select * from table where id < 1000" would send requests to multiple commodity servers and then aggregate the results. The optimizer is modified to take into account network bandwidth and latency, etc.

    My guess on what they're doing: they're working on a shared-nothing parallel RDBMS with an in-memory client similar to Oracle TimesTen.

    The are a few drawbacks to the shared-nothing approach: 1) the RDBMS software is more difficult to implement; 2) since the data is partitioned, any transaction that updates tuples on more than one database node requires a two-phase distributed commit, which is much more expensive; and 3) some queries are more expensive because they require transmitting large amounts of data over the network rather than a memory bus, and in rare cases that network overhead cannot be eliminated by the optimizer.

    The advantage, of course, is linear scalability by adding commodity hardware. No more need for $3M+ boxes.

  13. Given that... by CodeShark · · Score: 4, Informative
    MonetDb, is similarly configured as a column oriented AND Open source, and appears to clean the clock of most of the major commercial and Open Source databases for huge data set queries, (see the benchmarks at axyana.com for an example), where is Vertica's market advantage supposed to be?


    By which I am asking that while Vertica is obviously well-researched and well funded as a start up, MonetDB is well-researched, already benchmarked and available now.. So why would I wait to invest my time, energy, and $$ in a proprietary future product rather than the time and energy, etc. to develop market leadership in my chosen corporate area in the present?

    --
    ...Open Source isn't the only answer -- but it's almost always a better value than the alternatives...
    1. Re:Given that... by perfczar · · Score: 5, Informative

      Here are a few of the technical reasons one might choose Vertica over Monet; I'll not get into business issues.


      Vertica is designed for large amounts of data, and is optimized for disk based systems. Monet does benchmarks against TPC-H Scale Factor 5 (30 million records, an amount which would fit in main memory) running on Postgres; Vertica does TPC-H Scale factor 1000 (6 billion records) against commercial row stores tuned by people who do such work to make a living.

      Vertica runs on multi-node clusters, allowing the cluster to grow as the amount of data grows, while Monet doesn't scale to multiple machines.

      There are numerous differences in the transaction systems, update architecure, tolerance of hardware failure, and so on, that make Vertica better suited to the enterprise DW market.


      Note: I work for Vertica
  14. Re:Omg top 5 by bob.appleyard · · Score: 3, Funny

    You're 100 times faster than anyone else, obviously.

    --
    How dare you be so modest!! You conceited bastard!!
  15. Re:open source? by perfczar · · Score: 3, Informative

    Vertica is not open source. Not sure where the confusion came from.

    Note: I work for Vertica.

  16. Google uses this approach by russryan · · Score: 3, Informative

    See http://en.wikipedia.org/wiki/Bigtable for a description of Google's column oriented database.

    1. Re:Google uses this approach by ramakant · · Score: 3, Informative

      Here's a good comparison of the two approaches:
      http://glinden.blogspot.com/2006/05/c-store-and-go ogle-bigtable.html
      (per my post below, Vertica is a commercial version of MIT C-Store: http://db.lcs.mit.edu/projects/cstore/ )

  17. Re:Sounds great but.. by perfczar · · Score: 4, Informative
    The Vertica business model is to sell a database engine (software to store and query data). Clearly use of standard interfaces is important, otherwise nobody would be able to make use of the product (which really ends up being a component of a larger system or strategy) without going to a heap of trouble. So of course Vertica has:

    • A JDBC driver
    • An ODBC driver
    • An interactive SQL client
    • A growing list of tested integrations with other software

    Note: I work for Vertica
  18. This is a commercial version of MIT C-Store by ramakant · · Score: 4, Informative

    This looks like it will be a commercial version of the Michael Stonebraker and MIT developed C-Store column-oriented:
    - Web site: http://db.lcs.mit.edu/projects/cstore/
    - Wikipedia Entry: http://en.wikipedia.org/wiki/C-Store
    They distribute the source with a fairly liberal license, so this looks like something the open source community could pick up and run with.

  19. Big claims are backed by Virtual_Raider · · Score: 3, Informative

    Still "100X faster" is a big claim. Lots of smart people have been working on DMBSes for many years, a two order of magnitude improvement is a "I will have to see it to believe it" type claim

    Oh ye of little faith, here i present thee with The Facts. Or a paper at the very least: One size fits all? a Benchmark

    --
    +Raider of the lost BBS