forked from apache/druid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into fix-markdown-syntax
- Loading branch information
Showing
10,368 changed files
with
2,798,725 additions
and
307,000 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,34 @@ | ||
# note: documentation can be found here https://cwiki.apache.org/confluence/display/INFRA/Git+-+.asf.yaml+features | ||
|
||
github: | ||
description: 'Apache Druid: a high performance real-time analytics database.' | ||
homepage: https://druid.apache.org/ | ||
|
||
# Attempt to make the auto-generated github emails more easily readable in email clients. | ||
# Configuration adapted from https://github.com/apache/plc4x/blob/develop/.asf.yaml. | ||
custom_subjects: | ||
new_pr: "[PR] {title} ({repository})" | ||
close_pr: "Re: [PR] {title} ({repository})" | ||
comment_pr: "Re: [PR] {title} ({repository})" | ||
diffcomment: "Re: [PR] {title} ({repository})" | ||
merge_pr: "Re: [PR] {title} ({repository})" | ||
new_issue: "[I] {title} ({repository})" | ||
comment_issue: "Re: [I] {title} ({repository})" | ||
close_issue: "Re: [I] {title} ({repository})" | ||
catchall: "[GH] {title} ({repository})" | ||
new_discussion: "[D] {title} ({repository})" | ||
edit_discussion: "Re: [D] {title} ({repository})" | ||
close_discussion: "Re: [D] {title} ({repository})" | ||
close_discussion_with_comment: "Re: [D] {title} ({repository})" | ||
reopen_discussion: "Re: [D] {title} ({repository})" | ||
new_comment_discussion: "Re: [D] {title} ({repository})" | ||
edit_comment_discussion: "Re: [D] {title} ({repository})" | ||
delete_comment_discussion: "Re: [D] {title} ({repository})" | ||
|
||
notifications: | ||
commits: [email protected] | ||
issues: [email protected] | ||
discussions: [email protected] | ||
pullrequests_status: [email protected] | ||
pullrequests_comment: [email protected] | ||
pullrequests_bot_dependabot: [email protected] |
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,10 @@ | ||
--- | ||
name: Flaky Test | ||
about: A template for Druid CI flaky test reports | ||
title: "Flaky Test: test name" | ||
labels: Flaky Test | ||
assignees: '' | ||
|
||
--- | ||
|
||
Please replace 'test name' in the title with the actual test name. Also include a stack trace as well as link to a failing test run, along with any investigation you might have done to triage the issue. |
File renamed without changes.
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
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,52 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
#!/bin/bash | ||
|
||
set -e | ||
|
||
JAR_INPUT_FILE="jfr-profiler-1.0.0.jar" | ||
JAR_OUTPUT_FILE="jfr-profiler.jar" | ||
ENV_VAR="JFR_PROFILER_ARG_LINE" | ||
|
||
if [ "$#" -ne 5 ]; then | ||
echo "usage: $0 <jdk_version> <run_id> <run_number> <run_attempt> <module>" | ||
fi | ||
|
||
if [[ "$1" -ge "17" ]]; | ||
then | ||
curl https://static.imply.io/cp/$JAR_INPUT_FILE -s -o $JAR_OUTPUT_FILE | ||
|
||
# Run 'java -version' and capture the output | ||
output=$(java -version 2>&1) | ||
|
||
# Extract the version number using grep and awk | ||
jvm_version=$(echo "$output" | grep "version" | awk -F '"' '{print $2}') | ||
|
||
|
||
echo $ENV_VAR=-javaagent:"$PWD"/$JAR_OUTPUT_FILE \ | ||
-Djfr.profiler.http.username=druid-ci \ | ||
-Djfr.profiler.http.password=w3Fb6PW8LIo849mViEkbgA== \ | ||
-Djfr.profiler.tags.project=druid \ | ||
-Djfr.profiler.tags.run_id=$2 \ | ||
-Djfr.profiler.tags.run_number=$3 \ | ||
-Djfr.profiler.tags.run_attempt=$4 \ | ||
-Djfr.profiler.tags.module=$5 \ | ||
-Djfr.profiler.tags.jvm_version=$jvm_version | ||
else | ||
echo $ENV_VAR=\"\" | ||
fi | ||
|
||
|
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.