Nik Everett
Nik Everett
Previously `graph` checked if the request timed out, then spent some time doing work, then passed the timeout on to the next request. Over and over again. It's quite possible...
I'd like to be able to configure defaults for run configurations. We do this [now](https://github.com/elastic/elasticsearch/blob/4b995cb/build-tools-internal/src/main/groovy/elasticsearch.ide.gradle#L119-L136) for IntelliJ. Without this we end up running tests in Eclipse with quite different parameters...
We've recently started using gradle's `compileOnlyApi`. It looks like that [landed](https://docs.gradle.org/6.7-rc-1/release-notes.html) in gradle 6.7. Anyway, this doesn't work with buildship. ### Expected Behavior My project config looks something like: *...
Adds a reference to the `mapmatcher` project to the related projects documentation. `mapmatcher` is a smallibrary of matchers for `Map` and `List` concentrating on readable error messages that report the...
**Describe the bug** Parameters to JMH with spaces in them leak to the rest of the command line. **To Reproduce** Add jmh plugin and then add a configuration like: ```...
The rest of the rpm build process works very well on osx with rpm installed using homebrew but the signing process is broken because expect is different. Compare: ``` shell...
This adds synthetic `_source` support for `ip` fields with `ignore_malfored` set to `true`. We save the field values in hidden stored field, just like we do for `ignore_above` keyword fields....
This adds support for the `field` scripting API in many but not all cases. Before this change numbers, dates, and IPs supported the `field` API when running with _source in...
This shrinks the index by implementing a "synthetic" _source field. Instead of saving the field to disk we reconstruct it on the fly using our column store, doc values. ###...
This adds a test for the `top_hits` aggregation using synthetic `_source`. It works but let's be a bit paranoid here because it's a whole new fetch phase.....