Configuring Phonetic Analyzer via Logstash

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

The phonetic analyzer is an elasticsearch plugin. Nothing to do with logstash. There is an example of how to configure your index to use that analyzer in the documentation. If you have additional questions you should ask them in the elasticsearch forum.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.