I've defined a custom car with base=vanilla. I'm trying to set multiple data paths using data_paths, but I'm not sure how to make rally recognize the value.
I've tried
/path/0,/path/1
/path/0/,/path/1/
/path/0, /path/1
/path/0","/path/1
/path/0','/path/1
In the first three cases, it treats the paths as a single string and I end up with
path.data: ['/path/0,/path/1']
path.data: ['/path/0/,/path/1/']
path.data: ['/path/0, /path/1']
in my elasticsearch.yml. In the ones where I explicitly add quotes, the end result uses the opposite quote type to make them a single string. So
/path/0","/path/1
becomes
path.data: ['/path/0","/path/1']
and
/path/0','/path/1
becomes
path.data: ["/path/0','/path/1"]
How can i delimit my strings so that elasticsearch will store in multiple locations?