a `TermQuery` with an empty string `Value` is considered by the .NET client to be "conditionless" and is removed from the search request body by default.
for those times that you want to use a `TermQuery` with an empty string `Value` (e.g. show me all documents with a non-empty last_name property) you need to use the `.Verbatim()` method to tell the client library to include the `TermQuery` as written even though it is considered to be "conditionless".
in other words, while a "conditionless" query may not make sense in the positive it can make sense in the negative
```
GET /my-index/_search
{
"query": {
"bool": {
"must": [{
"exists": { "field": "last_name"}
}],
"must_not": [{
"term": {"last_name.keyword": { "value": "" }}
}]
}
},
}
```
Signed-off-by: David Alpert (Next League) <[email protected]>
* Adds collections landing page configuration and navigation header linking
Signed-off-by: Aaron Stephanus <[email protected]>
* Removes unnecessary collection property from the configuration.
Signed-off-by: Aaron Stephanus <[email protected]>
* Adds links to navigation collection headers to collection index pages based on the collection name
Signed-off-by: Aaron Stephanus <[email protected]>
* Hide index pages from view and add info to formatting guide
Signed-off-by: Fanit Kolchina <[email protected]>
---------
Signed-off-by: Aaron Stephanus <[email protected]>
Signed-off-by: Fanit Kolchina <[email protected]>
Co-authored-by: Fanit Kolchina <[email protected]>
* Add CI with link checker.
Signed-off-by: dblock <[email protected]>
* Capture URI::InvalidURIError.
Signed-off-by: dblock <[email protected]>
* Use HEAD and catch URI errors.
Signed-off-by: dblock <[email protected]>
* Retry on a 405 with a GET.
Signed-off-by: dblock <[email protected]>
* Replaced external link checker with ruby-link-checker.
Signed-off-by: dblock <[email protected]>
* Don't exit with an exception.
Signed-off-by: dblock <[email protected]>
* Run internal link checker on build/ci.
Signed-off-by: dblock <[email protected]>
* Added broken links issue template.
Signed-off-by: dblock <[email protected]>
* Added host exclusions that 404 or fail on bots.
Signed-off-by: dblock <[email protected]>
* Raise anyway because Jekyll does it for us.
Signed-off-by: dblock <[email protected]>
* Fix broken links.
Signed-off-by: dblock <[email protected]>
* Only run link checker on main.
Signed-off-by: dblock <[email protected]>
* Re-add check-links.sh.
Signed-off-by: dblock <[email protected]>
* Run once a day on cron.
Signed-off-by: dblock <[email protected]>
---------
Signed-off-by: dblock <[email protected]>
Please double-check that this is correct. I'm using `org.opensearch.client:opensearch-java:2.2.0` and `org.opensearch.client:opensearch-rest-client:2.5.0` to try to create a client as per the docs. I noticed that the call to `IndexRequest.Builder.value()` does not work. I believe the correct method name is ``IndexRequest.Builder.document()`
* Added Sigv4 Section to JavaScript Client
Signed-off-by: Theo Truong <[email protected]>
* Adjusted according to style code/headers guide
Signed-off-by: Theo Truong <[email protected]>
Signed-off-by: Theo Truong <[email protected]>
* Make API reference top level
Signed-off-by: Naarcha-AWS <[email protected]>
* Fix typo on Drag and Drop page (#1633)
* Fix typo on Drag and Drop page
* Update _dashboards/drag-drop-wizard.md
Co-authored-by: Nate Bower <[email protected]>
* Update drag-drop-wizard.md
Co-authored-by: Nate Bower <[email protected]>
* Putting all the Docker install material on a single page (#1452)
* Putting all the Docker install material on a single page
Signed-off-by: JeffH-AWS <[email protected]>
* Making room for revamp
Signed-off-by: JeffH-AWS <[email protected]>
* Intro added
Signed-off-by: JeffH-AWS <[email protected]>
* Continuing to flesh out the intro section and overview
Signed-off-by: JeffH-AWS <[email protected]>
* Overview finalized
Signed-off-by: JeffH-AWS <[email protected]>
* Introducing docker compose
Signed-off-by: JeffH-AWS <[email protected]>
* Added link to compose
Signed-off-by: JeffH-AWS <[email protected]>
* Continuing docker image commentary
Signed-off-by: JeffH-AWS <[email protected]>
* Sometimes I wonder if anyone reads these
Signed-off-by: JeffH-AWS <[email protected]>
* Adding notes on installing compose with pip
Signed-off-by: JeffH-AWS <[email protected]>
* Adding prereqs
Signed-off-by: JeffH-AWS <[email protected]>
* Magnets - how do they work?
Signed-off-by: JeffH-AWS <[email protected]>
* Almonds and peaches are part of the same plant subgenus, Amygdalus
Signed-off-by: JeffH-AWS <[email protected]>
* There are 293 ways to make change for a dollar
Signed-off-by: JeffH-AWS <[email protected]>
* A shark is the only known fish that can blink with both eyes
Signed-off-by: JeffH-AWS <[email protected]>
* A crocodile cannot stick its tongue out
Signed-off-by: JeffH-AWS <[email protected]>
* wording
Signed-off-by: JeffH-AWS <[email protected]>
* Reorganizing a couple paragraphs to make it flow better
Signed-off-by: JeffH-AWS <[email protected]>
* Forgot a word
Signed-off-by: JeffH-AWS <[email protected]>
* Add tip about pruning stopped containers
Signed-off-by: JeffH-AWS <[email protected]>
* Cleaning up
Signed-off-by: JeffH-AWS <[email protected]>
* Add blurb about container ls
Signed-off-by: JeffH-AWS <[email protected]>
* Adding the Docker Compose stuff
Signed-off-by: JeffH-AWS <[email protected]>
* Working on compose
Signed-off-by: JeffH-AWS <[email protected]>
* Continuing work on the compose section - it's a lot of info
Signed-off-by: JeffH-AWS <[email protected]>
* Added important settings
Signed-off-by: JeffH-AWS <[email protected]>
* Updates to settings that need configured
Signed-off-by: JeffH-AWS <[email protected]>
* Still working through compose things
Signed-off-by: JeffH-AWS <[email protected]>
* Fixed wording
Signed-off-by: JeffH-AWS <[email protected]>
* Working through compose commands and guidance
Signed-off-by: JeffH-AWS <[email protected]>
* Reordering/rewording
Signed-off-by: JeffH-AWS <[email protected]>
* More phrasing
Signed-off-by: JeffH-AWS <[email protected]>
* More wording in steps
Signed-off-by: JeffH-AWS <[email protected]>
* More wording in steps
Signed-off-by: JeffH-AWS <[email protected]>
* Organizing
Signed-off-by: JeffH-AWS <[email protected]>
* Adding stuff and things
Signed-off-by: JeffH-AWS <[email protected]>
* Continuing to work through the configuration steps
Signed-off-by: JeffH-AWS <[email protected]>
* Fixes
Signed-off-by: JeffH-AWS <[email protected]>
* Fixes
Signed-off-by: JeffH-AWS <[email protected]>
* Still working on the configuration steps
Signed-off-by: JeffH-AWS <[email protected]>
* Changes
Signed-off-by: JeffH-AWS <[email protected]>
* More work
Signed-off-by: JeffH-AWS <[email protected]>
* Removed perf analyzer - refer to GH issue 1555
Signed-off-by: JeffH-AWS <[email protected]>
* Fixing things
Signed-off-by: JeffH-AWS <[email protected]>
* Adding guidance on passing settings in compose
Signed-off-by: JeffH-AWS <[email protected]>
* Working through dockerfile materials now
Signed-off-by: JeffH-AWS <[email protected]>
* wording
Signed-off-by: JeffH-AWS <[email protected]>
* Finalized the sample dev compose file
Signed-off-by: JeffH-AWS <[email protected]>
* Continuing work with configuration
Signed-off-by: JeffH-AWS <[email protected]>
* Finished - ready for reviews
Signed-off-by: JeffH-AWS <[email protected]>
* Fixed a link I forgot to change before
Signed-off-by: JeffH-AWS <[email protected]>
* Changes from first proofread
Signed-off-by: JeffH-AWS <[email protected]>
* Changed heading
Signed-off-by: JeffH-AWS <[email protected]>
* Addressed reviewer comments and made some changes
Signed-off-by: JeffH-AWS <[email protected]>
* Forgot to incorporate one change. Fixed.
Signed-off-by: JeffH-AWS <[email protected]>
* Final editorial changes
Signed-off-by: JeffH-AWS <[email protected]>
Signed-off-by: JeffH-AWS <[email protected]>
* fix#1584-custom_attr_allowlist (#1636)
Signed-off-by: cwillum <[email protected]>
Signed-off-by: cwillum <[email protected]>
* Update TERMS.md with definition for Setting (#1632)
* fix#1631-Terms-setting
Signed-off-by: cwillum <[email protected]>
* fix#1631-Terms-setting
Signed-off-by: cwillum <[email protected]>
Signed-off-by: cwillum <[email protected]>
* Add disclaimer about remote fs usage and an example of setting env var (#1644)
* Add disclaimer about remote fs usage and an example of setting env var
Signed-off-by: JeffH-AWS <[email protected]>
* Enhanced wording a little bit
Signed-off-by: JeffH-AWS <[email protected]>
Signed-off-by: JeffH-AWS <[email protected]>
* [DOC] New documentation: Self-host maps server (#1625)
* Add new page self-host maps server
Signed-off-by: vagimeli <[email protected]>
* Added new content
Signed-off-by: vagimeli <[email protected]>
* Copy edit
Signed-off-by: vagimeli <[email protected]>
* Tech review edits
Signed-off-by: vagimeli <[email protected]>
* Doc review edits
Signed-off-by: vagimeli <[email protected]>
* Editorial review changes
Signed-off-by: vagimeli <[email protected]>
* Final edits
Signed-off-by: vagimeli <[email protected]>
Signed-off-by: vagimeli <[email protected]>
* Add feedback.
Signed-off-by: Naarcha-AWS <[email protected]>
* Fix links
Signed-off-by: Naarcha-AWS <[email protected]>
Signed-off-by: Naarcha-AWS <[email protected]>
Signed-off-by: JeffH-AWS <[email protected]>
Signed-off-by: cwillum <[email protected]>
Signed-off-by: vagimeli <[email protected]>
Co-authored-by: Nate Bower <[email protected]>
Co-authored-by: Jeff Huss <[email protected]>
Co-authored-by: Chris Moore <[email protected]>
Co-authored-by: Melissa Vagi <[email protected]>
* Change Data Prepper intro
Signed-off-by: Naarcha-AWS <[email protected]>
* Add next steps section
Signed-off-by: Naarcha-AWS <[email protected]>
* Add David's feedback
Signed-off-by: Naarcha-AWS <[email protected]>
* Fix optional tags
Signed-off-by: Naarcha-AWS <[email protected]>
* Address small typo
* [Data Prepper 2.0]MAINT: documentation change regarding record type (#1306)
* MAINT: documentation change regarding record type
Signed-off-by: Chen <[email protected]>
* MAINT: documentation on trace group fields
Signed-off-by: Chen <[email protected]>
Signed-off-by: Chen <[email protected]>
* Update docs for Data Prepper 2.0 (#1404)
* Update get-started
Signed-off-by: Hai Yan <[email protected]>
* Update pipelines.md
Signed-off-by: Hai Yan <[email protected]>
* Add peer forwarder options to references
Signed-off-by: Hai Yan <[email protected]>
* Add csv processor options to refereces
Signed-off-by: Hai Yan <[email protected]>
* Add docs for conditional routing
Signed-off-by: Hai Yan <[email protected]>
* Add docs for json processor
Signed-off-by: Hai Yan <[email protected]>
* Remove docs for peer forwarder plugin
Signed-off-by: Hai Yan <[email protected]>
* Address review feedback - revise sentences, fix inaccurate info and typos
Signed-off-by: Hai Yan <[email protected]>
* Add missing options for http source and peer forwarder
Signed-off-by: Hai Yan <[email protected]>
* Update ssl options on peer forwarder
Signed-off-by: Hai Yan <[email protected]>
Signed-off-by: Hai Yan <[email protected]>
* More updates for Data Prepper 2.0 (#1469)
* Update http source and opensearch sink options
Signed-off-by: Hai Yan <[email protected]>
* Update docker run command
Signed-off-by: Hai Yan <[email protected]>
* Add more missing options
Signed-off-by: Hai Yan <[email protected]>
* Add metadata_root_key for s3 source
Signed-off-by: Hai Yan <[email protected]>
* Address review comments - tweak sentences and fix typos
Signed-off-by: Hai Yan <[email protected]>
* Address review comments
Signed-off-by: Hai Yan <[email protected]>
Signed-off-by: Hai Yan <[email protected]>
* Fix broken link
Signed-off-by: Naarcha-AWS <[email protected]>
* Add reworked Getting Started page
Signed-off-by: Naarcha-AWS <[email protected]>
* Undo change for getting started
Signed-off-by: Naarcha-AWS <[email protected]>
* Add edited Data Prepper overview
Signed-off-by: Naarcha-AWS <[email protected]>
* Add edited Data Prepper file
Signed-off-by: Naarcha-AWS <[email protected]>
Signed-off-by: Chen <[email protected]>
Signed-off-by: Hai Yan <[email protected]>
Co-authored-by: Qi Chen <[email protected]>
Co-authored-by: Hai Yan <[email protected]>
* Change Data Prepper intro
Signed-off-by: Naarcha-AWS <[email protected]>
* Add next steps section
Signed-off-by: Naarcha-AWS <[email protected]>
* Add David's feedback
Signed-off-by: Naarcha-AWS <[email protected]>
* Fix optional tags
Signed-off-by: Naarcha-AWS <[email protected]>
* Address small typo
* [Data Prepper 2.0]MAINT: documentation change regarding record type (#1306)
* MAINT: documentation change regarding record type
Signed-off-by: Chen <[email protected]>
* MAINT: documentation on trace group fields
Signed-off-by: Chen <[email protected]>
Signed-off-by: Chen <[email protected]>
* Update docs for Data Prepper 2.0 (#1404)
* Update get-started
Signed-off-by: Hai Yan <[email protected]>
* Update pipelines.md
Signed-off-by: Hai Yan <[email protected]>
* Add peer forwarder options to references
Signed-off-by: Hai Yan <[email protected]>
* Add csv processor options to refereces
Signed-off-by: Hai Yan <[email protected]>
* Add docs for conditional routing
Signed-off-by: Hai Yan <[email protected]>
* Add docs for json processor
Signed-off-by: Hai Yan <[email protected]>
* Remove docs for peer forwarder plugin
Signed-off-by: Hai Yan <[email protected]>
* Address review feedback - revise sentences, fix inaccurate info and typos
Signed-off-by: Hai Yan <[email protected]>
* Add missing options for http source and peer forwarder
Signed-off-by: Hai Yan <[email protected]>
* Update ssl options on peer forwarder
Signed-off-by: Hai Yan <[email protected]>
Signed-off-by: Hai Yan <[email protected]>
* More updates for Data Prepper 2.0 (#1469)
* Update http source and opensearch sink options
Signed-off-by: Hai Yan <[email protected]>
* Update docker run command
Signed-off-by: Hai Yan <[email protected]>
* Add more missing options
Signed-off-by: Hai Yan <[email protected]>
* Add metadata_root_key for s3 source
Signed-off-by: Hai Yan <[email protected]>
* Address review comments - tweak sentences and fix typos
Signed-off-by: Hai Yan <[email protected]>
* Address review comments
Signed-off-by: Hai Yan <[email protected]>
Signed-off-by: Hai Yan <[email protected]>
* Fix broken link
Signed-off-by: Naarcha-AWS <[email protected]>
Signed-off-by: Naarcha-AWS <[email protected]>
Signed-off-by: Chen <[email protected]>
Signed-off-by: Hai Yan <[email protected]>
Co-authored-by: Naarcha-AWS <[email protected]>
Co-authored-by: Naarcha-AWS <[email protected]>
Co-authored-by: Qi Chen <[email protected]>
Co-authored-by: Hai Yan <[email protected]>