-
Notifications
You must be signed in to change notification settings - Fork 465
/
Copy pathCODEOWNERS
133 lines (132 loc) · 7.52 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
# Describes which individuals/teams are reponsible for which code in the
# repository.
#
# NOTE: ownership by an individual is a smell, as is ownership by multiple
# teams. We have a soft goal of arranging our code so that each entry names
# a single team as owner. Better not to hide the truth, though; we'd rather
# be honest about where we still have individuals as owners.
#
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
/.cargo @benesch
/.config @benesch
/.github @benesch
/bin
/bin/lint-versions @MaterializeInc/testing
/ci @MaterializeInc/testing
/ci/test/lint-deps.toml @danhhz @benesch
/doc/user @morsapaes
/doc/developer/reference/compute @MaterializeInc/compute
/doc/developer/reference/storage @MaterializeInc/storage
/misc/bazel @parkmycar @guswynn @maddyblue
/misc/dbt-materialize @morsapaes
/misc/python/materialize/benches @MaterializeInc/testing
/misc/python/materialize/buildkite_insights @MaterializeInc/testing
/misc/python/materialize/checks @MaterializeInc/testing
/misc/python/materialize/ci_util @MaterializeInc/testing
/misc/python/materialize/cli/ci_annotate_errors.py @MaterializeInc/testing
/misc/python/materialize/cli/ci_closed_issues_detect.py @MaterializeInc/testing
/misc/python/materialize/cli/ci_coverage_pr_report.py @MaterializeInc/testing
/misc/python/materialize/cli/ci_upload_heap_profiles.py @MaterializeInc/testing
/misc/python/materialize/cloudtest @MaterializeInc/cloud @MaterializeInc/testing
/misc/python/materialize/data_ingest @MaterializeInc/testing
/misc/python/materialize/parallel_workload @MaterializeInc/testing
/misc/python/materialize/postgres_consistency @MaterializeInc/testing
/misc/python/materialize/scalability @MaterializeInc/testing
/misc/python/materialize/sqlsmith.py @MaterializeInc/testing
/misc/python/materialize/version_consistency @MaterializeInc/testing
/misc/python/materialize/zippy @MaterializeInc/testing
/src/adapter @MaterializeInc/adapter
/src/adapter-types @MaterializeInc/adapter
/src/adapter/src/explain @MaterializeInc/compute
/src/adapter/src/optimize @MaterializeInc/compute
# to track changes to feature flags
/src/adapter/src/coord/ddl.rs @MaterializeInc/testing
# to track changes to feature flags
/src/adapter/src/flags.rs @MaterializeInc/testing
/src/alloc @benesch
/src/audit-log @MaterializeInc/adapter
/src/avro @MaterializeInc/storage
/src/avro-derive @MaterializeInc/storage
/src/build-id @teskje
/src/build-info @benesch
/src/catalog @MaterializeInc/adapter
/src/catalog-debug @MaterializeInc/adapter
/src/ccsr @benesch
/src/cloud-resources @MaterializeInc/cloud
/src/cluster @MaterializeInc/compute @MaterializeInc/storage
/src/cluster-client @MaterializeInc/compute @MaterializeInc/storage
/src/clusterd @MaterializeInc/compute @MaterializeInc/storage
/src/compute @MaterializeInc/compute
/src/compute-client @MaterializeInc/compute
/src/compute-types @MaterializeInc/compute
/src/controller @MaterializeInc/compute @MaterializeInc/storage
/src/controller-types @MaterializeInc/compute @MaterializeInc/storage
/src/dyncfg @danhhz
/src/dyncfgs @danhhz
/src/environmentd @MaterializeInc/adapter
/src/expr @MaterializeInc/compute
/src/expr-test-util @MaterializeInc/compute
/src/fivetran-destination @MaterializeInc/adapter
/src/frontegg-auth @MaterializeInc/adapter
/src/http-util @MaterializeInc/adapter
/src/interchange @MaterializeInc/storage
/src/kafka-util @MaterializeInc/storage
/src/lowertest @MaterializeInc/compute
/src/lowertest-derive @MaterializeInc/compute
/src/metabase @benesch
/src/mysql-util @MaterializeInc/storage
/src/mz @MaterializeInc/integrations
/src/npm @benesch
/src/orchestrator @benesch
/src/orchestrator-kubernetes @benesch
/src/orchestrator-process @benesch
/src/orchestrator-tracing @benesch
/src/ore @benesch
/src/persist @MaterializeInc/persist
/src/persist-cli @MaterializeInc/persist
/src/persist-client @MaterializeInc/persist
/src/persist-txn @MaterializeInc/persist
/src/persist-types @MaterializeInc/persist
/src/pgcopy @MaterializeInc/adapter
/src/pgrepr @MaterializeInc/adapter
/src/pgtest @MaterializeInc/adapter
/src/pgwire @MaterializeInc/adapter
/src/pid-file @benesch
/src/postgres-util @MaterializeInc/storage
/src/prof @teskje
/src/proto @aalexandrov
/src/repr @MaterializeInc/storage @MaterializeInc/compute
/src/repr/src/row @MaterializeInc/persist
/src/repr-test-util @MaterializeInc/compute
/src/rocksdb @MaterializeInc/storage
/src/s3-datagen @MaterializeInc/storage
/src/secrets @MaterializeInc/cloud
/src/segment @benesch
/src/service @MaterializeInc/storage @MaterializeInc/compute
/src/sql @MaterializeInc/adapter
/src/sql/src/session/vars.rs
# HirRelationExpr is the boundary between the `sql` crate and the compute
# layer, and is jointly owned by the two teams.
/src/sql/src/plan/explain @MaterializeInc/compute
/src/sql/src/plan/expr.rs @MaterializeInc/adapter @MaterializeInc/compute
# The lowering of HirRelationExpr to MirRelationExpr is part of the compute
# layer, despite being located in the `sql` crate.
/src/sql/src/plan/lowering @MaterializeInc/compute
/src/sql-lexer @MaterializeInc/adapter
/src/sql-parser @MaterializeInc/adapter
/src/sqllogictest @MaterializeInc/adapter
/src/ssh-util @MaterializeInc/storage
/src/storage @MaterializeInc/storage
/src/storage-client @MaterializeInc/storage
/src/storage-controller @MaterializeInc/storage
/src/storage-operators @MaterializeInc/storage
/src/storage-types @MaterializeInc/storage
/src/test-macro @MaterializeInc/testing
/src/testdrive @MaterializeInc/testing
/src/timely-util @MaterializeInc/compute
/src/transform @MaterializeInc/compute
/src/walkabout @benesch
/src/workspace-hack @benesch
/test
/MODULE.bazel @parkmycar @guswynn @maddyblue
/WORKSPACE @parkmycar @guswynn @maddyblue