Does elasticsearch Ingest processor need to be thread safe?

I'm developing a custom ingest processor. Does it need to be thread safe? Would there be concurrent Processor.execute() calls to the same processor instance?

Hi @lin-zhao,

yes, ingest processors need to be thread safe. We'll enhance the Javadocs to make that clear. Thanks for the catch!

Daniel