| [ Web Proxy ] |
| Viewing: https://arrow.apache.org/docs/python/generated/../generated/pyarrow.dataset.HivePartitioning.html | [Back] [Original] |
Bases: KeyValuePartitioning
A Partitioning for /$key=$value/ nested directories as found in Apache Hive.
Multi-level, directory based partitioning scheme originating from Apache Hive with all data files stored in the leaf directories. Data is partitioned by static values of a particular column in the schema. Partition keys are represented in the form $key=$value in directory names. Field order is ignored, as are missing or unrecognized field names.
For example, given schema<year:int16, month:int8, day:int8>, a possible path would be /year=2009/month=11/day=15.
SchemaThe schema that describes the partitions present in the file path.
dict[str, Array]If the type of any field of schema is a dictionary type, the corresponding entry of dictionaries must be an array containing every value which may be taken by the corresponding column or an error will be raised in parsing.
str, default __HIVE_DEFAULT_PARTITION__If any field is None then this fallback will be used as a label
str, default uriAfter splitting paths into segments, decode the segments. Valid values are uri (URI-decode segments) and none (leave as-is).
Examples
>>> from pyarrow.dataset import HivePartitioning
>>> partitioning = HivePartitioning(
... pa.schema([("year", pa.int16()), ("month", pa.int8())]))
>>> print(partitioning.parse("/year=2009/month=11/"))
((year == 2009) and (month == 11))
Methods
|
|
|
Discover a HivePartitioning. |
|
Convert a filter expression into a tuple of (directory, filename) using the current partitioning scheme |
|
Parse a path into a partition expression. |
Attributes
The unique values for each partition field, if available. |
|
The arrow Schema attached to the partitioning. |
The unique values for each partition field, if available.
Those values are only available if the Partitioning object was created through dataset discovery from a PartitioningFactory, or if the dictionaries were manually specified in the constructor. If no dictionary field is available, this returns an empty list.
Discover a HivePartitioning.
FalseWhen inferring a schema for partition fields, yield dictionary encoded types instead of plain. This can be more efficient when materializing virtual columns, and Expressions parsed by the finished Partitioning will include dictionaries of all unique inspected values for each field.
int, default 0Synonymous with infer_dictionary for backwards compatibility with 1.0: setting this to -1 or None is equivalent to passing infer_dictionary=True.
str, default __HIVE_DEFAULT_PARTITION__When inferring a schema for partition fields this value will be replaced by null. The default is set to __HIVE_DEFAULT_PARTITION__ for compatibility with Spark
Schema, default NoneUse this schema instead of inferring a schema from partition values. Partition values will be validated against this schema before accumulation into the Partitionings dictionary.
str, default uriAfter splitting paths into segments, decode the segments. Valid values are uri (URI-decode segments) and none (leave as-is).
PartitioningFactoryTo be used in the FileSystemFactoryOptions.
Convert a filter expression into a tuple of (directory, filename) using the current partitioning scheme
Examples
Specify the Schema for paths like /2009/June:
>>> import pyarrow as pa
>>> import pyarrow.dataset as ds
>>> import pyarrow.compute as pc
>>> part = ds.partitioning(pa.schema([("year", pa.int16()),
... ("month", pa.string())]))
>>> part.format(
... (pc.field("year") == 1862) & (pc.field("month") == "Jan")
... )
('1862/Jan', '')
The arrow Schema attached to the partitioning.
| Web Proxy Viewer | New URL | Original Page |