You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@toree.apache.org by lr...@apache.org on 2018/01/14 05:26:22 UTC

[1/3] incubator-toree-website git commit: Add contributing page to Toree website

Repository: incubator-toree-website
Updated Branches:
  refs/heads/master 8ed7cf789 -> e11f1a486


Add contributing page to Toree website

Add page that describes best practices to contribute
to the Apache Toree community, including best practices
to be used when creating a JIRA, PULL REQUEST, etc.


Project: http://git-wip-us.apache.org/repos/asf/incubator-toree-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-toree-website/commit/ea67c02d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-toree-website/tree/ea67c02d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-toree-website/diff/ea67c02d

Branch: refs/heads/master
Commit: ea67c02d87b513cf8b002c00c080134edc779303
Parents: 8ed7cf7
Author: Luciano Resende <lr...@apache.org>
Authored: Sat Jan 13 21:24:52 2018 -0800
Committer: Luciano Resende <lr...@apache.org>
Committed: Sat Jan 13 21:24:52 2018 -0800

----------------------------------------------------------------------
 site/_data/navigation.yml |   2 +
 site/contributing.md      | 190 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 192 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-toree-website/blob/ea67c02d/site/_data/navigation.yml
----------------------------------------------------------------------
diff --git a/site/_data/navigation.yml b/site/_data/navigation.yml
index 31c8848..3f90ae1 100644
--- a/site/_data/navigation.yml
+++ b/site/_data/navigation.yml
@@ -28,6 +28,8 @@ topnav:
   subcategories:
   - title: Get Involved
     url: /community
+  - title: Contributing
+    url: /contributing
   - title: Project Committers
     url: /community-members
 

http://git-wip-us.apache.org/repos/asf/incubator-toree-website/blob/ea67c02d/site/contributing.md
----------------------------------------------------------------------
diff --git a/site/contributing.md b/site/contributing.md
new file mode 100644
index 0000000..47ee98e
--- /dev/null
+++ b/site/contributing.md
@@ -0,0 +1,190 @@
+---
+layout: page
+title: Contributing
+description: Contributing to the project page
+group: nav-right
+---
+<!--
+{% comment %}
+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.
+{% endcomment %}
+-->
+
+# Contributing to {{ site.data.project.name }} Community
+
+This guide documents the best way to make various types of contribution to Apache Toree, including what is required before submitting a code change and how to properly merge them.
+
+Contributing to Toree doesn't just mean writing code. Helping testing and reviewing pull requests and improving documentation are also welcome. In fact, proposing significant code changes usually requires first gaining experience and credibility within the community by helping in other ways. This is also a guide to becoming an effective contributor.
+
+
+## Contributing by Helping Other Users
+
+A great way to contribute to Toree is to help answer user questions on the [dev@toree.incubator.apache.org]({{ site.data.project.dev_list_archive_mailarchive }}) mailing list. There are always many new users; taking a few minutes to help answer a question is a very valuable community service.
+
+Contributors should subscribe to this list and follow it in order to keep up to date on what's happening in Toree. Answering questions is an excellent and visible way to help the community, which also demonstrates your expertise.
+
+
+## Contributing by Testing Releases
+
+Toree's release process is community-oriented, and members of the community can vote on new releases on the [dev@toree.incubator.apache.org]({{ site.data.project.dev_list_archive_mailarchive }}) mailing list. Toree users are invited to subscribe to this list to receive announcements of release vote, and test Toree extensions on newer release and provide feedback on any performance or correctness issues found in the newer release.
+
+<!--
+{% comment %}
+# Contributing Documentation Changes
+
+To create or modify the project documentation, edit the Markdown source files which is usually located at $project/docs directory, whose README file shows how to build the documentation locally to test your changes.
+
+The process to propose a doc change is otherwise the same as the process for proposing code changes below.
+{% endcomment %}
+-->
+
+## Contributing code changes
+
+Please review the preceding section before proposing a code change. This section documents how to do so:
+
+
+<img src='https://developer.atlassian.com/s/en_GB/5989/aaad9997c145089d7f38b9dea0ac5b91728ef55a.56/_/images/icons/emoticons/check.png'> **When you contribute code, you affirm that the contribution is your original work and that you license the work to the project under the project's open source license. Whether or not you state this explicitly, by submitting any copyrighted material via pull request, email, or other means you agree to license the material under the project's open source license and warrant that you have the legal authority to do so.**
+
+
+
+1. [Identifiyng JIRAS](#JIRA)
+1. [Before creating a Pull Request](#Before+creating+a+Pull+Request)
+1. [Creating a Pull Request](#Creating+a+Pull+Request)
+1. [The Review Process](#The+Review+Process)
+4. [Merging Pull Requests](#Merging+Pull+Requests)
+
+### JIRA
+
+Toree uses JIRA to track issues, including bugs and improvements, and uses Github pull requests to manage the review and merge of specific code changes. That is, JIRAs are used to describe what should be fixed or changed, and high-level approaches, and pull requests describe how to implement that change in the project's source code. For example, major design decisions are discussed in JIRA.
+
+1. Find the existing [TOREE JIRA](https://issues.apache.org/jira/browse/TOREE) that the change pertains to.
+  * Do not create a new JIRA if creating a change to address an existing issue in JIRA; add to the existing discussion and work instead
+  * Look for existing pull requests that are linked from the JIRA, to understand if someone is already working on the JIRA
+1. If the change is new, then it usually needs a new JIRA. However, trivial changes, where the what should change is virtually the same as the how it should change do not require a JIRA. Example: "Fix typos in Foo scaladoc"
+1. If required, create a new JIRA:
+  * Provide a descriptive Title. "Update web UI" or "Problem in scheduler" is not sufficient. "Kafka Streaming support fails to handle empty queue in YARN cluster mode" is good.
+  * Write a detailed Description. For bug reports, this should ideally include a short reproduction of the problem. For new features, it may include a design document.
+  * Set required fields:
+    * **Issue Type**. Generally, Bug, Improvement and New Feature are the only types used in Toree.
+    * **Priority**. Set to Major or below; higher priorities are generally reserved for committers to set. JIRA tends to unfortunately conflate "size" and "importance" in its Priority field values. Their meaning is roughly:
+      * Blocker: pointless to release without this change as the release would be unusable to a large minority of users
+      * Critical: a large minority of users are missing important functionality without this, and/or a workaround is difficult
+      * Major: a small minority of users are missing important functionality without this, and there is a workaround
+      * Minor: a niche use case is missing some support, but it does not affect usage or is easily worked around
+      * Trivial: a nice-to-have change but unlikely to be any problem in practice otherwise
+    * **Component**
+    * **Affects Version**. For Bugs, assign at least one version that is known to exhibit the problem or need the change
+  * Do not set the following fields:
+    * **Fix Version**. This is assigned by committers only when resolved.
+    * **Target Version**. This is assigned by committers to indicate a PR has been accepted for possible fix by the target version.
+  * Do not include a patch file; pull requests are used to propose the actual change.
+1. If the change is a large change, consider inviting discussion on the issue at dev@toree.incubator.apache.org first before proceeding to implement the change.
+
+
+### Before creating a Pull Request
+
+Fork the Github repository at https://github.com/apache/incubator-toree and clone your fork if you haven't already
+
+* If you haven't done so, please set upstream as described in [GitHub Documentation](https://help.github.com/articles/configuring-a-remote-for-a-fork/)
+
+Make sure you have the most up to date code
+
+Make sure you do not have any uncommitted changes and rebase master with latest changes from upstream:
+
+    git fetch upstream
+    git checkout master
+    git rebase upstream/master
+
+Now you should rebase your branch with master, to receive the upstream changes
+
+    git checkout branch
+    git rebase master
+
+
+In both cases, you can have conflicts:
+
+
+    error: could not apply fa39187... something to add to patch A
+
+    When you have resolved this problem, run "git rebase --continue".
+    If you prefer to skip this patch, run "git rebase --skip" instead.
+    To check out the original branch and stop rebasing, run "git rebase --abort".
+    Could not apply fa39187f3c3dfd2ab5faa38ac01cf3de7ce2e841... Change fake file
+
+
+Here, Git is telling you which commit is causing the conflict (fa39187). You're given three choices:
+
+* You can run **git rebase --abort** to completely undo the rebase. Git will return you to your branch's state as it was before git rebase was called.
+* You can run **git rebase --skip** to completely skip the commit. That means that none of the changes introduced by the problematic commit will be included. It is very rare that you would choose this option.
+* You can fix the conflict.
+
+To fix the conflict, you can follow [the standard procedures for resolving merge conflicts from the command line](https://help.github.com/articles/resolving-a-merge-conflict-from-the-command-line). When you're finished, you'll need to call **git rebase --continue** in order for Git to continue processing the rest of the rebase.
+
+### Creating a Pull Request
+
+1. Create a new branch, push commits to the branch.
+1. Consider whether documentation or tests need to be added or updated as part of the change, and add them as needed.
+1. Open a pull request against the master branch of apache/incubator-toree. (Only in special cases would the PR be opened against other branches.)
+  * The PR title should be of the form [TOREE-xxxx] Title, where TOREE-xxxx is the relevant JIRA number and Title may be the JIRA's title or a more specific title describing the PR itself.
+  * If the pull request is still a work in progress, and so is not ready to be merged, but needs to be pushed to Github to facilitate review, then add [WIP] after the component.
+1. Follow [The 7 rules for a great commit message](http://chris.beams.io/posts/git-commit/)
+  * Separate subject from body with a blank line
+  * Limit the subject line to 50 characters
+  * Capitalize the subject line
+  * Do not end the subject line with a period
+  * Use the imperative mood in the subject line
+  * Wrap the body at 72 characters
+  * Use the body to explain what and why vs. how
+
+Below is an example of a good commit message
+
+    [TOREE-130] Performance enhancements for decision tree
+
+    Generate Matrix with random values through local memory
+    if there is sufficient memory.
+
+
+### Code Review Criteria
+Before considering how to contribute code, it's useful to understand how code is reviewed, and why changes may be rejected. Simply put, changes that have many or large positives, and few negative effects or risks, are much more likely to be merged, and merged quickly. Risky and less valuable changes are very unlikely to be merged, and may be rejected outright rather than receive iterations of review.
+
+**Positives**
+
+* Fixes the root cause of a bug in existing functionality
+* Adds functionality or fixes a problem needed by a large number of users
+* Simple, targeted
+* Easily tested; has tests
+* Reduces complexity and lines of code
+* Change has already been discussed and is known to committers
+
+**Negatives, Risks**
+
+* Band-aids a symptom of a bug only
+* Introduces complex new functionality, especially an API that needs to be supported
+* Adds complexity that only helps a niche use case
+* Changes a public API or semantics (rarely allowed)
+* Adds large dependencies
+* Changes versions of existing dependencies
+* Adds a large amount of code
+* Makes lots of modifications in one "big bang" change
+
+### The Review Process
+
+* Other reviewers, including committers, may comment on the changes and suggest modifications. Changes can be added by simply pushing more commits to the same branch.
+* Lively, polite, rapid technical debate is encouraged from everyone in the community. The outcome may be a rejection of the entire change.
+* Reviewers can indicate that a change looks suitable for merging with a comment such as: "I think this patch looks good". Toree uses the LGTM convention for indicating the strongest level of technical sign-off on a patch: simply comment with the word "LGTM". It specifically means: "I've looked at this thoroughly and take as much ownership as if I wrote the patch myself". If you comment LGTM you will be expected to help with bugs or follow-up issues on the patch. Consistent, judicious use of LGTMs is a great way to gain credibility as a reviewer with the broader community.
+* Sometimes, other changes will be merged which conflict with your pull request's changes. The PR can't be merged until the conflict is resolved. This can be resolved with "git fetch origin" followed by "git merge origin/master" and resolving the conflicts by hand, then pushing the result to your branch.
+* Try to be responsive to the discussion rather than let days pass between replies
+


[3/3] incubator-toree-website git commit: Remove obsolete README in favor of README.md

Posted by lr...@apache.org.
Remove obsolete README in favor of README.md


Project: http://git-wip-us.apache.org/repos/asf/incubator-toree-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-toree-website/commit/e11f1a48
Tree: http://git-wip-us.apache.org/repos/asf/incubator-toree-website/tree/e11f1a48
Diff: http://git-wip-us.apache.org/repos/asf/incubator-toree-website/diff/e11f1a48

Branch: refs/heads/master
Commit: e11f1a486d44ccd58d00828347680a2f50bba727
Parents: 869d845
Author: Luciano Resende <lr...@apache.org>
Authored: Sat Jan 13 21:26:05 2018 -0800
Committer: Luciano Resende <lr...@apache.org>
Committed: Sat Jan 13 21:26:05 2018 -0800

----------------------------------------------------------------------
 README | 9 ---------
 1 file changed, 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-toree-website/blob/e11f1a48/README
----------------------------------------------------------------------
diff --git a/README b/README
deleted file mode 100644
index bebf029..0000000
--- a/README
+++ /dev/null
@@ -1,9 +0,0 @@
-Apache Website Template release 0.0.1
-
-This is a source or binary distribution of Apache Website Template.
-
-The LICENSE and NOTICE files contain license information.
-
-README.md explains the purpose of this project, how to generate and
-deploy a simple web site based on this template, and how to create a
-web site for your project based on this template.


[2/3] incubator-toree-website git commit: Fix project name (copy+paste error)

Posted by lr...@apache.org.
Fix project name (copy+paste error)


Project: http://git-wip-us.apache.org/repos/asf/incubator-toree-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-toree-website/commit/869d8459
Tree: http://git-wip-us.apache.org/repos/asf/incubator-toree-website/tree/869d8459
Diff: http://git-wip-us.apache.org/repos/asf/incubator-toree-website/diff/869d8459

Branch: refs/heads/master
Commit: 869d8459fef967939e2b29068eaac7d4884dfb6c
Parents: ea67c02
Author: Luciano Resende <lr...@apache.org>
Authored: Sat Jan 13 21:25:51 2018 -0800
Committer: Luciano Resende <lr...@apache.org>
Committed: Sat Jan 13 21:25:51 2018 -0800

----------------------------------------------------------------------
 site/community.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-toree-website/blob/869d8459/site/community.md
----------------------------------------------------------------------
diff --git a/site/community.md b/site/community.md
index 42139e5..54313f9 100644
--- a/site/community.md
+++ b/site/community.md
@@ -63,7 +63,7 @@ Before submitting an issue, please:
 
 * Verify that the bug does in fact exist.
 * Search the issue tracker to verify there is no existing issue reporting the bug you've found.
-* Consider tracking down the bug yourself in the Wink's source and submitting a patch along with your bug report. This is a great time saver for the Wink developers and helps ensure the bug will be fixed quickly.
+* Consider tracking down the bug yourself in the Toree's source and submitting a patch along with your bug report. This is a great time saver for the Toree developers and helps ensure the bug will be fixed quickly.