Hi
I am trying to add some data with Bulk API, but it takes only the last record of my JSON input data.
Here an example with 3 record:
input data:
[
{
"ID_PROD": "15136",
"UNIT": "UN",
"RATE": 1
},
{
"ID_PROD": "21588",
"UNIT": "UN",
"RATE": 1
},
{
"ID_PROD": "21500",
"UNIT": "UN",
"RATE": 2
}
]
It takes only the last record
Screen from Kibana index management

Any idea about the cause of that issue?
Thanks in advance