Skip to content

Commit

Permalink
Replace operation type "index" with "bulk"
Browse files Browse the repository at this point in the history
With this commit we replace the deprecated operation type "index" with
the new name "bulk" (introduced with Rally 0.8.0).

Relates elastic/rally#435
Relates elastic/rally#369
  • Loading branch information
danielmitterdorfer committed Apr 4, 2018
1 parent ce2e62a commit 8c3fd14
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions geonames/operations/default.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "index-append",
"#COMMENT": "This operation-type is called 'bulk' with Rally 0.8.0. This one is only here for backwards-compatibility. Please use 'bulk' in your tracks.",
"operation-type": "index",
"operation-type": "bulk",
"bulk-size": {{bulk_size | default(5000)}}
},
{
"name": "index-update",
"#COMMENT": "This operation-type is called 'bulk' with Rally 0.8.0. This one is only here for backwards-compatibility. Please use 'bulk' in your tracks.",
"operation-type": "index",
"operation-type": "bulk",
"bulk-size": {{bulk_size | default(5000)}},
"conflicts": "random"
},
Expand Down
4 changes: 2 additions & 2 deletions geopoint/operations/default.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "index-append",
"#COMMENT": "This operation-type is called 'bulk' with Rally 0.8.0. This one is only here for backwards-compatibility. Please use 'bulk' in your tracks.",
"operation-type": "index",
"operation-type": "bulk",
"bulk-size": {{bulk_size | default(5000)}}
},
{
"name": "index-update",
"#COMMENT": "This operation-type is called 'bulk' with Rally 0.8.0. This one is only here for backwards-compatibility. Please use 'bulk' in your tracks.",
"operation-type": "index",
"operation-type": "bulk",
"bulk-size": {{bulk_size | default(5000)}},
"conflicts": "random"
},
Expand Down
2 changes: 1 addition & 1 deletion http_logs/operations/default.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "index-append",
"#COMMENT": "This operation-type is called 'bulk' with Rally 0.8.0. This one is only here for backwards-compatibility. Please use 'bulk' in your tracks.",
"operation-type": "index",
"operation-type": "bulk",
"bulk-size": {{bulk_size | default(5000)}}
},
{
Expand Down
2 changes: 1 addition & 1 deletion nested/operations/default.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "index-append",
"#COMMENT": "This operation-type is called 'bulk' with Rally 0.8.0. This one is only here for backwards-compatibility. Please use 'bulk' in your tracks.",
"operation-type": "index",
"operation-type": "bulk",
"bulk-size": {{bulk_size | default(5000)}}
},
{
Expand Down
2 changes: 1 addition & 1 deletion noaa/operations/default.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "index",
"#COMMENT": "This operation-type is called 'bulk' with Rally 0.8.0. This one is only here for backwards-compatibility. Please use 'bulk' in your tracks.",
"operation-type": "index",
"operation-type": "bulk",
"bulk-size": {{bulk_size | default(5000)}}
},
{
Expand Down
2 changes: 1 addition & 1 deletion nyc_taxis/operations/default.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "index",
"#COMMENT": "This operation-type is called 'bulk' with Rally 0.8.0. This one is only here for backwards-compatibility. Please use 'bulk' in your tracks.",
"operation-type": "index",
"operation-type": "bulk",
"bulk-size": {{bulk_size | default(10000)}}
},
{
Expand Down
2 changes: 1 addition & 1 deletion percolator/operations/default.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "index",
"#COMMENT": "This operation-type is called 'bulk' with Rally 0.8.0. This one is only here for backwards-compatibility. Please use 'bulk' in your tracks.",
"operation-type": "index",
"operation-type": "bulk",
"bulk-size": {{bulk_size | default(5000)}}
},
{
Expand Down
4 changes: 2 additions & 2 deletions pmc/operations/default.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "index-append",
"operation-type": "index",
"operation-type": "bulk",
"bulk-size": {{bulk_size | default(500)}}
},
{
"name": "index-update",
"operation-type": "index",
"operation-type": "bulk",
"bulk-size": {{bulk_size | default(500)}},
"conflicts": "random"
},
Expand Down

0 comments on commit 8c3fd14

Please sign in to comment.