Package org.apache.spark.sql.util
Class ArrowUtils
Object
org.apache.spark.sql.util.ArrowUtils
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic DataType
fromArrowField
(org.apache.arrow.vector.types.pojo.Field field) static StructType
fromArrowSchema
(org.apache.arrow.vector.types.pojo.Schema schema) static DataType
fromArrowType
(org.apache.arrow.vector.types.pojo.ArrowType dt) static org.apache.arrow.memory.RootAllocator
static org.apache.arrow.vector.types.pojo.Field
toArrowField
(String name, DataType dt, boolean nullable, String timeZoneId, boolean largeVarTypes) Maps field from Spark to Arrow.static org.apache.arrow.vector.types.pojo.Schema
toArrowSchema
(StructType schema, String timeZoneId, boolean errorOnDuplicatedFieldNames, boolean largeVarTypes) Maps schema from Spark to Arrow.static org.apache.arrow.vector.types.pojo.ArrowType
toArrowType
(DataType dt, String timeZoneId, boolean largeVarTypes) Maps data type from Spark to Arrow.
-
Constructor Details
-
ArrowUtils
public ArrowUtils()
-
-
Method Details
-
rootAllocator
public static org.apache.arrow.memory.RootAllocator rootAllocator() -
toArrowType
public static org.apache.arrow.vector.types.pojo.ArrowType toArrowType(DataType dt, String timeZoneId, boolean largeVarTypes) Maps data type from Spark to Arrow. NOTE: timeZoneId required for TimestampTypes -
fromArrowType
-
toArrowField
public static org.apache.arrow.vector.types.pojo.Field toArrowField(String name, DataType dt, boolean nullable, String timeZoneId, boolean largeVarTypes) Maps field from Spark to Arrow. NOTE: timeZoneId required for TimestampType -
fromArrowField
-
toArrowSchema
public static org.apache.arrow.vector.types.pojo.Schema toArrowSchema(StructType schema, String timeZoneId, boolean errorOnDuplicatedFieldNames, boolean largeVarTypes) Maps schema from Spark to Arrow. NOTE: timeZoneId required for TimestampType in StructType- Parameters:
schema
- (undocumented)timeZoneId
- (undocumented)errorOnDuplicatedFieldNames
- (undocumented)largeVarTypes
- (undocumented)- Returns:
- (undocumented)
-
fromArrowSchema
-