Read an Apache Iceberg table into a pandas DataFrame.
Added in version 3.0.0.
Warning
read_iceberg is experimental and may change without warning.
Table identifier.
The name of the catalog.
The properties that are used next to the catalog configuration.
A string that describes the desired rows.
A tuple of strings representing the column names to return in the output dataframe.
If True column matching is case sensitive.
Snapshot ID to time travel to. By default the table will be scanned as of the current snapshot ID.
An integer representing the number of rows to return in the scan result. By default all matching rows will be fetched.
Additional Table properties as a dictionary of string key value pairs to use for this scan.
DataFrame based on the Iceberg table.
Examples
>>> df = pd.read_iceberg( ... table_identifier="my_table", ... catalog_name="my_catalog", ... catalog_properties={"s3.secret-access-key": "my-secret"}, ... row_filter="trip_distance >= 10.0", ... selected_fields=("VendorID", "tpep_pickup_datetime"), ... )
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4