You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2021/12/31 13:28:35 UTC

[arrow-datafusion] branch master updated: add rfc for datafusion (#1490)

This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new 72410f6  add rfc for datafusion (#1490)
72410f6 is described below

commit 72410f69422c29c14bba2e8a1b561f139844e48d
Author: xudong.w <wx...@gmail.com>
AuthorDate: Fri Dec 31 21:28:26 2021 +0800

    add rfc for datafusion (#1490)
---
 docs/source/community/communication.md     |  5 ++-
 docs/source/specification/rfcs/template.md | 58 ++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+), 3 deletions(-)

diff --git a/docs/source/community/communication.md b/docs/source/community/communication.md
index 76aa0ea..b34b913 100644
--- a/docs/source/community/communication.md
+++ b/docs/source/community/communication.md
@@ -76,9 +76,8 @@ Our source code is hosted on
 [GitHub](https://github.com/apache/arrow-datafusion). For developers new to
 the project, we have curated a
 [good-first-issue](https://github.com/apache/arrow-datafusion/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)
-list to help you get started.
+list to help you get started. You can find datafusion's major designs in docs/source/specification.
 
 We use GitHub issues for maintaining a queue of development work and as the
 public record. We often use Google docs, Github issues and pull requests for
-quick and small design discussions. For major design change proposals, please
-make sure to send them to the dev list for more visibility.
+quick and small design discussions. For major design change proposals, we encourage you to write a rfc.
diff --git a/docs/source/specification/rfcs/template.md b/docs/source/specification/rfcs/template.md
new file mode 100644
index 0000000..98704fd
--- /dev/null
+++ b/docs/source/specification/rfcs/template.md
@@ -0,0 +1,58 @@
+<!---
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+
+Feature Name:
+
+Status: draft/in-progress/completed/
+
+Start Date: YYYY-MM-DD
+
+Authors:
+
+RFC PR: #
+
+Datafusion Issue: #
+
+---
+
+### Background
+
+---
+
+### Goals
+
+---
+
+### Non-Goals
+
+---
+
+### Survey
+
+---
+
+### General design
+
+---
+
+### Detailed design
+
+---
+
+### Others