Thibaut
Thibaut
> Being able to set `$bulk->setRequestParam('refresh', 'wait_for');` could be useful. > > Same goes for pipeline. In fact I would extend to: being able to set any requestParam -> https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-bulk.html#docs-bulk-api-query-params...
> ## Change how index name is generated > > What would you need for example? > > We have a PREFIX option, but that's all at the moment. **I'm...
As I read my code again, getCurrentBulk override in CustomIndexer might be useless since I also can replace the line ```php $this->getCurrentBulk($pipelineID)->addDocument($document, Bulk\Action::OP_TYPE_INDEX); ``` with the lines ```php $bulk =...
> Just found this setter on the Elastica Document `$doc->setPipeline('coucou');` but it does not work on Bulk, it's only for one-shot indexing. Yeah, it was my first try to add...
I think it will need some enhancements of how processors are stored in Pipeline (maybe even params) and/or how Pipeline is serialized in order to be sent to Elasticsearch. But...
So! I found a much better workaround (might be an idea to follow) ```php use Elastica\Processor\Attachment; use Elastica\Processor\Lowercase; use Elastica\Processor\Remove; use Elastica\Request; //Create first attachment processor $attachprocDesc = new Attachment('descBinary');...
Link to #1810 & #1809
> I remember AWS OpenSearch had some different auth mechanisms but as normal operations do work, not sure if this is related. It seems you don't get much about in...
Still trying to obtain AWS logs, but it doesn't give anything yet. > You also not above, the `elsadmin` is a super user so I don't see how you should...
Ok managed to find a workaround. I made some more documentation read for _aliases I suppose that the wildcard `*` was affecting hidden protected indices (security & co). Since the...