harshagarwal00

Results 6 comments of harshagarwal00

Found the solution :) From: https://jarcasting.com/artifacts/com.strapdata.elasticsearch.plugin/ingest-attachment/ or even better try the official site: https://search.maven.org/artifact/com.strapdata.elasticsearch.plugin/ingest-attachment/6.2.3.31/jar and click downloads and then zip Downloaded: ingest-attachment-6.2.3.31.zip Then run: `bin/elasticsearch-plugin install file:"/home/sampleuser/ingest-attachment-6.2.3.31.zip"`

I think even though the error says "Unexpected BERT type: 0" it really is "Unexpected BERT type: 80"

Fix was very non-intutive: ``` const { unzip } = require('node:zlib'); const { promisify } = require('node:util'); const do_unzip = promisify(unzip); //remove the first 6 bytes and inflate using zlib...

@Cidan : is this done .. having trouble to decode Compressed Term Format:

Fix was very non-intuitive ``` const { unzip } = require('node:zlib'); const { promisify } = require('node:util'); const do_unzip = promisify(unzip); //remove the first 6 bytes and inflate using zlib...