-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f89a902
commit 70b5963
Showing
5 changed files
with
59 additions
and
18 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
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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
url: OPENSEARCH_URL | ||
username: OPENSEARCH_USERNAME | ||
password: OPENSEARCH_PASSWORD | ||
index: empty-data | ||
data: {} | ||
default_index: empty-data | ||
metadata: {} | ||
bulk_upload_list: | ||
- operation: | ||
index: {} | ||
data: {} |
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 |
---|---|---|
@@ -1,14 +1,30 @@ | ||
url: OPENSEARCH_URL | ||
username: OPENSEARCH_USERNAME | ||
password: OPENSEARCH_PASSWORD | ||
index: nested-data | ||
data: { | ||
"keyNo3": "Mambo No 3", | ||
"nestedKey": { | ||
"deeper-nested-1": { | ||
"deeper-nested-key": 1, | ||
"another-key-deeply-nested": "here I am" | ||
}, | ||
"deeper-nested-2": "some value" | ||
}, | ||
default_index: nested-data | ||
metadata: { | ||
"mKeyNo1": "squirrel", | ||
"mKeyNo2": { | ||
"Translations": [ | ||
- "Eichhörnchen" | ||
- "ardilla" | ||
- "écureuil" | ||
- "scoiattolo" | ||
] | ||
} | ||
} | ||
bulk_upload_list: | ||
- operation: | ||
index: | ||
_index: nested-data | ||
_id: abc123def | ||
data: { | ||
"keyNo3": "Mambo No 3", | ||
"nestedKey": { | ||
"deeper-nested-1": { | ||
"deeper-nested-key": 1, | ||
"another-key-deeply-nested": "here I am" | ||
}, | ||
"deeper-nested-2": "some value" | ||
}, | ||
} |
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 |
---|---|---|
@@ -1,8 +1,21 @@ | ||
url: OPENSEARCH_URL | ||
username: OPENSEARCH_USERNAME | ||
password: OPENSEARCH_PASSWORD | ||
index: simple-data | ||
data: { | ||
"keyNo1": "xXx", | ||
"keyNo2": "Mambo No 5", | ||
default_index: simple-data | ||
metadata: { | ||
"mKeyNo1": "squirrel", | ||
"mKeyNo2": "Eichhörnchen", | ||
} | ||
bulk_upload_list: | ||
- operation: | ||
index: {} | ||
data: { | ||
"keyNo1": "xXx", | ||
"keyNo2": "Mambo No 5", | ||
} | ||
- operation: | ||
create: {} | ||
data: { | ||
"keyNo1": "yYy", | ||
"keyNo2": "Mambo No 6", | ||
} |
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