Neo4j squashed#10690
Draft
victorneo4j wants to merge 3 commits into
Draft
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces new database-backed abstractions for large-graph training in PyG, along with a reference Neo4j implementation and documentation. These additions allow PyG to interact with graph topology and features stored in external databases, enabling training on graphs that do not fit in memory and supporting pluggable feature caching. The most important changes are:
New database-backed abstractions and Neo4j implementation:
DatabaseGraphStore,DatabaseFeatureStore, andDatabaseSamplerabstractions for database-backed graph training, with a reference implementation for Neo4j and a runnable Cora notebook underexamples/neo4j.Neo4jFeatureStoreinexamples/neo4j/data/neo4j_feature_store.py, a general implementation ofDatabaseFeatureStorefor Neo4j, supporting configurable attribute mapping, efficient batched queries, and pluggable caching.Documentation and tutorials:
docs/source/tutorial/database_backend.rst) explaining the new database-backed stack, its components, and usage, including how to plug in different databases and cache backends.