-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug-1921849: support elasticsearch 8 (#6741)
* support elasticsearch 8 Co-authored-by: krzepka <[email protected]> * address review * update error handling for dropping fields * address review * fix topcrashers * address review --------- Co-authored-by: krzepka <[email protected]>
- Loading branch information
Showing
32 changed files
with
1,050 additions
and
862 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
|
||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
# Usage: bin/waitfor_services.sh | ||
# | ||
# Waits for dev services to start up. | ||
# | ||
# Note: This should be called from inside a container. | ||
|
||
set -euo pipefail | ||
|
||
waitfor --verbose --conn-only "${DATABASE_URL}" | ||
waitfor --verbose "${LEGACY_ELASTICSEARCH_URL}" | ||
waitfor --verbose "http://${PUBSUB_EMULATOR_HOST}" | ||
waitfor --verbose "${STORAGE_EMULATOR_HOST}/storage/v1/b" | ||
waitfor --verbose --codes={200,404} "${SENTRY_DSN}" | ||
# wait for this last because it's slow to start | ||
waitfor --verbose --timeout=30 "${ELASTICSEARCH_URL}" |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.