The Linux Foundation Projects
Delta Lake

贡献 Delta Lake

我们非常欢迎对 Delta Lake 的贡献。我们使用 GitHub Issues 来跟踪社区报告的问题,并使用 GitHub Pull Requests 来接受更改。

治理

Delta Lake 是一个独立的开源项目,不受任何单一公司的控制。为了强调这一点,我们于 2019 年加入了 Delta Lake 项目,该项目是 Linux 基金会项目的子项目。在该项目内,我们根据 这些规则 做出决策。

Delta Lake 得到来自 50 多个组织、跨多个代码库的众多开发人员的支持。自 2019 年以来,已有超过 190 名开发人员为 Delta Lake 做出了贡献!Delta Lake 社区正在飞速发展,Delta Users Slack 中有超过 6000 名成员。

欲了解更多信息,请参阅 创始技术章程

沟通

  • 在开始开发主要功能之前,请通过 GitHubSlack电子邮件 等方式与我们联系。我们将确保没有其他人已经在进行这项工作,并请您提交一个 GitHub Issue。
  • “主要功能”定义为任何更改代码行数 > 100 LOC(不包括测试),或更改任何面向用户的行为的更改。
  • 我们将使用 GitHub Issue 讨论功能并达成一致。
  • 这是为了防止浪费您和我们的时间。
  • 主要功能的 GitHub 评审过程也很重要,以便拥有提交权限的组织可以就设计达成一致。
  • 如果适合编写设计文档,则该文档必须托管在 GitHub 跟踪 Issue 中,或从 Issue 链接到并在全球可读的位置托管。设计文档的示例包括 示例 1示例 2示例 3
  • 具体来说,如果目标是添加新的扩展,请阅读扩展策略。
  • 小的补丁和错误修复不需要事先沟通。如果您发现了一个错误并有办法解决它,请创建一个 Issue 或创建一个 拉取请求
  • 如果您有解释用例或功能的示例代码,请创建一个拉取请求,提交到 examples 下。

编码风格

我们通常遵循 Apache Spark Scala 风格指南

签署您的作品

签核是补丁说明末尾的简单一行。您的签名证明您编写了该补丁,或者您有权将其作为开源补丁传递。规则非常简单:如果您能够证明以下内容(来自 developercertificate.org)

Developer Certificate of Origin
Version 1.1

Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
1 Letterman Drive
Suite D4700
San Francisco, CA, 94129

Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.


Developer's Certificate of Origin 1.1

By making a contribution to this project, I certify that:

(a) The contribution was created in whole or in part by me and I
    have the right to submit it under the open source license
    indicated in the file; or

(b) The contribution is based upon previous work that, to the best
    of my knowledge, is covered under an appropriate open source
    license and I have the right under that license to submit that
    work with modifications, whether created in whole or in part
    by me, under the same open source license (unless I am
    permitted to submit under a different license), as indicated
    in the file; or

(c) The contribution was provided directly to me by some other
    person who certified (a), (b) or (c) and I have not modified
    it.

(d) I understand and agree that this project and the contribution
    are public and that a record of the contribution (including all
    personal information I submit with it, including my sign-off) is
    maintained indefinitely and may be redistributed consistent with
    this project or the open source license(s) involved.

然后,您只需在每个 git 提交消息中添加一行

Signed-off-by: Jane Smith <jane.smith@email.com>
Use your real name (sorry, no pseudonyms or anonymous contributions.)

如果您设置了 user.nameuser.email git 配置,您可以使用 git commit -s 自动签署您的提交。