Re: MultiCollector collect behavior is changed

2018-07-03 Thread Yonghui Zhao
Thanks Adrien, got it. 2018-07-04 13:46 GMT+08:00 Adrien Grand : > This was considered a bug as the need to early-terminate is a per-collector > decision. If you want to do something like that again, you could fork > MultiCollector and propagate CollectionTerminatedExceptions. > > Le mer. 4 juil.

Re: MultiCollector collect behavior is changed

2018-07-03 Thread Adrien Grand
This was considered a bug as the need to early-terminate is a per-collector decision. If you want to do something like that again, you could fork MultiCollector and propagate CollectionTerminatedExceptions. Le mer. 4 juil. 2018 à 05:34, Yonghui Zhao a écrit : > In lucene 4.10, > If one collector

MultiCollector collect behavior is changed

2018-07-03 Thread Yonghui Zhao
In lucene 4.10, If one collector throw CollectionTerminatedException, all collectors are terminated. In lucene 7.2.1, CollectionTerminatedException will only terminate current collector, the others won't be terminated. How to keep old behavior?