Hi,
I want to perform create indexes with the same data-set with different bulk-sizes. So what I want to achieve is basically like:
- create an index with bulk-size =100
- Delete the index
- create the same index with bulk-size=500
- delete the index
- create the same index with bulk-size=1000
- delete the index and so on
However if i specify the delete operation multiple time inside the schedule for the challenge, rally says its duplicated. Is it not possible to use the same operation multiple times within a schedule?
"challenges": [
{
"name": "index-and-query",
"default": true,
"schedule": [
{
"operation": {
"operation-type": "delete-index"
}
}, {
"operation": {
"operation-type": "create-index"
} },
{
"operation": {
"operation-type": "cluster-health",
"request-params": {
"wait_for_status": "green"
}
} },
{
"operation": {
"operation-type": "bulk",
"bulk-size": 5000
},
"warmup-time-period": 120,
"clients": 8
},
{
"operation": {
"operation-type": "delete-index"
}
},
{
"operation": {
"operation-type": "create-index"
} },
{
"operation": {
"operation-type": "bulk",
"bulk-size": 10000
},
"warmup-time-period": 120,
"clients": 8
}]