docs/rfc.md
The "RFC" (request for comments) process is intended to provide a consistent and controlled path for new features, significant modifications, or any other significant proposal to enter DataHub and its related frameworks.
Many changes, including bug fixes and documentation improvements can be implemented and reviewed via the normal GitHub pull request workflow.
Some changes though are "substantial", and we ask that these be put through a bit of a design process and produce a consensus among the DataHub core teams.
An RFC goes through the following stages:
You need to follow this process if you intend to make "substantial" changes to any components in the DataHub git repo, their documentation, or any other projects under the purview of the DataHub core teams. What constitutes a "substantial" change is evolving based on community norms, but may include the following:
Some changes do not require an RFC:
If you submit a pull request to implement a new, major feature without going through the RFC process, it may be closed with a polite request to submit an RFC first.
It's often helpful to get feedback on your concept before diving into the level of API design detail required for an RFC. You may open an issue on this repo to start a high-level discussion, with the goal of eventually formulating an RFC pull request with the specific implementation design. We also highly recommend sharing drafts of RFCs in #contribute-code on the DataHub Slack for early feedback.
In short, to get a major feature added to DataHub, one must first get the RFC merged into the main DataHub repository as a markdown file. At that point the RFC is 'active' and may be implemented with the goal of eventual inclusion into DataHub.
template.md file from docs/rfcs/ to docs/rfcs/active/000-my-feature.md, where my-feature is more
descriptive. Don't assign an RFC number yet.Once an RFC becomes active then authors may implement it and submit the feature as a pull request to the DataHub repo. Becoming 'active' is not a rubber stamp, and in particular still does not mean the feature will ultimately be merged; it does mean that the core team has agreed to it in principle and are amenable to merging it.
Furthermore, the fact that a given RFC has been accepted and is 'active' implies nothing about what priority is assigned to its implementation, nor whether anybody is currently working on it.
Modifications to active RFC's can be done in followup PR's. We strive to write each RFC in a manner that it will reflect the final design of the feature; but the nature of the process means that we cannot expect every merged RFC to actually reflect what the end result will be at the time of the next major release; therefore we try to keep each RFC document somewhat in sync with the language feature as planned, tracking such changes via followup pull requests to the document.
The author of an RFC is not obligated to implement it. Of course, the RFC author (like any other developer) is welcome to post an implementation for review after the RFC has been accepted.
An active RFC should have the link to the implementation PR(s) listed, if there are any. Feedback to the actual implementation should be conducted in the implementation PR instead of the original RFC PR.
If you are interested in working on the implementation for an 'active' RFC, but cannot determine if someone else is already working on it, feel free to ask (e.g. by leaving a comment on the associated issue).
Once an RFC has finally been implemented, first off, congratulations! And thank you for your contribution! Second, to
help track the status of the RFC, please make one final PR to move the RFC from docs/rfcs/active to
docs/rfcs/accepted.
Most of the DataHub team will attempt to review some set of open RFC pull requests on a regular basis. If a DataHub team member believes an RFC PR is ready to be accepted into active status, they can approve the PR using GitHub's review feature to signal their approval of the RFCs.
DataHub's RFC process is inspired by many others, including Vue.js and Ember.