Uploaded image for project: 'Kudu'
  1. Kudu
  2. KUDU-3353

Add an immutable attribute on column schema

    XMLWordPrintableJSON

Details

    • New Feature
    • Status: In Review
    • Major
    • Resolution: Unresolved
    • None
    • None
    • api, server
    • None

    Description

      motivation

      In some usage scenarios, Kudu table has a column with semantic of "create time", which means it represent the create timestamp of the row. The other columns have the similar semantic as before, for example, the user properties like age, address, and etc.

      Upstream and Kudu user doesn't know whether a row is exist or not, and every cell data is the lastest ingested from, for example, event stream.

      If without the "create time" column, Kudu user can use UPSERT operations to write data to the table, every columns with data will overwrite the old data. But if with the "create time" column, the cell data will be overwrote by the following UPSERT ops, which is not what we expect.

      To achive the goal, we have to read the column out to judge whether the column is NULL or not, if it's NULL, we can fill the row with the cell, if not NULL, we will drop it from the data before UPSERT, to avoid overwite "create time".

      It's expensive, is there a way to avoid a read from Kudu?

      Resolvation

      We can implement column schema with semantic of "update if null". That means cell data in changelist will update the base data if the latter is NULL, and will ignore updates if it is not NULL.

      So we can use Kudu similarly as before, but only defined the column as "update if null" when create table or add column.

       

      Attachments

        Activity

          People

            acelyc111 Yingchun Lai
            laiyingchun Yingchun Lai
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated: