Question on nativeDataType. In the file test_serd...
# ingestion
w
Question on nativeDataType. In the file test_serde_large.json, I see
Copy code
"nativeDataType": "INTEGER(unsigned=True)"
while in the glue_mces_golden.json, I see
Copy code
"nativeDataType": "int",
Does nativeDataType attribute refer to the data type natively supported by the source systems? OR, are both the formats supported by DataHub ?
g
you can see the description of the field in our docs here:
it represents the way the source system thinks about the data type. Datahub does not try to parse it, Datahub just presents it as a raw string. There is also a
type
that represents a type understood by Datahub!
🙌 1
✅ 1
w
Thank you Gabe!