Supported Parquet column types
Parquet data types:
-
NULL
-
BOOLEAN
-
FLOAT
-
DOUBLE
-
STRING
-
SIGNED INTEGER: UINT8, UINT16, UINT32, UINT64
-
MAP: Only supports one-level. Does not support nested.
-
LIST: Only supports one-level. Does not support nested.
Neptune -specific:
-
A column type
Anyis supported in the user columns. AnAnytype is a type “syntactic sugar” for all of the other types we support. It is extremely useful if a user column has multiple types in it. The payload of anAnytype value is a list of json strings as follows:"{""value"": ""10"", ""type"": ""Int""};{""value"": ""1.0"", ""type"": ""Float""}", which has avaluefield and atypefield in each individual json string. The column header of anAnytype ispropertyname:Any. The cardinality value of anAnycolumn isset, meaning that the column can accept multiple values.-
Neptune Analytics supports the following types in an
Anytype:Bool(orBoolean),Byte,Short,Int,Long,UnsignedByte,UnsignedShort,UnsignedInt,UnsignedLong,Float,Double,Date,dateTime, andString. -
Vectortype is not supported inAnytype. -
Nested
Anytype is not supported. For example,"{""value"": "{""value"": ""10"", ""type"": ""Int""}", ""type"": ""Any""}".
-