Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8cd5a73
Port changes from LDBC branch
jeffreylovitz May 11, 2020
7b35464
wip
jeffreylovitz May 11, 2020
3ed1693
Fix module link resolution
jeffreylovitz May 11, 2020
605bce8
Improve documentation
jeffreylovitz May 14, 2020
51c18d4
WIP
jeffreylovitz May 14, 2020
eae96e3
Fix relation existence check
jeffreylovitz May 15, 2020
4c791f1
Tests don't catch exceptions
jeffreylovitz May 15, 2020
f6b67af
Refactor QueryBuffer
jeffreylovitz May 18, 2020
480690b
Comment out fields tests
jeffreylovitz May 18, 2020
671bf12
Simplify node dictionary logic
jeffreylovitz May 19, 2020
9ab43aa
Add schema tests
jeffreylovitz May 20, 2020
fb3f1a1
Update documentation
jeffreylovitz May 20, 2020
18bb1aa
Various improvements
jeffreylovitz May 20, 2020
1ba45d0
Consolidate skip_offset and column_names
jeffreylovitz May 20, 2020
a1de8dc
Separate binary packing logic for typed and inferred values
jeffreylovitz May 20, 2020
57d041f
Improving logic around types
jeffreylovitz May 20, 2020
3f461cb
Documentation update
jeffreylovitz May 21, 2020
efd5e9b
Update tests
jeffreylovitz May 22, 2020
1995044
Temporarily disable null-handling test
jeffreylovitz May 22, 2020
2b14c62
Update README
jeffreylovitz Jun 12, 2020
7b50b76
[add] added coverage report
filipecosta90 Jun 14, 2020
6787480
[add] added coverage report
filipecosta90 Jun 14, 2020
69e8579
Bump required redisgraph-py version
jeffreylovitz Jun 15, 2020
e01ceb7
Address PR comments
jeffreylovitz Jun 15, 2020
09705cb
Replace Config global with instance
jeffreylovitz Jun 15, 2020
f54957e
Additional test files
jeffreylovitz Jun 16, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,12 @@ jobs:
command: python setup.py sdist

- run:
name: run tests
name: run tests and upload coverage
command: |
. venv/bin/activate
pip install git+https://github.com/RedisGraph/redisgraph-py.git@master
python -m unittest test/test_bulk_loader.py
pip install -r test/requirements.txt
pytest --cov redisgraph_bulk_loader
codecov -t ${CODECOV_TOKEN}

workflows:
version: 2
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

.coverage

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
Expand Down
117 changes: 88 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,52 +17,65 @@ A Redis server with the [RedisGraph](https://github.com/RedisLabsModules/RedisGr
https://oss.redislabs.com/redisgraph/

## Installation
The bulk loader script's dependencies can be resolved using pip:
The bulk loader can be installed using pip:
```
pip install git+https://github.com/RedisGraph/redisgraph-bulk-loader.git@master
```

## Usage
Pip installation exposes `redisgraph-bulk-insert` as a command to invoke this tool:
```
redisgraph-bulk-insert GRAPHNAME [OPTIONS]
```

Installation by cloning the repository allows the script to be invoked via Python like so:
```
python3 redisgraph_bulk_loader/bulk_insert.py GRAPHNAME [OPTIONS]
```

| Flags | Extended flags | Parameter |
|---------|-----------------------|-----------------------------------------------------------------|
| -h | --host TEXT | Redis server host (default: 127.0.0.1) |
| -p | --port INTEGER | Redis server port (default: 6379) |
| -a | --password TEXT | Redis server password |
| -n | --nodes TEXT | path to node csv file [required] |
| -r | --relations TEXT | path to relationship csv file |
| -t | --max-token-count INT | max number of tokens sent in each Redis query (default 1024) |
| -b | --max-buffer-size INT | max batch size (MBs) of each Redis query (default 4096) |
| -c | --max-token-size INT | max size (MBs) of each token sent to Redis (default 500) |
| -q | --quote | the quoting format used in the CSV file. QUOTE_MINIMAL=0,QUOTE_ALL=1,QUOTE_NONNUMERIC=2,QUOTE_NONE=3 |
| -f | --field-types | json to set explicit types for each field, format {<label>:[<col1 type>, <col2 type> ...]} where type can be 0(null),1(bool),2(numeric),3(string) |
| Flags | Extended flags | Parameter |
|:-----:|----------------------------|:----------------------------------------------------------------------------------------------------:|
| -h | --host TEXT | Redis server host (default: 127.0.0.1) |
| -p | --port INTEGER | Redis server port (default: 6379) |
| -a | --password TEXT | Redis server password (default: none) |
| -n | --nodes TEXT | Path to Node CSV file with the filename as the Node Label |
| -N | --nodes-with-label TEXT | Node Label followed by path to Node CSV file |
| -r | --relations TEXT | Path to Relationship CSV file with the filename as the Relationship Type |
| -R | --relations-with-type TEXT | Relationship Type followed by path to relationship CSV file |
| -o | --separator CHAR | Field token separator in CSV files (default: comma) |
| -d | --enforce-schema | Requires each cell to adhere to the schema defined in the CSV header |
| -s | --skip-invalid-nodes | Skip nodes that reuse previously defined IDs instead of exiting with an error |
| -e | --skip-invalid-edges | Skip edges that use invalid IDs for endpoints instead of exiting with an error |
| -q | --quote INT | The quoting format used in the CSV file. QUOTE_MINIMAL=0,QUOTE_ALL=1,QUOTE_NONNUMERIC=2,QUOTE_NONE=3 |
| -t | --max-token-count INT | (Debug argument) Max number of tokens sent in each Redis query (default 1024) |
| -b | --max-buffer-size INT | (Debug argument) Max batch size (MBs) of each Redis query (default 4096) |
| -c | --max-token-size INT | (Debug argument) Max size (MBs) of each token sent to Redis (default 500) |


The only required arguments are the name to give the newly-created graph (which can appear anywhere) and at least one node CSV file.
The nodes and relationship flags should be specified once per input file.

The flags for `max-token-count`, `max-buffer-size`, and `max-token-size` should only be specified if the memory overhead of graph creation is too high. The bulk loader builds large graphs by sending binary tokens (each of which holds multiple nodes or relations) to Redis in batches. By lowering these limits from their defaults, the size of each transmission to Redis is lowered and fewer entities are held in memory, at the expense of a longer overall runtime.

```
redisgraph-bulk-insert GRAPH_DEMO -n example/Person.csv -n example/Country.csv -r example/KNOWS.csv -r example/VISITED.csv
```
The label (for nodes) or relationship type (for relationships) is derived from the base name of the input CSV file. In this example, we'll construct two sets of nodes, labeled `Person` and `Country`, and two types of relationships - `KNOWS` and `VISITED`.

The default behaviour is to infer the type for each row based on the value of each row, which can cause type mismatch problem. For example if a string property contains string values of 'false', 'true' or numbers. To avoid this, use --field-types to explicitly set the type for each column in the csv.
EG, to explicitly set to string.
RedisGraph does not impose a schema on properties, so the same property key can have values of differing types, such as strings and integers. As such, the bulk loader's default behaviour is to infer the type for each field independently for each value. This can cause unexpected behaviors when, for example, a property expected to always have string values has a field that can be cast to an integer or double. To avoid this, use the `--enforce-schema` flag and update your CSV headers as described in [Input Schemas](#input-schemas).

```
redisgraph-bulk-insert ROBOTS -f '{"Robots" : [3]}' -q1 -n example2/Robots.csv
```
### Extended parameter descriptions
The flags for `max-token-count`, `max-buffer-size`, and `max-token-size` are typically not required. They should only be specified if the memory overhead of graph creation is too high. The bulk loader builds large graphs by sending binary tokens (each of which holds multiple nodes or relations) to Redis in batches. By lowering these limits from their defaults, the size of each transmission to Redis is lowered and fewer entities are held in memory, at the expense of a longer overall runtime.

`--quote` is maintained for backwards compatibility, and allows some control over Python's type inference in the default mode. `--enforce-schema-type` is preferred.

Notice that when -f isn't used, the robot name "30165" would be inserted as a number rather than a string which causes problems in RedisGraph when searching.
`--enforce-schema-type` indicates that input CSV headers will follow the form described in [Input Schemas](#input-schemas).

`--nodes-with-label` and `--relations-with-type` allows the node label or relationship type to be explicitly written instead of inferring them from the filename. For example, `--relations-with-type HAS_TAG post_hasTag_tag.csv` will add all relationships described in the specified CSV with the type `HAS_TAG`.

## Input constraints
### Node identifiers
- If both nodes and relations are being created, each node must be associated with a unique identifier.
- The identifier is the first column of each label CSV file. If this column's name starts with an underscore (`_`), the identifier is internal to the bulk loader operation and does not appear in the resulting graph. Otherwise, it is treated as a node property.
- Each identifier must be entirely unique across all label files.
- If not using `--enforce-schema`, the identifier is the first column of each label CSV file. If this column's name starts with an underscore (`_`), the identifier is internal to the bulk loader operation and does not appear in the resulting graph. Otherwise, it is treated as a node property.
- Each identifier must be entirely unique across all label files. [ID namespaces](#id-namespaces) can be used to write more granular identifiers.
- Source and destination nodes in relation CSV files should be referred to by their identifiers.
- The uniqueness restriction is lifted if only nodes are being created.

Expand All @@ -71,22 +84,68 @@ Notice that when -f isn't used, the robot name "30165" would be inserted as a nu
- Properties are not required to be exclusively composed of any type.
- The types currently supported by the bulk loader are:
- `boolean`: either `true` or `false` (case-insensitive, not quote-interpolated).
- `numeric`: an unquoted value that can be read as a floating-point or integer type.
- `integer`: an unquoted value that can be read as an integer type.
- `double`: an unquoted value that can be read as a floating-point type.
- `string`: any field that is either quote-interpolated or cannot be casted to a numeric or boolean type.
- `NULL`: an empty field.
- Default behaviour is to infer the property type, attempting to cast it to null, float, boolean or string in that order.
- If explicit type is required, for example, if a value is "1234" and it must not be inferred into a float, you can use the option -f to specify the type explicitly for each row being imported.
- Cypher does not allow NULL values to be assigned to properties.
- The default behaviour is to infer the property type, attempting to cast it to integer, float, boolean, or string in that order.
- The `--enforce-schema` flag and an [Input Schema](#input-schemas) should be used if type inference is not desired.

### Label file format:
- Each row must have the same number of fields.
- Leading and trailing whitespace is ignored.
- The first field of a label file will be the node identifier, as described in [Node Identifiers](#node-identifiers).
- If not using an [Input Schema](#input-schemas), the first field of a label file will be the node identifier, as described in [Node Identifiers](#node-identifiers).
- All fields are property keys that will be associated with each node.

### Relationship files
- Each row must have the same number of fields.
- Leading and trailing whitespace is ignored.
- The first two fields of each row are the source and destination node identifiers. The names of these fields in the header do not matter.
- If not using an [Input Schema](#input-schemas), the first two fields of each row are the source and destination node identifiers. The names of these fields in the header do not matter.
- If the file has more than 2 fields, all subsequent fields are relationship properties that adhere to the same rules as node properties.
- Described relationships are always considered to be directed (source->destination).

## Input Schemas
If the `--enforce-schema` flag is specified, all input CSVs will be expected to specify each column's data type in the header.

This format lifts some constraints of the default CSV format, such as ID fields being the first column.

Most header fields should be a colon-separated pair of the property name and its data type, such as `Name:STRING`. Certain data types do not require a name string, as indicated below.

The accepted data types are:
| Type String | Description | Requires name string |
|:--------------------:|-------------------------------------------------------------------|:--------------------:|
| ID | Label files only - Unique identifier for a node | Optional |
| START_ID | Relation files only - The ID field of this relation's source | No |
| END_ID | Relation files only - The ID field of this relation's destination | No |
| IGNORE | This column will not be added to the graph | Optional |
| DOUBLE / FLOAT | A signed 64-bit floating-point value | Yes |
| INT / INTEGER / LONG | A signed 64-bit integer value | Yes |
| BOOLEAN | A boolean value indicated by the string 'true' or 'false' | Yes |
| STRING | A string value | Yes |

If an `ID` column has a name string, the value will be added to each node as a property. Otherwise, it is internal to the bulk loader operation and will not appear in the graph. `START_ID` and `END_ID` columns will never be added as properties.

### ID Namespaces
Typically, node identifiers need to be unique across all input CSVs. When using an input schema, it is (optionally) possible to create ID namespaces, and the identifier only needs to be unique across its namespace. This is particularly useful when each input CSV has primary keys which overlap with others.

To introduce a namespace, follow the `:ID` type string with a parentheses-interpolated namespace string, such as `:ID(User)`. The same namespace should be specified in the `:START_ID` or `:END_ID` field of relation files, as in `:START_ID(User)`.

### Input Schema CSV examples
User.csv
```
:ID(User), name:STRING, rank:INT
0, "Jeffrey", 5
1, "Filipe", 8
```

FOLLOWS.csv
```
:START_ID(User), :END_ID(User), reaction_count:INT
0, 1, 25
1, 0, 10
```
Inserting these CSVs with the command:
`redisgraph-bulk-loader SocialGraph --enforce-schema --nodes User.csv --relations FOLLOWS.csv`

Will produce a graph named SocialGraph with 2 users, Jeffrey and Filipe. Jeffrey follows Filipe, and that relation has a reaction_count of 25. Filipe also follows Jeffrey, with a reaction_count of 10.

2 changes: 0 additions & 2 deletions redisgraph_bulk_loader/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from redisgraph_bulk_loader import bulk_insert

__all__ = [
'bulk_insert',
]
Loading