Metadata Changes and Versioning

The config file 'orctypemappingdef.yml' contains the data type mapping for values read from Kafka stream and written out to HDFS.

# ORC settings
dataserdetype: ORC
mapping:
  - STRING
    - !dbtypeMapping
    dbtype: DB2
    type: [CHAR, VARCHAR, XML]
  - TIMESTAMP
    - !dbtypeMapping
    dbtype: DB2
    type: [TIMESTAMP]
  - DATE
    - !dbtypeMapping
    dbtype: DB2
    type: [DATE]
  - DECIMAL
    - !dbtypeMapping
    dbtype: DB2
    type: [DECIMAL]
  - INT
    - !dbtypeMapping
    dbtype: DB2
    type: [SMALLINT, INTEGER]
  - BIGINT
    - !dbtypeMapping
    dbtype: DB2
    type: [BIGINT, LONG]

Last updated