forked from CBIIT/icdc-dataloader
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add config for loading cmb data files to neo4j
- Loading branch information
Showing
6 changed files
with
1,630 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,6 @@ config/data-loader.yml | |
config/file-loader.yml | ||
config/es_loader_* | ||
backup/ | ||
.DS_Store | ||
my_env/ | ||
cmb-data/2023-8-23 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
Config: | ||
temp_folder: tmp | ||
backup_folder: /tmp/data-loader-backups | ||
|
||
neo4j: | ||
# # Location of Neo4j server, e.g., bolt://127.0.0.1:7687 | ||
# uri: bolt://localhost:7687 | ||
# # Neo4j username | ||
# user: neo4j | ||
# # Neo4j password | ||
# password: "123456" | ||
#Location of Neo4j server, e.g., bolt://127.0.0.1:7687 | ||
uri: bolt://ncidb-d537-c:7687 | ||
# Neo4j username | ||
user: neo4j | ||
# Neo4j password | ||
password: "ctdc_cmbDBneo4j0" | ||
|
||
# Schema files' locations | ||
schema: | ||
- /Users/cheny39/Documents/work/ctdc/crdc-ctdc-dataloader/cmb-data/ctdc_model_file.yaml | ||
- /Users/cheny39/Documents/work/ctdc/crdc-ctdc-dataloader/cmb-data/ctdc_model_properties_file.yaml | ||
|
||
#Property file location | ||
prop_file: /Users/cheny39/Documents/work/ctdc/crdc-ctdc-dataloader/cmb-data/props-ctdc-cmb.yml | ||
|
||
# Skip validations, aka. Cheat Mode | ||
cheat_mode: false | ||
# Validations only, skip loading | ||
dry_run: false | ||
# Wipe out database before loading, you'll lose all data! | ||
wipe_db: true | ||
# Skip backup step | ||
no_backup: true | ||
split_transactions: false | ||
# Automatically confirm deletion and database wiping (without asking user to confirm) | ||
no_confirmation: true | ||
# Max violations to display, default is 10 | ||
max_violations: 10 | ||
no_parents: true | ||
|
||
# S3 bucket name, if you are loading from an S3 bucket | ||
s3_bucket: | ||
# S3 folder for dataset | ||
s3_folder: | ||
# Loading mode, can be upsert, new or delete, default is upsert | ||
loading_mode: upsert | ||
# Location of dataset | ||
dataset: |
Oops, something went wrong.