is It correct?? I have a column contains list of i...
# general
r
is It correct?? I have a column contains list of integers("madIds": [1111, 2222, 3444]) for that I am writing like in schema config file, please correct me and confirm me.
Copy code
{
        "name": "madIds",
        "datatype": "INT",
        "delimiter":",",
        "singleValueField":false
},
x
I think this is ok, you don’t need to set delimiter in schema. Is should be how the record reader parsing the data
1
What’s your data format, if it’s json, then the parser should parse it to an array already
r
ok, got thanks,