This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Version 3.4.0 Release Notes (Generated from Git Commits) | |
| Compatible with OpenSearch and OpenSearch Dashboards version 3.4.0 | |
| ### Added | |
| - Reapply "Switch percentiles implementation to MergingDigest ([#18124](https://github.com/opensearch-project/OpenSearch/pull/18124)) | |
| - Add build-tooling to run in the FIPS environment ([#18921](https://github.com/opensearch-project/OpenSearch/pull/18921)) | |
| - Add Metrics For The Merged Segment Warmer Flow ([#18929](https://github.com/opensearch-project/OpenSearch/pull/18929)) | |
| - Introduce gRPC Interceptor Chain for transport-grpc ([#19005](https://github.com/opensearch-project/OpenSearch/pull/19005)) | |
| - Add support for a ForkJoinPool type ([#19008](https://github.com/opensearch-project/OpenSearch/pull/19008)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'json' | |
| require 'net/http' | |
| require 'optparse' | |
| require 'set' | |
| require 'uri' | |
| options = {} | |
| OptionParser.new do |opt| | |
| opt.on('-s', '--start BUILD_NUMBER', 'Require start') { |o| options[:start] = o } | |
| opt.on('-e', '--end BUILD_NUMBER', 'Require end') { |o| options[:end] = o } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| i=1 | |
| while [ true ] | |
| do | |
| "$@" | |
| if [ "$?" = 0 ]; then | |
| echo "SUCCESS ($i)" | |
| else | |
| echo "FAILURE ($i)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'json' | |
| require 'net/http' | |
| require 'optparse' | |
| require 'set' | |
| require 'uri' | |
| options = {} | |
| OptionParser.new do |opt| | |
| opt.on('-s', '--start BUILD_NUMBER', 'Require start') { |o| options[:start] = o } | |
| opt.on('-e', '--end BUILD_NUMBER', 'Require end') { |o| options[:end] = o } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| read -r -d '' QUERY<<'EOF' | |
| { | |
| "profile": true, | |
| "size": 0, | |
| "query": { | |
| "range": { | |
| "dropoff_datetime": { | |
| "from": "2015-01-01 00:00:00", |