Skip to main content

No project description provided

Project description

Neo4j Nodestream Plugin for Nodestream

This plugin provides a Nodestream interface to Neo4j.

Installation

pip install nodestream-plugin-neo4j

Usage

# nodestream.yaml
targets:
  neo4j:
    database: neo4j
    uri: bolt://localhost:7687
    username: neo4j
    password: neo4j
    database_name: neo4j # optional; name of the database to use.
    use_enterprise_features: false # optional; use enterprise features (e.g. node key constraints)

Extractor

The Neo4jExtractor class represents an extractor that reads records from a Neo4j database. It takes a single Cypher query as input and yields the records read from the database. The extractor will automatically paginate through the database until it reaches the end. Therefore, the query needs to include a SKIP and LIMIT clause. For example:

- implementation: nodestream_plugin_neo4j.extractor:Neo4jExtractor
  arguments:
    query: MATCH (p:Person) WHERE p.name = $name RETURN p.name SKIP $offset LIMIT $limit
    uri: bolt://localhost:7687
    username: neo4j
    password: neo4j
    database_name: my_database # Optional; defaults to neo4j
    limit: 100000 # Optional; defaults to 100
    parameters:
      # Optional; defaults to {}
      # Any parameters to be passed to the query
      # For example, if you want to pass a parameter called "name" with the value "John Doe", you would do this:
      name: John Doe

The extractor will automatically add the SKIP and LIMIT clauses to the query. The extractor will also automatically add the offset and limit parameters to the query. The extractor will start with offset set to 0 and limit set to 100 (unless overridden by setting limit) The extractor will continue to paginate through the database until the query returns no results.

Concepts

Migrations

The plugin supports migrations. Migrations are used to create indexes and constraints on the database.

As part of the migration process, the plugin will create __NodestreamMigration__ nodes in the database. This node will have a name property that is set to the name of the migration.

Additionally, the plugin will create a __NodestreamMigrationLock__ node in the database. This node will be exit when the migration process is running and will be deleted when the migration process is complete. This is used to prevent multiple migration processes from running at the same time.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nodestream_plugin_neo4j-0.12.1.tar.gz (11.2 kB view details)

Uploaded Source

Built Distribution

nodestream_plugin_neo4j-0.12.1-py3-none-any.whl (13.6 kB view details)

Uploaded Python 3

File details

Details for the file nodestream_plugin_neo4j-0.12.1.tar.gz.

File metadata

  • Download URL: nodestream_plugin_neo4j-0.12.1.tar.gz
  • Upload date:
  • Size: 11.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.11.0 Darwin/23.4.0

File hashes

Hashes for nodestream_plugin_neo4j-0.12.1.tar.gz
Algorithm Hash digest
SHA256 03c2bd825e170efdbf435db55a3caca7955a9ddf756bce5cdc6669e307fa5275
MD5 23f20cd8aad604ced7904f2e031ae8f4
BLAKE2b-256 2d4afc68563b32ad1b5a8c14148fa2b09b232a381ce561b68aef127a963f2797

See more details on using hashes here.

File details

Details for the file nodestream_plugin_neo4j-0.12.1-py3-none-any.whl.

File metadata

File hashes

Hashes for nodestream_plugin_neo4j-0.12.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b9dbabccc0ab590835c496a3f1806f57496e95b90e4deb89a8b59c579045d214
MD5 c183e6ac8cbd13a3abdc5e54acbbcf9b
BLAKE2b-256 86f94ea5d4afb29e78759ac362fa0d673380dce7f2648b0ce642d9daa3c0c1a0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page