Uploaded image for project: 'Hive'
  1. Hive
  2. HIVE-2246

Dedupe tables' column schemas from partitions in the metastore db

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 0.8.0
    • Metastore
    • None
    • This makes an incompatible change in the metastore DB table schema from previous versions (<0.8). Older metastores created with previous versions of Hive will need to be upgraded with the supplied scripts.
    • metastore, schema, JDO

    Description

      Note: this patch proposes a schema change, and is therefore incompatible with the current metastore.

      We can re-organize the JDO models to reduce space usage to keep the metastore scalable for the future. Currently, partitions are the fastest growing objects in the metastore, and the metastore keeps a separate copy of the columns list for each partition. We can normalize the metastore db by decoupling Columns from Storage Descriptors and not storing duplicate lists of the columns for each partition.

      An idea is to create an additional level of indirection with a "Column Descriptor" that has a list of columns. A table has a reference to its latest Column Descriptor (note: a table may have more than one Column Descriptor in the case of schema evolution). Partitions and Indexes can reference the same Column Descriptors as their parent table.

      Currently, the COLUMNS table in the metastore has roughly (number of partitions + number of tables) * (average number of columns pertable) rows. We can reduce this to (number of tables) * (average number of columns per table) rows, while incurring a small cost proportional to the number of tables to store the Column Descriptors.

      Please see the latest review board for additional implementation details.

      Attachments

        1. HIVE-2246.2.patch
          15 kB
          Sohan Jain
        2. HIVE-2246.3.patch
          23 kB
          Sohan Jain
        3. HIVE-2246.4.patch
          29 kB
          Sohan Jain
        4. HIVE-2246.8.patch
          29 kB
          Sohan Jain

        Issue Links

          Activity

            People

              sohanjain Sohan Jain
              sohanjain Sohan Jain
              Votes:
              0 Vote for this issue
              Watchers:
              7 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: