I have the below logstash config file(windows) to index a csv, i have the address field and i want to use the phonetic matching in address field, may i know how to configure phonetic analyzer and define phonetic field via the config file
input {
file {
path => "C:/graph_demo_data_3.csv"
start_position => "beginning"
sincedb_path => "NUL"
}
}
filter {
csv {
separator => ","
skip_header => true
columns => [Mobile_Phone,Address,Company_Postcode,Company_Phone,Age_Of_Applicant,AppKey]
}
mutate { convert => ["Amount_Limit","float"] }
}
output {
elasticsearch {
hosts => "localhost:9200"
index => "graph_demo_3"
document_type => "graph_demo_doc_3"
}
stdout {}
}
Thanks