Dear Wiki user, You have subscribed to a wiki page or wiki category on "Samza Wiki" for change notification.
The "ContributorsCorner" page has been changed by ChrisRiccomini: https://wiki.apache.org/samza/ContributorsCorner New page: = Contributor's Corner = Interested in contributing patches to Samza? This page will get you started. == Rules == == Setup == Install [[http://www.reviewboard.org/docs/rbtools/dev/rbt/|rbt]] to make life easier. {{{ sudo easy_install -U RBTools }}} == Git == After setting up, you'll want to checkout the code. {{{ git clone http://git-wip-us.apache.org/repos/asf/incubator-samza.git }}} To work on a JIRA once you've checked out, create a new branch. {{{ git branch SAMZA-2_fine-grain-control-over-stream-consumption }}} Now you can checkout the branch to work on it. {{{ git checkout SAMZA-2_fine-grain-control-over-stream-consumption }}} Once you've made some changes, you can submit your patch to [[https://reviews.apache.org/groups/samza/|Review Board]]. {{{ rbt post --summary=SAMZA-2 }}} The post command will spit out a URL. Verify that everything looks good, and then publish the review. {{{ rbt publish 13725 }}} == Review Board == == Style == == Tests ==
