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

Writing ORC format big table causes OOM - too many fixed sized stream buffers

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Patch Available
    • Major
    • Resolution: Unresolved
    • None
    • None
    • None

    Description

      ORC writer keeps multiple out steams for each column. Each output stream is allocated fixed size ByteBuffer (configurable, default to 256K). For a big table, the memory cost is unbearable. Specially when HCatalog dynamic partition involves, several hundreds files may be open and writing at the same time (same problems for FileSinkOperator).

      Global ORC memory manager controls the buffer size, but it only got kicked in at 5000 rows interval. An enhancement could be done here, but the problem is reducing the buffer size introduces worse compression and more IOs in read path. Sacrificing the read performance is always not a good choice.

      I changed the fixed size ByteBuffer to a dynamic growth buffer which up bound to the existing configurable buffer size. Most of the streams does not need large buffer so the performance got improved significantly. Comparing to Facebook's hive-dwrf, I monitored 2x performance gain with this fix.

      Solving OOM for ORC completely maybe needs lots of effort , but this is definitely a low hanging fruit.

      Attachments

        1. HIVE-10036.9.patch
          14 kB
          Selina Zhang
        2. HIVE-10036.8.patch
          15 kB
          Selina Zhang
        3. HIVE-10036.7.patch
          15 kB
          Selina Zhang
        4. HIVE-10036.6.patch
          15 kB
          Selina Zhang
        5. HIVE-10036.5.patch
          15 kB
          Selina Zhang
        6. HIVE-10036.3.patch
          14 kB
          Selina Zhang
        7. HIVE-10036.2.patch
          13 kB
          Selina Zhang
        8. HIVE-10036.1.patch
          13 kB
          Selina Zhang

        Issue Links

          Activity

            People

              selinazh Selina Zhang
              selinazh Selina Zhang
              Votes:
              0 Vote for this issue
              Watchers:
              9 Start watching this issue

              Dates

                Created:
                Updated: