mutate {
convert => {
"Question_Vector" => "float_eu"
}
I am trying to push a CSV file to elasticsearch using logstash. One of the column contains a list of vectors and I am trying to convert it to float. I have tried float and float_eu but both does not work. Either returns 0.0 or just the first decimal in the list.
example of record in csv: -0.04749248921871185, -0.048509035259485245, -0.024459611624479294,.... (512 dim)
please help