Neptune computation backend for NetworkX
Project description
nx_neptune
This project offers a NetworkX-compatible backend for Neptune Analytics, enabling users to offload graph algorithm workloads to AWS with no code changes. By using familiar NetworkX APIs, developers can seamlessly scale graph computations on-demand through Neptune Analytics. This approach combines the simplicity of local development with the performance and scalability of a fully managed AWS graph analytics service.
Preview Status: Alpha Release
We're making the nx_neptune plugin library an open-source project, and are releasing it now as an Alpha Preview to the community to gather feedback, and actively collaborate on the project roadmap. We welcome questions, suggestions, and contributions from all community members. At this point in development, the project has not been fully released to the public and is recommended for testing purposes only. We're tracking its production readiness for general availability on the roadmap.
Installation
Note, as part of the preview status, the project is not yet published to PyPI. Please install from wheel or source.
Install it from PyPI
pip install nx_neptune
Build and install from package wheel
# Package the project from source:
python -m pip wheel -w dist .
# Install with Jupyter dependencies from wheel:
pip install "dist/nx_neptune-0.4.0-py3-none-any.whl"
Installation
To install the required nx_neptune dependencies:
git clone git@github.com:awslabs/nx-neptune.git
cd nx-neptune
# install from source directly
make install
Prerequisite
Before using this backend, ensure the following prerequisites are met:
AWS IAM Permissions
The IAM role or user accessing Neptune Analytics must have the following permissions:
These permissions are required to read, write, and manage graph data via queries on Neptune Analytics:
- neptune-graph:ReadDataViaQuery
- neptune-graph:WriteDataViaQuery
- neptune-graph:DeleteDataViaQuery
These permissions are required to import/export between S3 and Neptune Analytics:
- s3:GetObject (for import)
- s3:PutObject (for export)
- s3:ListBucket (for export)
- kms:Decrypt
- kms:GenerateDataKey
- kms:DescribeKey
The ARN with the above permissions must be added to your environment variables
Python Runtime
- Python 3.11 is required.
- Ensure your environment uses Python 3.11 to maintain compatibility with dependencies and API integrations.
Note: As part of the preview status, we are recommending that you run the library using Python 3.11.
Usage
import networkx as nx
G = nx.Graph()
G.add_node("Bill")
G.add_node("John")
G.add_edge("Bill", "John")
r = nx.pagerank(G, backend="neptune")
And run with:
# Set the NETWORKX_GRAPH_ID environment variable
export NETWORKX_GRAPH_ID=your-neptune-analytics-graph-id
python ./nx_example.py
Alternatively, you can pass the NETWORKX_GRAPH_ID directly:
NETWORKX_GRAPH_ID=your-neptune-analytics-graph-id python ./nx_example.py
Without a valid NETWORKX_GRAPH_ID, the examples will fail to connect to your Neptune
Analytics instance. Make sure your AWS credentials are properly configured and
your IAM role/user has the required permissions (ReadDataViaQuery,
WriteDataViaQuery, DeleteDataViaQuery).
Jupyter Notebook Integration
For interactive exploration and visualization, you can use the Jupyter notebook integration.
Features
The notebooks directory contains interactive demonstrations of using Neptune Analytics with NetworkX:
-
pagerank_demo.ipynb: Focused demonstration of the PageRank algorithm
-
bfs_demo.ipynb: Demonstration of Breadth-First Search traversal
-
degree_demo.ipynb: Demonstration of Degree Centrality algorithm
-
label_propagation_demo.ipynb: Demonstration of Label Propagation algorithm
-
closeness_centrality_demo.ipynb: Focused demonstration of the Closeness Centrality algorithm
-
louvain_demo.ipynb: Demonstration of Louvain algorithm
-
s3_import_export_demo.ipynb: A notebook demonstrating the process of importing from and exporting to an S3 bucket.
-
instance_mgmt_lifecycle_demo.ipynb: A notebook to demonstrates the explicit workflow for managing the lifecycle of an instance.
-
instance_mgmt_with_configuration.ipynb: A notebook to demonstrates a simplified approach to instance lifecycle management.
Uploading a package wheel
We recommend uploading your package as a wheel to Jupyter Notebooks.
# Package the project from source:
python -m pip wheel -w dist .
# creates dist/nx_neptune-0.4.0-py3-none-any.whl
Installation
To install the required dependencies for the Jupyter notebook (including the Jupyter dependencies):
# Install with Jupyter dependencies from wheel:
pip install "dist/nx_neptune-0.4.0-py3-none-any.whl[jupyter]"
Running the Jupyter Notebook
A full tutorial is available to run in Neptune Jupyter Notebooks.
To run the Jupyter notebooks:
-
Set your Neptune Analytics Graph ID as an environment variable:
export NETWORKX_GRAPH_ID=your-neptune-analytics-graph-id
-
You will also need to specify the IAM roles that will execute S3 import or export:
export NETWORKX_ARN_IAM_ROLE=arn:aws:iam::AWS_ACCOUNT:role/IAM_ROLE_NAME export NETWORKX_S3_IMPORT_BUCKET_PATH=s://S3_BUCKET_PATH export NETWORKX_S3_EXPORT_BUCKET_PATH=s://S3_BUCKET_PATH
-
Launch Jupyter Notebook:
jupyter notebook notebooks/
-
You can also set the Graph ID directly in the notebook using:
%env NETWORKX_GRAPH_ID=your-neptune-analytics-graph-id
Security
See CONTRIBUTING for more information.
License
This project is licensed under the Apache-2.0 License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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 nx_neptune-0.4.0-py3-none-any.whl.
File metadata
- Download URL: nx_neptune-0.4.0-py3-none-any.whl
- Upload date:
- Size: 66.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a839e18bb496159c11bd47189a25c93dc0ee6577a18f82671284a04e0ce6e01
|
|
| MD5 |
b4eeb7e949f312311f702007f393fb2a
|
|
| BLAKE2b-256 |
6d6891b9e59cfc9a59184b540f670c259e0e2429a65c23b5632be9feb9a15e92
|
Provenance
The following attestation bundles were made for nx_neptune-0.4.0-py3-none-any.whl:
Publisher:
python-publish.yml on awslabs/nx-neptune
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nx_neptune-0.4.0-py3-none-any.whl -
Subject digest:
5a839e18bb496159c11bd47189a25c93dc0ee6577a18f82671284a04e0ce6e01 - Sigstore transparency entry: 450457781
- Sigstore integration time:
-
Permalink:
awslabs/nx-neptune@2e17dada03465db8da4aced13d2bd737e23f9f05 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/awslabs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@2e17dada03465db8da4aced13d2bd737e23f9f05 -
Trigger Event:
release
-
Statement type: