Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mongodb-labs/mongo-arrow
MongoDB integrations for Apache Arrow. Export MongoDB documents to numpy array, parquet files, and pandas dataframes in one line of code.
https://github.com/mongodb-labs/mongo-arrow
apache-arrow arrow mongodb numpy-arrays pandas-dataframe parquet-files python
Last synced: 4 days ago
JSON representation
MongoDB integrations for Apache Arrow. Export MongoDB documents to numpy array, parquet files, and pandas dataframes in one line of code.
- Host: GitHub
- URL: https://github.com/mongodb-labs/mongo-arrow
- Owner: mongodb-labs
- License: apache-2.0
- Created: 2021-01-19T20:27:58.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-06T04:33:19.000Z (25 days ago)
- Last Synced: 2025-01-19T15:05:37.878Z (11 days ago)
- Topics: apache-arrow, arrow, mongodb, numpy-arrays, pandas-dataframe, parquet-files, python
- Language: Python
- Homepage: https://mongo-arrow.readthedocs.io
- Size: 446 KB
- Stars: 94
- Watchers: 29
- Forks: 13
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# mongo-arrow
Tools for using Apache Arrow with MongoDB
## Apache Arrow
We utilize Apache Arrow to offer fast and easy conversion of MongoDB query result sets to multiple numerical data formats popular among developers including NumPy arrays, Pandas DataFrames, parquet files, CSV, and more.
We chose Arrow for this because of its unique set of characteristics:
- language-independent
- columnar memory format for flat and hierarchical data,
- organized for efficient analytic operations on modern hardware like CPUs and GPUs
- zero-copy reads for lightning-fast data access without serialization overhead
- it was simple and fast, and from our perspective, Apache Arrow is ideal for processing and transporting of large datasets in high-performance applications.As reference points for our implementation, we also took a look at BigQuery’s Pandas integration, pandas methods to handle JSON/semi-structured data, the Snowflake Python connector, and Dask.DataFrame.
## How it Works
Our implementation relies upon a user-specified data schema to marshall query result sets into tabular form.
Example```py
from pymongoarrow.api import Schemaschema = Schema({"_id": int, "amount": float, "last_updated": datetime})
```You can install PyMongoArrow on your local machine using Pip:
`$ python -m pip install pymongoarrow`You can export data from MongoDB to a pandas dataframe easily using something like:
```py
df = production.invoices.find_pandas_all({"amount": {"$gt": 100.00}}, schema=invoices)
```Since PyMongoArrow can automatically infer the schema from the first batch of data, this can be
further simplified to:```py
df = production.invoices.find_pandas_all({"amount": {"$gt": 100.00}})
```## Final Thoughts
This library is in the early stages of development, and so it's possible the API may change in the future -
we definitely want to continue expanding it. We welcome your feedback as we continue to explore and build this tool.