GraphRAG storage package.
Project description
GraphRAG Storage
This package provides a unified storage abstraction layer with support for multiple backends including file system, Azure Blob, Azure Cosmos, and memory storage. It features a factory-based creation system with configuration-driven setup and extensible architecture for implementing custom storage providers.
Basic
This example creates a file storage system using the GraphRAG storage package's configuration system. The example shows setting up file storage in a specified directory and demonstrates basic storage operations like setting and getting key-value pairs.
Open the notebook to explore the basic storage example code
Custom Storage
Here we create a custom storage implementation by extending the base Storage class and registering it with the GraphRAG storage system. Once registered, the custom storage can be instantiated through the factory pattern using either StorageConfig or directly via storage_factory, enabling extensible storage solutions for different backends.
Open the notebook to explore the custom storage example code
Details
By default, the create_storage comes with the following storage providers registered that correspond to the entries in the StorageType enum.
FileStorageAzureBlobStorageAzureCosmosStorageMemoryStorage
The preregistration happens dynamically, e.g., FileStorage is only imported and registered if you request a FileStorage with create_storage(StorageType.File, ...). There is no need to manually import and register builtin storage providers when using create_storage.
If you want a clean factory with no preregistered storage providers then directly import storage_factory and bypass using create_storage. The downside is that storage_factory.create uses a dict for init args instead of the strongly typed StorageConfig used with create_storage.
from graphrag_storage.storage_factory import storage_factory
from graphrag_storage.file_storage import FileStorage
# storage_factory has no preregistered providers so you must register any
# providers you plan on using.
# May also register a custom implementation, see above for example.
storage_factory.register("my_storage_key", FileStorage)
storage = storage_factory.create(strategy="my_storage_key", init_args={"base_dir": "...", "other_settings": "..."})
...
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file graphrag_storage-3.0.5.tar.gz.
File metadata
- Download URL: graphrag_storage-3.0.5.tar.gz
- Upload date:
- Size: 18.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b72a3d4fcf86ad5125af64028747605d625b95aca048e9cb5ec52a2e1c97be3
|
|
| MD5 |
226f2e750f4b6e0035655d010789efea
|
|
| BLAKE2b-256 |
1b0af3b08fda9a23d80724b3c68d0c87812ebebbef9d689e177e69b148877b62
|
File details
Details for the file graphrag_storage-3.0.5-py3-none-any.whl.
File metadata
- Download URL: graphrag_storage-3.0.5-py3-none-any.whl
- Upload date:
- Size: 29.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8d78f1d9a4177d53f6d7df7481d256cd09c68f2cd96272c63795b7c4be18058
|
|
| MD5 |
a1ee5abd37479d2d3ceb8617544f56ce
|
|
| BLAKE2b-256 |
9f2ba9ed22fdb4e6f5c38b8af4fde09d90291728bdbe099a772bb50bfbcb19c8
|