Pierre Gayvallet

Results 24 comments of Pierre Gayvallet

+1 for this fix, not usable in production mode because of that.

Note: https://github.com/elastic/kibana/pull/137448 adds new packages which will likely need to be adapted too

> allow shift click (or maybe shift-enter) to open in a new tab We're directly using the `euiSelectableTemplateSitewideRenderOptions` component from EUI when displaying the options of the searchbar, so at...

I think it would be fine for our usecase.

+1, would be awesome to have

Issue reproduced on `v8.2.0` and `v8.0.0`, and *not* reproduced on `7.17.0`. This was likely introduced by the internal changes to the transport layer during `8.0.0`

`WeightedConnectionPool` seems to be the culprit here. Looking at the code, `ClusterConnectionPool`, which is the old (7.x) implementation, has an internal mechanism to try to resurrect down nodes when calling...

Sample test reproducing the issue ```ts t.test('3 Connections, same weight', t => { const pool = new WeightedConnectionPool({ Connection: HttpConnection }) pool.addConnection([ 'http://localhost:9200/', 'http://localhost:9201/', 'http://localhost:9202/' ]); for (let i =...

I then ran ```ts t.test('3 Connections, same weight', t => { const pool = new WeightedConnectionPool({ Connection: HttpConnection }) pool.addConnection([ 'http://localhost:9200/', 'http://localhost:9201/', 'http://localhost:9202/', 'http://localhost:9203/' ]); for (let i = 0;...

Yea, I have no idea why exactly, maybe there's a minimum amount of calls to have depending on number of nodes, or something. We could try with more nodes to...