Skip to content

Commit

Permalink
Fix a typo in docs: arrow-pandas.md (#992)
Browse files Browse the repository at this point in the history
  • Loading branch information
snehangsude authored Feb 23, 2024
1 parent ffac99c commit b2e07be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ or [book a call](https://calendar.app.google/kiLhuMsWKpZUpfho6) with our support
:::

You can load data directly from an Arrow table or Pandas dataframe.
This is supported by all destinations, but recommended especially when using destinations that support the `parquet` foramt natively (e.g. [Snowflake](../destinations/snowflake.md) and [Filesystem](../destinations/filesystem.md)).
This is supported by all destinations, but recommended especially when using destinations that support the `parquet` file format natively (e.g. [Snowflake](../destinations/snowflake.md) and [Filesystem](../destinations/filesystem.md)).
See the [destination support](#destination-support-and-fallback) section for more information.

When used with a `parquet` supported destination this is a more performant way to load structured data since `dlt` bypasses many processing steps normally involved in passing JSON objects through the pipeline.
Expand Down Expand Up @@ -151,4 +151,4 @@ pipeline.run(df.to_dict(orient='records'), table_name="orders")
# yield arrow table
pipeline.run(table.to_pylist(), table_name="orders")
```
Both Pandas and Arrow allow to stream records in batches.
Both Pandas and Arrow allow to stream records in batches.

0 comments on commit b2e07be

Please sign in to comment.