dolphindb 2.0.946 → 2.0.948

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/docs.en.json CHANGED
@@ -6886,6 +6886,13 @@
6886
6886
  "title": "Examples",
6887
6887
  "type": "example",
6888
6888
  "children": [
6889
+ {
6890
+ "type": "text",
6891
+ "value": [
6892
+ "This example defines a unary function, ``f1``, and fixes its argument to produce a partial application with no arguments, ``f1{t}``. ``f1{t}`` is passed as the *updateFunc* to ``cachedTable``.",
6893
+ ""
6894
+ ]
6895
+ },
6889
6896
  {
6890
6897
  "type": "code",
6891
6898
  "language": "console",
@@ -6947,7 +6954,15 @@
6947
6954
  "language": "console",
6948
6955
  "value": [
6949
6956
  "",
6950
- " $ ct=NULL;"
6957
+ " $ ct=NULL;",
6958
+ ""
6959
+ ]
6960
+ },
6961
+ {
6962
+ "type": "text",
6963
+ "value": [
6964
+ ".. meta:: ",
6965
+ " :keywords: cache"
6951
6966
  ]
6952
6967
  }
6953
6968
  ]
@@ -14170,6 +14185,8 @@
14170
14185
  {
14171
14186
  "type": "text",
14172
14187
  "value": [
14188
+ "The parameters *sortColumns*, *keepDuplicates* and *sortKeyMappingFunction* take effect only in a TSDB storage engine (i.e., ``database().engine`` = TSDB).",
14189
+ "",
14173
14190
  "`dbHandle` the distributed database where the partitioned table will be saved. The database can be either in the local file system, or in the distributed file system. If the first parameter directory for dbHandle is unspecified, the result is an in-memory partitioned table.",
14174
14191
  "",
14175
14192
  "`table` a table or a list of tables. The schema of table will be used to construct the new partitioned table.",
@@ -14193,15 +14210,17 @@
14193
14210
  "* LAST: only keep the last record",
14194
14211
  "* FIRST: only keep the first record",
14195
14212
  "",
14196
- "`sortKeyMappingFunction` is a vector of functions, which is of the same length as the number of sort keys. The specified mapping functions are applied to each sort columns (except the temporal column) so as to reduce the dimensionality of sort keys.",
14213
+ "It is recommended to specify the *sortKeyMappingFunction* parameter if there are many sort keys in a partition of a TSDB database and a small number of records with the same sort key. After dimensionality reduction, the blocks in a TSDB level file can store more data, which not only reduces the frequency of reading data blocks and disk I/O during query, but also improves the data compression ratio.",
14197
14214
  "",
14198
- "Note: the specified function must be a unary function.",
14215
+ "`sortKeyMappingFunction` is a vector of unary functions. It has the same length as the number of sort keys. The specified mapping functions are applied to each sort key (i.e., the sort columns except for the temporal column) for dimensionality reduction.",
14199
14216
  "",
14200
- "After reducing the dimensionality for the original sort keys, records with a new sort key will be sorted based on the last column of sortColumns (the temporal column). Note that dimensionality reduction is performed when writing to disk, so specifying this parameter may affect write performance.",
14217
+ "After the dimensionality reduction for the sort keys, records with a new sort key entry will be sorted based on the last column of sortColumns (the temporal column).",
14201
14218
  "",
14202
- "Please note: *sortKeyMappingFunction* must be a vector. For example, if only one mapping function mapfun is specified, then sortKeyMappingFunction=[mapfunc].",
14219
+ "Note: ",
14203
14220
  "",
14204
- "Note: Parameters *sortColumns*, *keepDuplicate* and *sortKeyMappingFunction* only take effect when the engine parameter of database is specified as TSDB."
14221
+ "- Note that dimensionality reduction is performed when writing to disk, so specifying this parameter may affect write performance.",
14222
+ "- The functions specified in ``sortKeyMappingFunction`` correspond to each and every sort key. If a sort key does not require dimensionality reduction, leave the corresponding element empty in the vector of ``sortKeyMappingFunction``.",
14223
+ "- If a mapping function is ``hashBucket`` AND the sort key to which it applies is a HASH partitioning column, make sure the number of Hash partitions is not divisible by ``hashBucket().buckets``, otherwise the column values from the same HASH partition would all have the same HASH key after dimensionality reduction."
14205
14224
  ]
14206
14225
  }
14207
14226
  ]
@@ -14218,9 +14237,13 @@
14218
14237
  "* If the parameter `table` is a table: generate an empty partitioned table on disk with the schema of the model table. This function is used with :doc:`../a/append!` or :doc:`../t/tableInsert` to generate a partitioned table. It cannot be used to create a partitioned table with sequential domain.",
14219
14238
  "* If the parameter `table` is a list of tables: create an in-memory partitioned table. The number of tables given by the parameter `table` must be the same as the number of partitions in the database.",
14220
14239
  "",
14221
- "Please note that only the schema of `table` is used. None of the rows in table is imported to the newly created partitioned table. ",
14240
+ "Note: ",
14241
+ "",
14242
+ "- Only the schema of `table` is used. None of the rows in table is imported to the newly created partitioned table. ",
14243
+ "- In a distributed OLAP database, the maximum number of handles (including temporary handles*) to partitioned tables is 8,192 per node. For the TSDB storage engine, there is no limit.",
14222
14244
  "",
14223
- "It is recommended to specify the *sortKeyMappingFunction* parameter if there are many sort keys in a partition of a TSDB database and a small number of records with the same sort key. After dimensionality reduction, the blocks in a TSDB level file can store more data, which not only reduces the frequency of reading data blocks and disk I/O during query, but also improves the data compression ratio."
14245
+ "\\*temporary handles: If no handle is specified when you create a partitioned table in a distributed database with ``createPartitionedTable``, each database creates a temporary handle to hold the return value. If you create multiple tables under the same database, the temporary handle for the database is overwritten each time.",
14246
+ ""
14224
14247
  ]
14225
14248
  }
14226
14249
  ]
@@ -18468,7 +18491,6 @@
18468
18491
  "",
18469
18492
  ".. code-block:: console",
18470
18493
  " :linenos:",
18471
- " :emphasize-lines: 10, 12",
18472
18494
  " ",
18473
18495
  " $ n = 1000000",
18474
18496
  " $ nano=(09:30:00.000000000 + rand(long(6.5*60*60*1000000000), n)).sort!() ",
@@ -30527,164 +30549,6 @@
30527
30549
  }
30528
30550
  ]
30529
30551
  },
30530
- "getClusterPerf": {
30531
- "title": "getClusterPerf",
30532
- "type": "function",
30533
- "children": [
30534
- {
30535
- "title": "Syntax",
30536
- "type": "grammer",
30537
- "children": [
30538
- {
30539
- "type": "text",
30540
- "value": [
30541
- "getClusterPerf([includeMaster=false])"
30542
- ]
30543
- }
30544
- ]
30545
- },
30546
- {
30547
- "title": "Arguments",
30548
- "type": "parameters",
30549
- "children": [
30550
- {
30551
- "type": "text",
30552
- "value": [
30553
- "`includeMaster` indicates whether to include the controller information in the output."
30554
- ]
30555
- }
30556
- ]
30557
- },
30558
- {
30559
- "title": "Details",
30560
- "type": "detail",
30561
- "children": [
30562
- {
30563
- "type": "text",
30564
- "value": [
30565
- "Return configuration and performance measures for each of the nodes in the cluster. It can only be executed on a cluster controller.",
30566
- "",
30567
- "- host: host name of the node",
30568
- "- port: port number of the node",
30569
- "- site: (LAN) site of the node",
30570
- "- mode: the node type. 0: data node in a cluster; 1: agent in a cluster; 2: node in a cluster; 3: standalone mode; 4: compute node",
30571
- "- state: a Boolean value indicating whether the node is alive",
30572
- "- agentSite: the agent information of the current node",
30573
- "- maxConnections: The maximum number of connections (from GUI, API, other nodes, etc.) to the local node",
30574
- "- maxMemSize: The maximum memory (in GB) allocated to DolphinDB",
30575
- "- workerNum: The size of worker pool for regular interactive jobs. The default value is the number of CPU cores",
30576
- "- executorNum: The number of local executors. The default value is the number of CPU cores - 1",
30577
- "- connectionNum: The number of connections to a local node. Return 0 for an agent",
30578
- "- name: The node alias",
30579
- "- memoryUsed: The memory (in bytes) used by the node",
30580
- "- memoryAlloc: The total memory (in bytes) allocated to DolphinDB on the node",
30581
- "- cpuUsage: CPU usage",
30582
- "- avgLoad: average CPU load",
30583
- "- medLast10QueryTime: The median execution time (in ms) of the previous 10 finished queries",
30584
- "- maxLast10QueryTime: The maximum execution time (in ms) of the previous 10 finished queries",
30585
- "- medLast100QueryTime: The median execution time (in ms) of the previous 100 finished queries",
30586
- "- maxLast100QueryTime: The maximum execution time (in ms) of the previous 100 finished queries",
30587
- "- maxRunningQueryTime: The maximum elapsed time (in ms) of the queries that are currently running",
30588
- "- runningJobs: The number of running jobs",
30589
- "- queuedJobs: The number of jobs in queue",
30590
- "- runningTasks: The number of running tasks",
30591
- "- queuedTasks: The number of tasks in queue",
30592
- "- jobLoad: The CPU load of a job",
30593
- "- diskCapacity: The disk capacity (in bytes)",
30594
- "- diskFreeSpace: The available disk space (in bytes)",
30595
- "- diskFreeSpaceRatio: The available space ratio",
30596
- "- diskWriteRate: The rate (in bytes/s) at which data are written to disk",
30597
- "- diskReadRate: The rate (in bytes/s) at which data are read from disk",
30598
- "- lastMinuteWriteVolume: The data (in bytes) written to disk in the last minute",
30599
- "- lastMinuteReadVolume: The data (in bytes) read from disk in the last minute",
30600
- "- networkSendRate: The rate at which data are sent (in bytes/s)",
30601
- "- networkRecvRate: The rate at which data are received (in bytes/s)",
30602
- "- lastMinuteNetworkSend: The data (in bytes) sent in the last minute",
30603
- "- lastMinuteNetworkRecv: The data (in bytes) received in the last minute",
30604
- "- publicName: Return publicName for a controller configured with publicName; otherwise return the MAC (Media Access Control) Address of the server for a controller, data node or agent",
30605
- "- lastMsgLatency: The latency (in ms) of the last received message",
30606
- "- cumMsgLatency: The cumulative latency (in ms) of the messages",
30607
- "- isLeader: whether it is the leader of a raft group. It only takes effect for a raft group of controllers. Please note it will return NULL for a raft group with crashed node",
30608
- ""
30609
- ]
30610
- }
30611
- ]
30612
- },
30613
- {
30614
- "title": "Examples",
30615
- "type": "example",
30616
- "children": [
30617
- {
30618
- "type": "code",
30619
- "language": "console",
30620
- "value": [
30621
- " ",
30622
- " $ rpc(getControllerAlias(), getClusterPerf)",
30623
- ""
30624
- ]
30625
- },
30626
- {
30627
- "type": "text",
30628
- "value": [
30629
- "============== ======= ============================= ====== ======= ========================== ================ ============ =========== ============= =============== =========== ============ ============= ========== ========= ==================== ==================== ===================== ===================== ===================== ============= ============ ============== ============= ========= =================== ================= ==================== =============== ============== ======================= ====================== ================= ================= ======================= ======================= ============ ================ ===============",
30630
- "host port site mode state agentSite maxConnections maxMemSize workerNum executorNum connectionNum name memoryUsed memoryAlloc cpuUsage avgLoad medLast10QueryTime maxLast10QueryTime medLast100QueryTime maxLast100QueryTime maxRunningQueryTime runningJobs queuedJobs runningTasks queuedTasks jobLoad diskCapacity diskFreeSpace diskFreeSpaceRatio diskWriteRate diskReadRate lastMinuteWriteVolume lastMinuteReadVolume networkSendRate networkRecvRate lastMinuteNetworkSend lastMinuteNetworkRecv publicName lastMsgLatency cumMsgLatency ",
30631
- "============== ======= ============================= ====== ======= ========================== ================ ============ =========== ============= =============== =========== ============ ============= ========== ========= ==================== ==================== ===================== ===================== ===================== ============= ============ ============== ============= ========= =================== ================= ==================== =============== ============== ======================= ====================== ================= ================= ======================= ======================= ============ ================ ===============",
30632
- "192.168.1.48 8,894 192.168.1.48:8894:datanode3 0 1 192.168.1.48:8891:agent1 192 16 16 15 4 datanode3 9,073,704 12,648,448 1.0309 0.0103 0 0 0 0 0 0 0 0 0 0 1,000,068,870,144 941,631,864,832 0.9416 0 0 1,058 0 0 0 0 0 0 127.0.0.1 0 0 ",
30633
- "192.168.1.48 8,895 192.168.1.48:8895:datanode4 0 1 192.168.1.48:8891:agent1 192 16 16 15 4 datanode4 8,862,912 9,502,720 0 0 0 0 0 0 0 0 0 0 0 0 1,000,068,870,144 941,631,864,832 0.9416 0 0 1,058 0 0 0 0 0 0 127.0.0.1 0 0 ",
30634
- "192.168.1.48 8,891 192.168.1.48:8891:agent1 1 1 192.168.1.48:8891:agent1 32 12 4 15 0 agent1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ",
30635
- "192.168.1.48 8,892 192.168.1.48:8892:datanode1 0 1 192.168.1.48:8891:agent1 192 16 16 15 4 datanode1 8,976,200 10,551,296 0 0 0 0 0 0 0 0 0 0 0 0 1,000,068,870,144 941,631,864,832 0.9416 0 0 1,058 0 0 0 0 0 0 127.0.0.1 0 0 ",
30636
- "192.168.1.48 8,893 192.168.1.48:8893:datanode2 0 1 192.168.1.48:8891:agent1 192 16 16 15 5 datanode2 9,290,232 11,599,872 0 0 0 0 0 0 0 0 0 0 0 0 1,000,068,870,144 941,631,864,832 0.9416 0 0 1,058 0 0 0 0 0 0 127.0.0.1 0 0 ",
30637
- "============== ======= ============================= ====== ======= ========================== ================ ============ =========== ============= =============== =========== ============ ============= ========== ========= ==================== ==================== ===================== ===================== ===================== ============= ============ ============== ============= ========= =================== ================= ==================== =============== ============== ======================= ====================== ================= ================= ======================= ======================= ============ ================ ===============",
30638
- ""
30639
- ]
30640
- },
30641
- {
30642
- "type": "code",
30643
- "language": "console",
30644
- "value": [
30645
- "",
30646
- " $ rpc(getControllerAlias(), getClusterPerf).keys()",
30647
- " [\"host\",\"port\",\"site\",\"mode\",\"state\",\"agentSite\",\"maxConnections\",\"maxMemSize\",\"workerNum\",\"executorNum\",\"connectionNum\",\"name\",\"memoryUsed\",\"memoryAlloc\",\"cpuUsage\",\"avgLoad\",\"medLast10QueryTime\",\"maxLast10QueryTime\",\"medLast100QueryTime\",\"maxLast100QueryTime\",\"maxRunningQueryTime\",\"runningJobs\",\"queuedJobs\",\"runningTasks\",\"queuedTasks\",\"jobLoad\",\"diskCapacity\",\"diskFreeSpace\",\"diskFreeSpaceRatio\",\"diskWriteRate\",\"diskReadRate\",\"lastMinuteWriteVolume\",\"lastMinuteReadVolume\",\"networkSendRate\",\"networkRecvRate\",\"lastMinuteNetworkSend\",\"lastMinuteNetworkRecv\",\"publicName\",\"lastMsgLatency\",\"cumMsgLatency\"]",
30648
- ""
30649
- ]
30650
- },
30651
- {
30652
- "type": "text",
30653
- "value": [
30654
- "For a high-availability cluster:"
30655
- ]
30656
- },
30657
- {
30658
- "type": "code",
30659
- "language": "console",
30660
- "value": [
30661
- "",
30662
- " $ rpc(getControllerAlias(true), getClusterPerf)",
30663
- ""
30664
- ]
30665
- },
30666
- {
30667
- "type": "text",
30668
- "value": [
30669
- "=================== =========== ========================================== ====== ======= ===================================== ================ ============ =========== ============= =============== ===================== ============ ============= ========== ========= ==================== ==================== ===================== ===================== ===================== ============= ============ ============== ============= ========= ===================== ======================= ==================== =============== ============== ======================= ====================== ================= ================= ======================= ======================= =============================================== ================ =============== ================",
30670
- "host port site mode state agentSite maxConnections maxMemSize workerNum executorNum connectionNum name memoryUsed memoryAlloc cpuUsage avgLoad medLast10QueryTime maxLast10QueryTime medLast100QueryTime maxLast100QueryTime maxRunningQueryTime runningJobs queuedJobs runningTasks queuedTasks jobLoad diskCapacity diskFreeSpace diskFreeSpaceRatio diskWriteRate diskReadRate lastMinuteWriteVolume lastMinuteReadVolume networkSendRate networkRecvRate lastMinuteNetworkSend lastMinuteNetworkRecv publicName lastMsgLatency cumMsgLatency isLeader",
30671
- "=================== =========== ========================================== ====== ======= ===================================== ================ ============ =========== ============= =============== ===================== ============ ============= ========== ========= ==================== ==================== ===================== ===================== ===================== ============= ============ ============== ============= ========= ===================== ======================= ==================== =============== ============== ======================= ====================== ================= ================= ======================= ======================= =============================================== ================ =============== ================",
30672
- "192.168.100.10 17,000 192.168.100.10:17000:master3 2 1 512 16 64 3 1 master3 23,449,272 24,133,632 0.7788 0.0037 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4,658 2,736 102,468 59,193 78,351 8,012,182 2,378,846 192.198.1.10;172.17.0.1;10.244.5.0;10.244.5.1 0 0 false",
30673
- "192.168.100.11 17,000 192.168.100.11:17000:master2 2 1 512 16 64 3 2 master2 23,527,872 24,133,632 11.5625 0.3219 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4,670 2,785 116,733 62,402 56,160 1,366,293 1,398,238 192.198.1.11;172.17.0.1;10.244.4.0;10.244.4.1 0 0 false",
30674
- "192.168.100.12 17,000 192.168.100.12:17000:master1 2 1 512 16 64 3 20 master1 25,002,792 46,538,752 14.0406 0.1136 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4,671 13,546,528 19,964,606 53,206 56,891 22,543,771 8,226,278 192.198.1.12;172.17.0.1;10.244.3.0;10.244.3.1 0 0 true",
30675
- "192.168.100.12 17,102 192.168.100.12:17102:server19-datanode1 0 1 192.168.100.12:17101:server19-agent1 254 120 5 31 1 server19-datanode1 23,118,960 24,133,632 13.928 0.1136 0 0 0 0 0 0 0 0 0 0 17,790,585,659,392 16,826,060,464,128 0.9458 0 4,687 1,289 23,477 44,197 55,104 352,258 6,163,159 192.198.1.12;172.17.0.1;10.244.3.0;10.244.3.1 0 0 ",
30676
- "192.168.100.11 17,102 192.168.100.11:17102:server18-datanode1 0 1 192.168.100.11:17101:server18-agent1 254 120 5 31 1 server18-datanode1 23,111,912 24,133,632 14.1066 0.3219 0 0 0 0 0 0 0 0 0 0 17,790,585,659,392 16,714,392,956,928 0.9395 0 4,698 1,989 23,530 40,896 50,706 243,008 250,727 192.198.1.11;172.17.0.1;10.244.4.0;10.244.4.1 0 0 ",
30677
- "192.168.100.11 17,101 192.168.100.11:17101:server18-agent1 1 1 192.168.100.11:17101:server18-agent1 304 4 4 63 0 server18-agent1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 192.198.1.11;172.17.0.1;10.244.4.0;10.244.4.1 0 0",
30678
- "192.168.100.10 17,102 192.168.100.10:17102:server17-datanode1 0 1 192.168.100.10:17101:server17-agent1 254 120 5 31 1 server17-datanode1 40,872,496 52,445,184 0.7788 0.0037 0 0 0 0 0 0 0 0 0 0 53,783,736,754,176 50,336,934,432,768 0.9359 0 4,699 13,900,218 18,835 118,935 109,862 6,170,512 408,018 192.198.1.10;172.17.0.1;10.244.5.0;10.244.5.1 0 0",
30679
- "192.168.100.12 17,101 192.168.100.12:17101:server19-agent1 1 1 192.168.100.12:17101:server19-agent1 304 4 4 63 0 server19-agent1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 192.198.1.12;172.17.0.1;10.244.3.0;10.244.3.1 0 0",
30680
- "192.168.100.10 17,101 192.168.100.10:17101:server17-agent1 1 1 192.168.100.10:17101:server17-agent1 304 4 4 63 0 server17-agent1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 192.198.1.10;172.17.0.1;10.244.5.0;10.244.5.1 0 0",
30681
- "=================== =========== ========================================== ====== ======= ===================================== ================ ============ =========== ============= =============== ===================== ============ ============= ========== ========= ==================== ==================== ===================== ===================== ===================== ============= ============ ============== ============= ========= ===================== ======================= ==================== =============== ============== ======================= ====================== ================= ================= ======================= ======================= =============================================== ================ =============== ================"
30682
- ]
30683
- }
30684
- ]
30685
- }
30686
- ]
30687
- },
30688
30552
  "getCompletedQueries": {
30689
30553
  "title": "getCompletedQueries",
30690
30554
  "type": "function",
@@ -33186,7 +33050,62 @@
33186
33050
  {
33187
33051
  "type": "text",
33188
33052
  "value": [
33189
- "Return various performance monitoring measures of the local node as a dictionary."
33053
+ "``getPerf`` returns various performance monitoring metrics of the local node as a dictionary.",
33054
+ "",
33055
+ "The dictionary contains the following fields:",
33056
+ "",
33057
+ "- runningJobs: The number of running jobs",
33058
+ "",
33059
+ "- jobLoad: The CPU load of a job",
33060
+ "",
33061
+ "- avgLoad: average CPU load",
33062
+ "",
33063
+ "- queuedJobs: The number of jobs in queue",
33064
+ "",
33065
+ "- lastMinuteNetworkSend: The data (in bytes) sent in the last minute",
33066
+ "",
33067
+ "- lastMinuteNetworkRecv: The data (in bytes) received in the last minute",
33068
+ "",
33069
+ "- lastMinuteReadVolume: The data (in bytes) read from disk in the last minute",
33070
+ "",
33071
+ "- lastMinuteWriteVolume: The data (in bytes) written to disk in the last minute",
33072
+ "",
33073
+ "- lastMsgLatency: The latency (in ns) of the last received message",
33074
+ "",
33075
+ "- cumMsgLatency: The cumulative latency (in ns) of the messages",
33076
+ "",
33077
+ "- maxLast10QueryTime: The maximum execution time (in ns) of the previous 10 finished queries",
33078
+ "",
33079
+ "- maxLast100QueryTime: The maximum execution time (in ns) of the previous 100 finished queries",
33080
+ "",
33081
+ "- medLast10QueryTime: The median execution time (in ns) of the previous 10 finished queries",
33082
+ "",
33083
+ "- medLast100QueryTime: The median execution time (in ns) of the previous 100 finished queries",
33084
+ "",
33085
+ "- maxRunningQueryTime: The maximum elapsed time (in ns) of the queries that are currently running",
33086
+ "",
33087
+ "- diskFreeSpaceRatio: The available space ratio",
33088
+ "",
33089
+ "- diskReadRate: The rate (in bytes/s) at which data are read from disk",
33090
+ "",
33091
+ "- diskWriteRate: The rate (in bytes/s) at which data are written to disk",
33092
+ "",
33093
+ "- diskFreeSpace: The available disk space (in bytes)",
33094
+ "",
33095
+ "- diskCapacity: The disk capacity (in bytes)",
33096
+ "",
33097
+ "- cpuUsage: CPU usage",
33098
+ "",
33099
+ "- memoryAlloc: The total memory (in bytes) allocated to DolphinDB on the node",
33100
+ "",
33101
+ "- memoryUsed: The memory (in bytes) used by the node",
33102
+ "",
33103
+ "- networkSendRate: The rate at which data are sent (in bytes/s)",
33104
+ "",
33105
+ "- networkRecvRate: The rate at which data are received (in bytes/s)",
33106
+ "",
33107
+ "- connectionNum: The number of connections to the local node.",
33108
+ ""
33190
33109
  ]
33191
33110
  }
33192
33111
  ]
@@ -79504,7 +79423,7 @@
79504
79423
  "",
79505
79424
  " $ login(`admin,`123456)",
79506
79425
  " $ createUser(`ElonMusk, `superman)",
79507
- " $ setMaxJobPriority(`ElonMusk, 64);",
79426
+ " $ setMaxJobParallelism(`ElonMusk, 64);",
79508
79427
  ""
79509
79428
  ]
79510
79429
  },
@@ -90972,7 +90891,7 @@
90972
90891
  "2021.01.02 ",
90973
90892
  "2021.01.02 4 4",
90974
90893
  "2021.01.04 4",
90975
- "2021.01.05 -1 -2 ",
90894
+ "2021.01.05 -1 -1 ",
90976
90895
  "2021.01.07 2 2",
90977
90896
  "2021.01.08 4 4",
90978
90897
  "========== ===== =======",