You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by lo...@apache.org on 2016/03/30 09:17:18 UTC

[04/19] storm git commit: Merge branch 'master' into pacemaker

Merge branch 'master' into pacemaker


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/86ad800b
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/86ad800b
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/86ad800b

Branch: refs/heads/master
Commit: 86ad800b71a6ee62638af35ae7b1b11eb7224851
Parents: 399476a 6d59676
Author: xiaojian.fxj <xi...@alibaba-inc.com>
Authored: Tue Mar 15 00:18:10 2016 +0800
Committer: xiaojian.fxj <xi...@alibaba-inc.com>
Committed: Tue Mar 15 00:18:10 2016 +0800

----------------------------------------------------------------------
 .gitignore                                      |   1 +
 CHANGELOG.md                                    |   8 +
 bin/storm                                       |  19 +-
 bin/storm.py                                    |   2 +-
 conf/defaults.yaml                              |   3 +-
 conf/log4j2.xml                                 |   2 +-
 .../org/apache/storm/starter/ManualDRPC.java    |  53 +-
 pom.xml                                         |   2 +-
 .../src/clj/org/apache/storm/LocalDRPC.clj      |  56 --
 .../src/clj/org/apache/storm/converter.clj      |  15 +
 .../src/clj/org/apache/storm/daemon/common.clj  | 350 +-----------
 .../src/clj/org/apache/storm/daemon/drpc.clj    | 215 +-------
 .../clj/org/apache/storm/daemon/executor.clj    |  24 +-
 .../clj/org/apache/storm/daemon/logviewer.clj   |   2 +-
 .../src/clj/org/apache/storm/daemon/nimbus.clj  |  63 +--
 .../clj/org/apache/storm/daemon/supervisor.clj  |   7 +-
 .../src/clj/org/apache/storm/daemon/task.clj    |   5 +-
 .../src/clj/org/apache/storm/daemon/worker.clj  |  24 +-
 storm-core/src/clj/org/apache/storm/testing.clj | 100 ++--
 .../clj/org/apache/storm/trident/testing.clj    |   2 -
 storm-core/src/clj/org/apache/storm/ui/core.clj |  15 +-
 .../src/jvm/org/apache/storm/LocalDRPC.java     |  72 +++
 .../org/apache/storm/daemon/DaemonCommon.java   |  22 +
 .../jvm/org/apache/storm/daemon/DrpcServer.java | 357 ++++++++++++
 .../org/apache/storm/daemon/StormCommon.java    | 537 +++++++++++++++++++
 .../apache/storm/messaging/netty/Client.java    |  34 ++
 .../storm/utils/StormCommonInstaller.java       |  43 ++
 .../src/jvm/org/apache/storm/utils/Utils.java   |  16 +
 .../org/apache/storm/integration_test.clj       |   6 +-
 .../test/clj/org/apache/storm/drpc_test.clj     |  27 +-
 .../test/clj/org/apache/storm/nimbus_test.clj   | 121 +++--
 .../apache/storm/security/auth/auth_test.clj    |   3 +-
 .../storm/security/auth/drpc_auth_test.clj      |   5 +-
 .../clj/org/apache/storm/serialization_test.clj |  85 +--
 .../clj/org/apache/storm/supervisor_test.clj    |  11 +-
 .../org/apache/storm/TestConfigValidate.java    |  20 +
 .../storm/serialization/SerializationTest.java  | 115 ++++
 37 files changed, 1517 insertions(+), 925 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/86ad800b/bin/storm.py
----------------------------------------------------------------------