Change the type of an index field during ingestion

I am using Fix Protocol plugin (open source by Connamara). One field NoMDEntries is created as Structure/Object. However, we want it to be of type nested. Changing it using PUT results in error reason": "object mapping [NoMDEntries] can't be changed from non-nested to nested".

I tried changing it in plugin
./vendor/bundle/jruby/2.5.0/gems/logstash-filter-fix_protocol-0.3.3/spec/filters/fix_message_spec.rb

from expect(hash["NoMDEntries"]).to be_a(Array) to expect(hash["NoMDEntries"]).to be_a(Nested) but this did not help.

Is there anyway I can convert it to Nested.

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