You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ak...@apache.org on 2015/08/13 11:35:27 UTC

incubator-ignite git commit: IGNITE-843 Added more info on deploymentMode.

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-843 74c1f9b5c -> d220dec0d


IGNITE-843 Added more info on deploymentMode.


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

Branch: refs/heads/ignite-843
Commit: d220dec0de5707c8e0fbbd6c8c04aae57310b45e
Parents: 74c1f9b
Author: AKuznetsov <ak...@gridgain.com>
Authored: Thu Aug 13 16:35:39 2015 +0700
Committer: AKuznetsov <ak...@gridgain.com>
Committed: Thu Aug 13 16:35:39 2015 +0700

----------------------------------------------------------------------
 .../src/main/js/controllers/models/clusters.json            | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/d220dec0/modules/control-center-web/src/main/js/controllers/models/clusters.json
----------------------------------------------------------------------
diff --git a/modules/control-center-web/src/main/js/controllers/models/clusters.json b/modules/control-center-web/src/main/js/controllers/models/clusters.json
index 73e56e3..b254f6e 100644
--- a/modules/control-center-web/src/main/js/controllers/models/clusters.json
+++ b/modules/control-center-web/src/main/js/controllers/models/clusters.json
@@ -448,7 +448,14 @@
           "placeholder": "SHARED",
           "items": "deploymentModes",
           "tip": [
-            "Task classes and resources sharing mode."
+            "Task classes and resources sharing mode.",
+            "The following deployment modes are supported:",
+            "<ul>",
+            "  <li>PRIVATE - in this mode deployed classes do not share resources.</li>",
+            "  <li>ISOLATED - in this mode tasks or classes deployed within the same class loader will share the same instances of resources.</li>",
+            "  <li>SHARED - same as ISOLATED, but now tasks from different master nodes with the same user version and same class loader will share the same class loader on remote nodes.</li>",
+            "  <li>CONTINUOUS - same as SHARED deployment mode, but resources will not be undeployed even after all master nodes left grid.</li>",
+            "</ul>"
           ]
         }
       ]