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/07/15 08:01:28 UTC

[2/3] incubator-ignite git commit: IGNITE-843 Use numbers as placeholders.

IGNITE-843 Use numbers as placeholders.


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

Branch: refs/heads/ignite-843
Commit: ce971e75dd99572a7aa63ee37235feb9ab085e84
Parents: a1a85a5
Author: AKuznetsov <ak...@gridgain.com>
Authored: Wed Jul 15 13:01:15 2015 +0700
Committer: AKuznetsov <ak...@gridgain.com>
Committed: Wed Jul 15 13:01:15 2015 +0700

----------------------------------------------------------------------
 .../nodejs/controllers/models/clusters.json     | 50 ++++++++++----------
 1 file changed, 25 insertions(+), 25 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/ce971e75/modules/web-control-center/nodejs/controllers/models/clusters.json
----------------------------------------------------------------------
diff --git a/modules/web-control-center/nodejs/controllers/models/clusters.json b/modules/web-control-center/nodejs/controllers/models/clusters.json
index 87cb526..fbafc59 100644
--- a/modules/web-control-center/nodejs/controllers/models/clusters.json
+++ b/modules/web-control-center/nodejs/controllers/models/clusters.json
@@ -93,7 +93,7 @@
               "path": "discovery.Multicast",
               "model": "multicastPort",
               "max": 65535,
-              "placeholder": "47400",
+              "placeholder": 47400,
               "tip": [
                 "Port number which multicast messages are sent to."
               ]
@@ -103,7 +103,7 @@
               "type": "number",
               "path": "discovery.Multicast",
               "model": "responseWaitTime",
-              "placeholder": "500",
+              "placeholder": 500,
               "tip": [
                 "Time in milliseconds IP finder waits for reply to multicast address request."
               ]
@@ -113,7 +113,7 @@
               "type": "number",
               "path": "discovery.Multicast",
               "model": "addressRequestAttempts",
-              "placeholder": "2",
+              "placeholder": 2,
               "tip": [
                 "Number of attempts to send multicast address request.",
                 "IP finder re-sends request only in case if no reply for previous request is received."
@@ -328,7 +328,7 @@
           "type": "number",
           "path": "atomicConfiguration",
           "model": "backups",
-          "placeholder": "0",
+          "placeholder": 0,
           "tip": [
             "Number of backup nodes."
           ]
@@ -354,7 +354,7 @@
           "type": "number",
           "path": "atomicConfiguration",
           "model": "atomicSequenceReserveSize",
-          "placeholder": "1,000",
+          "placeholder": 1000,
           "tip": [
             "Default number of sequence values reserved for IgniteAtomicSequence instances.",
             "After a certain number has been reserved, consequent increments of sequence will happen locally, without communication with other nodes, until the next reservation has to be made."
@@ -372,7 +372,7 @@
           "label": "Timeout",
           "type": "number",
           "model": "networkTimeout",
-          "placeholder": "5,000",
+          "placeholder": 5000,
           "tip": [
             "Maximum timeout in milliseconds for network requests."
           ]
@@ -381,7 +381,7 @@
           "label": "Send retry delay",
           "type": "number",
           "model": "networkSendRetryDelay",
-          "placeholder": "1,000",
+          "placeholder": 1000,
           "tip": [
             "Interval in milliseconds between message send retries."
           ]
@@ -390,7 +390,7 @@
           "label": "Send retry count",
           "type": "number",
           "model": "networkSendRetryCount",
-          "placeholder": "3",
+          "placeholder": 3,
           "tip": [
             "Message send retries count."
           ]
@@ -399,7 +399,7 @@
           "label": "Segment check frequency",
           "type": "number",
           "model": "segmentCheckFrequency",
-          "placeholder": "10,000",
+          "placeholder": 10000,
           "tip": [
             "Network segment check frequency in milliseconds.",
             "If 0, periodic segment check is disabled and segment is checked only on topology changes (if segmentation resolvers are configured)."
@@ -422,7 +422,7 @@
           "label": "Discovery startup delay",
           "type": "number",
           "model": "discoveryStartupDelay",
-          "placeholder": "600,000",
+          "placeholder": 600000,
           "tip": [
             "This value is used to expire messages from waiting list whenever node discovery discrepancies happen."
           ]
@@ -492,7 +492,7 @@
                   "type": "number",
                   "path": "marshaller.OptimizedMarshaller",
                   "model": "poolSize",
-                  "placeholder": "0",
+                  "placeholder": 0,
                   "tip": [
                     "Specifies size of cached object streams used by marshaller.",
                     "Object streams are cached for performance reason to avoid costly recreation for every serialization routine.",
@@ -528,7 +528,7 @@
           "label": "Keep alive time",
           "type": "number",
           "model": "marshallerCacheKeepAliveTime",
-          "placeholder": "10,000",
+          "placeholder": 10000,
           "tip": [
             "Keep alive time of thread pool that is in charge of processing marshaller messages."
           ]
@@ -562,7 +562,7 @@
           "label": "History size",
           "type": "number",
           "model": "metricsHistorySize",
-          "placeholder": "10,000",
+          "placeholder": 10000,
           "min": 1,
           "tip": [
             "Number of metrics kept in history to compute totals and averages."
@@ -572,7 +572,7 @@
           "label": "Log frequency",
           "type": "number",
           "model": "metricsLogFrequency",
-          "placeholder": "60,000",
+          "placeholder": 60000,
           "tip": [
             "Frequency of metrics log print out. To disable set to 0"
           ]
@@ -581,7 +581,7 @@
           "label": "Update frequency",
           "type": "number",
           "model": "metricsUpdateFrequency",
-          "placeholder": "60,000",
+          "placeholder": 60000,
           "tip": [
             "Job metrics update frequency in milliseconds.",
             "<ul>",
@@ -619,7 +619,7 @@
           "label": "Missed resources cache size",
           "type": "number",
           "model": "peerClassLoadingMissedResourcesCacheSize",
-          "placeholder": "100",
+          "placeholder": 100,
           "tip": [
             "If size greater than 0, missed resources will be cached and next resource request ignored.",
             "If size is 0, then request for the resource will be sent to the remote node every time this resource is requested."
@@ -679,7 +679,7 @@
                   "type": "number",
                   "path": "swapSpaceSpi.FileSwapSpaceSpi",
                   "model": "maximumSparsity",
-                  "placeholder": "0.5",
+                  "placeholder": 0.5,
                   "tip": [
                     "This property defines maximum acceptable wasted file space to whole file size ratio.",
                     "When this ratio becomes higher than specified number compacting thread starts working."
@@ -721,7 +721,7 @@
           "label": "Samples size",
           "type": "number",
           "model": "clockSyncSamples",
-          "placeholder": "8",
+          "placeholder": 8,
           "tip": [
             "Number of samples used to synchronize clocks between different nodes.",
             "Clock synchronization is used for cache version assignment in CLOCK order mode."
@@ -731,7 +731,7 @@
           "label": "Frequency",
           "type": "number",
           "model": "clockSyncFrequency",
-          "placeholder": "120,000",
+          "placeholder": 120000,
           "tip": [
             "Frequency at which clock is synchronized between nodes, in milliseconds.",
             "Clock synchronization is used for cache version assignment in CLOCK order mode."
@@ -742,7 +742,7 @@
           "type": "number",
           "model": "timeServerPortBase",
           "max": 65535,
-          "placeholder": "31100",
+          "placeholder": 31100,
           "tip": [
             "Time server provides clock synchronization between nodes.",
             "Base UPD port number for grid time server. Time server will be started on one of free ports in range."
@@ -752,7 +752,7 @@
           "label": "Port range",
           "type": "number",
           "model": "timeServerPortRange",
-          "placeholder": "100",
+          "placeholder": 100,
           "tip": [
             "Time server port range."
           ]
@@ -785,7 +785,7 @@
           "label": "Management",
           "type": "number",
           "model": "managementThreadPoolSize",
-          "placeholder": "4",
+          "placeholder": 4,
           "tip": [
             "Thread pool that is in charge of processing internal and Visor ComputeJob, GridJobs."
           ]
@@ -832,7 +832,7 @@
           "type": "number",
           "path": "transactionConfiguration",
           "model": "defaultTxTimeout",
-          "placeholder": "0",
+          "placeholder": 0,
           "tip": [
             "Default transaction timeout."
           ]
@@ -842,7 +842,7 @@
           "type": "number",
           "path": "transactionConfiguration",
           "model": "pessimisticTxLogLinger",
-          "placeholder": "10,000",
+          "placeholder": 10000,
           "tip": [
             "Delay, in milliseconds, after which pessimistic recovery entries will be cleaned up for failed node."
           ]
@@ -852,7 +852,7 @@
           "type": "number",
           "path": "transactionConfiguration",
           "model": "pessimisticTxLogSize",
-          "placeholder": "0",
+          "placeholder": 0,
           "tip": [
             "Size of pessimistic transactions log stored on node in order to recover transaction commit if originating node has left grid before it has sent all messages to transaction nodes."
           ]