-
Notifications
You must be signed in to change notification settings - Fork 6.2k
/
Copy pathCODEOWNERS
134 lines (95 loc) · 4.06 KB
/
CODEOWNERS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# See https://help.github.com/articles/about-codeowners/
# for more info about CODEOWNERS file
# It uses the same pattern rule for gitignore file,
# see https://git-scm.com/docs/gitignore#_pattern_format.
# ==== Documentation ====
# Authors responsible for copy-editing of the documentation.
# NOTE: Add @ray-project/ray-docs to all following docs subdirs.
/doc/ @ray-project/ray-docs
/doc/source/use-cases.rst @pcmoritz
# ==== Ray core ====
# API compatibility
/src/ray/protobuf/common.proto @pcmoritz @raulchen @ray-project/ray-core
/src/ray/protobuf/gcs.proto @pcmoritz @raulchen @ray-project/ray-core
/src/ray/protobuf/gcs_service.proto @pcmoritz @raulchen @ray-project/ray-core
# Autoscaler
/python/ray/autoscaler/ @ray-project/ray-core
# Metrics
/src/ray/stats/metric_defs.h @ray-project/ray-core
/src/ray/stats/metric_defs.cc @ray-project/ray-core
# Telemetry
/src/ray/protobuf/usage.proto @pcmoritz @thomasdesr
# All C++ code.
# /src/ray @ray-project/ray-core-cpp
# GCS
/src/ray/gcs/ @ray-project/ray-core
# Dependencies
/python/setup.py @richardliaw @edoakes @aslonnie
# CI
/ci/lint/format.sh @ray-project/ray-ci
/ci/docker @ray-project/ray-ci
/ci/ray_ci @ray-project/ray-ci
# Python worker.
#/python/ray/ @ray-project/ray-core
#!/python/ray/tune/ @ray-project/ray-core
#!/python/ray/rllib/ @ray-project/ray-core
# Java worker.
/java/dependencies.bzl @kfstorm @raulchen @WangTaoTheTonic @SongGuyang
/java/pom.xml @kfstorm @raulchen @WangTaoTheTonic @SongGuyang
/java/pom_template.xml @kfstorm @raulchen @WangTaoTheTonic @SongGuyang
/java/*/pom_template.xml @kfstorm @raulchen @WangTaoTheTonic @SongGuyang
/java/api/ @kfstorm @raulchen @WangTaoTheTonic @SongGuyang
# C++ worker
/cpp/include/ray @SongGuyang @raulchen @kfstorm @ray-project/ray-core
# Ray Client
/src/ray/protobuf/ray_client.proto @ray-project/ray-core
# Runtime Env
# TODO(SongGuyang): Add new items to guarantee runtime env API compatibility in multiple languages.
/src/ray/protobuf/runtime_env_common.proto @SongGuyang @raulchen @edoakes @ray-project/ray-core
/src/ray/protobuf/runtime_env_agent.proto @SongGuyang @raulchen @edoakes @ray-project/ray-core
# ==== Libraries and frameworks ====
# Common directory shared by core and the libraries.
# @edoakes is the czar for now because the pattern is new.
/python/ray/_common/ @edoakes @aslonnie
# Ray data.
/python/ray/data/ @ray-project/ray-data
/doc/source/data/ @ray-project/ray-data
# Ray workflows.
/python/ray/workflow/ @ray-project/ray-core
/doc/source/workflows/ @ray-project/ray-core @ray-project/ray-docs
# RLlib.
/rllib/ @sven1977 @simonsays1980
/doc/source/rllib/ @sven1977 @maxpumperla @simonsays1980 @ray-project/ray-docs
# Cluster (docs)
/doc/source/cluster/ @pcmoritz @kevin85421 @ray-project/ray-docs
# Tune
/python/ray/tune/ @hongpeng-guo @justinvyu @matthewdeng @raulchen @woshiyyya
/doc/source/tune/ @hongpeng-guo @justinvyu @matthewdeng @raulchen @woshiyyya @ray-project/ray-docs
# Train
/python/ray/train/ @hongpeng-guo @justinvyu @matthewdeng @raulchen @woshiyyya
/doc/source/train/ @hongpeng-guo @justinvyu @matthewdeng @raulchen @woshiyyya @ray-project/ray-docs
# LLM
/python/ray/llm/ @ray-project/ray-llm
# Serve (docs)
/doc/source/serve/ @edoakes @zcin @GeneDer @akshay-anyscale @ray-project/ray-docs
# ML Docker Dependencies
/python/requirements/ml/dl-cpu-requirements.txt @richardliaw @matthewdeng
/python/requirements/ml/dl-gpu-requirements.txt @richardliaw @matthewdeng
# Ray symbol export
/src/ray/ray_version_script.lds @aslonnie
/src/ray/ray_exported_symbols.lds @aslonnie
# Ray usage stats
/python/ray/_private/usage/ @edoakes @richardliaw @jjyao
/python/ray/dashboard/modules/usage_stats/ @edoakes @richardliaw @jjyao
# ==== Build and CI ====
# Bazel.
#/BUILD.bazel @ray-project/ray-core @ray-project/ray-ci
#/WORKSPACE @ray-project/ray-core @ray-project/ray-ci
#/bazel/ @ray-project/ray-core @ray-project/ray-ci
# CI scripts.
#/ci/ @ray-project/ray-core @ray-project/ray-ci
# Buildkite pipeline management
.buildkite/hooks @ray-project/ray-ci
/release/ray_release @ray-project/ray-ci
/.github/ISSUE_TEMPLATE/ @aslonnie
/.github/workflows/ @ray-project/ray-ci