-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into async-fetch
- Loading branch information
Showing
6,190 changed files
with
164,364 additions
and
43,988 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
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,4 +1,5 @@ | ||
* text eol=lf | ||
*.jar binary | ||
*.bat binary | ||
*.zip binary | ||
*.exe binary | ||
|
Validating CODEOWNERS rules …
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 +1,27 @@ | ||
* @reta @anasalkouz @andrross @reta @Bukhtawar @CEHENKLE @dblock @gbbafna @setiah @kartg @kotwanikunal @mch2 @nknize @owaiskazi19 @Rishikesh1159 @ryanbogan @saratvemulapalli @shwetathareja @dreamer-89 @tlfeng @VachaShah @dbwiddis @sachinpkale @sohami | ||
# CODEOWNERS manages notifications, not PR approvals | ||
# For PR approvals see /.github/workflows/maintainer-approval.yml | ||
|
||
# Files have a single rule applied, the last match decides the owner | ||
# If you would like to more specifically apply ownership, include existing owner in new sub fields | ||
|
||
# To verify changes of CODEOWNERS file | ||
# In VSCode | ||
# 1. Install extension https://marketplace.visualstudio.com/items?itemName=jasonnutter.vscode-codeowners | ||
# 2. Go to a file | ||
# 3. Use the command palette to run the CODEOWNERS: Show owners of current file command, which will display all code owners for the current file. | ||
|
||
# Default ownership for all repo files | ||
* @abbashus @adnapibar @anasalkouz @andrross @Bukhtawar @CEHENKLE @dblock @dbwiddis @dreamer-89 @gbbafna @kotwanikunal @mch2 @msfroh @nknize @owaiskazi19 @reta @Rishikesh1159 @ryanbogan @sachinpkale @saratvemulapalli @setiah @shwetathareja @sohami @tlfeng @VachaShah | ||
|
||
/modules/transport-netty4/ @peternied | ||
|
||
/plugins/identity-shiro/ @peternied | ||
|
||
/server/src/main/java/org/opensearch/extensions/ @peternied | ||
/server/src/main/java/org/opensearch/identity/ @peternied | ||
/server/src/main/java/org/opensearch/threadpool/ @peternied | ||
/server/src/main/java/org/opensearch/transport/ @peternied | ||
|
||
/.github/ @peternied | ||
|
||
/MAINTAINERS.md @abbashus @adnapibar @anasalkouz @andrross @Bukhtawar @CEHENKLE @dblock @dbwiddis @dreamer-89 @gbbafna @kotwanikunal @mch2 @msfroh @nknize @owaiskazi19 @peternied @reta @Rishikesh1159 @ryanbogan @sachinpkale @saratvemulapalli @setiah @shwetathareja @sohami @tlfeng @VachaShah |
This file was deleted.
Oops, something went wrong.
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,80 @@ | ||
name: 🐛 Bug report | ||
description: Create a report to help us improve | ||
title: "[BUG] <title>" | ||
labels: ['bug, untriaged'] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Related component | ||
description: Choose a specific OpenSearch component your bug belongs to. If you are unsure which to select or if the component is not present, select "Other". | ||
multiple: false | ||
options: | ||
- # Empty first option to force selection | ||
- Build | ||
- Clients | ||
- Cluster Manager | ||
- Extensions | ||
- Indexing:Performance | ||
- Indexing:Replication | ||
- Indexing | ||
- Libraries | ||
- Other | ||
- Plugins | ||
- Search:Aggregations | ||
- Search:Performance | ||
- Search:Query Capabilities | ||
- Search:Query Insights | ||
- Search:Relevance | ||
- Search:Remote Search | ||
- Search:Resiliency | ||
- Search:Searchable Snapshots | ||
- Search | ||
- Storage:Durability | ||
- Storage:Performance | ||
- Storage:Remote | ||
- Storage:Snapshots | ||
- Storage | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: To Reproduce | ||
description: Steps to reproduce the behavior. | ||
value: | | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Additional Details | ||
description: Add any other context about the problem here. | ||
value: | | ||
**Plugins** | ||
Please list all plugins currently enabled. | ||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
**Host/Environment (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Version [e.g. 22] | ||
**Additional context** | ||
Add any other context about the problem here. | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
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,67 @@ | ||
name: 🎆 Feature request | ||
description: Suggest an idea for this project | ||
title: '[Feature Request] <title>' | ||
labels: ['enhancement, untriaged'] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Is your feature request related to a problem? Please describe | ||
description: A clear and concise description of what the problem is. | ||
placeholder: Ex. I'm always frustrated when [...] | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: A clear and concise description of what you want to happen. | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Related component | ||
description: Choose a specific OpenSearch component your feature request belongs to. If you are unsure of which component to select or if the component is not present, select "Other". | ||
multiple: false | ||
options: | ||
- # Empty first option to force selection | ||
- Build | ||
- Clients | ||
- Cluster Manager | ||
- Extensions | ||
- Indexing:Performance | ||
- Indexing:Replication | ||
- Indexing | ||
- Libraries | ||
- Other | ||
- Plugins | ||
- Search:Aggregations | ||
- Search:Performance | ||
- Search:Query Capabilities | ||
- Search:Query Insights | ||
- Search:Relevance | ||
- Search:Remote Search | ||
- Search:Resiliency | ||
- Search:Searchable Snapshots | ||
- Search | ||
- Storage:Durability | ||
- Storage:Performance | ||
- Storage:Remote | ||
- Storage:Snapshots | ||
- Storage | ||
- ShardManagement:Placement | ||
- ShardManagement:Performance | ||
- ShardManagement:Resiliency | ||
- ShardManagement:Insights | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: A clear and concise description of any alternative solutions or features you've considered. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
description: Add any other context or screenshots about the feature request here. | ||
validations: | ||
required: false |
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,58 @@ | ||
name: ✨ Meta Issue | ||
description: An issue that collects other issues together to describe a larger project or activity. | ||
title: '[META] <title>' | ||
labels: ['Meta, untriaged'] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Please describe the end goal of this project | ||
description: A clear and concise description of this project/endeavor. This should be understandable to someone with no context. | ||
placeholder: Ex. Views is a way to project indices in OpenSearch, these views act as a focal point for describing the underlying data and how the data is accessed. It allows for restricting the scope and filtering the response consistently. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Supporting References | ||
description: Please provide links (and descriptions!) to RFCs, design docs, etc | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Issues | ||
description: Please create a list of issues that should be tracked by this meta issue, including a short description. The purpose is to provide everyone on the project with an "at a glance" update of the state us the work being tracked. If you use the format "- [ ]" it will put your list into a checklist. | ||
placeholder: Ex. - [ ] https://github.com/opensearch-project/security/issues/3888 Add views to the cluster metadata schema | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Related component | ||
description: Choose a specific OpenSearch component your project belongs to. If you are unsure of which component to select or if the component is not present, select "Other". | ||
multiple: false | ||
options: | ||
- # Empty first option to force selection | ||
- Build | ||
- Clients | ||
- Cluster Manager | ||
- Extensions | ||
- Indexing:Performance | ||
- Indexing:Replication | ||
- Indexing | ||
- Libraries | ||
- Other | ||
- Plugins | ||
- Search:Aggregations | ||
- Search:Performance | ||
- Search:Query Capabilities | ||
- Search:Query Insights | ||
- Search:Relevance | ||
- Search:Remote Search | ||
- Search:Resiliency | ||
- Search:Searchable Snapshots | ||
- Search | ||
- Storage:Durability | ||
- Storage:Performance | ||
- Storage:Remote | ||
- Storage:Snapshots | ||
- Storage | ||
validations: | ||
required: true |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.