node-red-contrib-prib-functions 0.23.2 → 0.26.0
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/.github/copilot-instructions.md +36 -0
- package/README.md +153 -140
- package/columnar/columnar.html +258 -0
- package/columnar/columnar.js +1055 -0
- package/columnar/icons/columnar.svg +38 -0
- package/fileSystem/filesystem.html +299 -0
- package/fileSystem/filesystem.js +170 -0
- package/gitlab/gitlab.html +191 -0
- package/gitlab/gitlab.js +248 -0
- package/gitlab/icons/gitlab.svg +17 -0
- package/lib/AlphaBeta.js +32 -0
- package/lib/GraphDB.js +40 -9
- package/lib/MinMax.js +17 -0
- package/lib/Tree.js +64 -0
- package/lib/objectExtensions.js +28 -5
- package/lib/timeDimension.js +36 -0
- package/lib/typedInput.js +18 -2
- package/logisticRegression/icons/logisticregression.svg +22 -0
- package/logisticRegression/logisticRegression.html +136 -0
- package/logisticRegression/logisticRegression.js +83 -0
- package/package.json +21 -9
- package/test/02-graphdb.js +46 -0
- package/test/columnar.js +509 -0
- package/test/data/.config.nodes.json +114 -70
- package/test/data/.config.nodes.json.backup +104 -71
- package/test/data/.config.runtime.json +2 -1
- package/test/data/.config.runtime.json.backup +2 -1
- package/test/data/.config.users.json +3 -2
- package/test/data/.config.users.json.backup +3 -2
- package/test/data/.flow.json.backup +1545 -369
- package/test/data/flow.json +1457 -270
- package/test/data/package-lock.json +11 -11
- package/test/data/shares/.config.nodes.json +611 -0
- package/test/data/shares/.config.nodes.json.backup +589 -0
- package/test/data/shares/.config.runtime.json +5 -0
- package/test/data/shares/.config.runtime.json.backup +4 -0
- package/test/data/shares/.config.users.json +33 -0
- package/test/data/shares/.config.users.json.backup +33 -0
- package/test/data/shares/.flow.json.backup +230 -0
- package/test/data/shares/.flow_cred.json.backup +3 -0
- package/test/data/shares/flow.json +267 -0
- package/test/data/shares/flow_cred.json +3 -0
- package/test/data/shares/package.json +6 -0
- package/test/data/shares/settings.js +544 -0
- package/test/dataAnalysisExtensions.js +93 -93
- package/test/logisticRegression.js +379 -0
- package/test/transform.js +11 -11
- package/test/transformConfluence.js +4 -2
- package/test/transformNumPy.js +3 -1
- package/test/transformXLSX.js +4 -2
- package/test/transformXML.js +4 -2
- package/test-runner.js +400 -0
- package/test.parq +0 -0
- package/test_select.js +37 -0
- package/testing/test.js +8 -7
- package/transform/transform.html +23 -2
- package/transform/transform.js +239 -283
- package/transform/xlsx2.js +74 -0
package/test/data/flow.json
CHANGED
|
@@ -20,6 +20,14 @@
|
|
|
20
20
|
"disabled": false,
|
|
21
21
|
"info": ""
|
|
22
22
|
},
|
|
23
|
+
{
|
|
24
|
+
"id": "43a74ee3902ea5d5",
|
|
25
|
+
"type": "tab",
|
|
26
|
+
"label": "filesystem",
|
|
27
|
+
"disabled": false,
|
|
28
|
+
"info": "",
|
|
29
|
+
"env": []
|
|
30
|
+
},
|
|
23
31
|
{
|
|
24
32
|
"id": "955f4808.fd1898",
|
|
25
33
|
"type": "tab",
|
|
@@ -117,6 +125,14 @@
|
|
|
117
125
|
"info": "",
|
|
118
126
|
"env": []
|
|
119
127
|
},
|
|
128
|
+
{
|
|
129
|
+
"id": "e45553957f2b6fab",
|
|
130
|
+
"type": "tab",
|
|
131
|
+
"label": "transform json",
|
|
132
|
+
"disabled": false,
|
|
133
|
+
"info": "",
|
|
134
|
+
"env": []
|
|
135
|
+
},
|
|
120
136
|
{
|
|
121
137
|
"id": "460ae66eec4b7f8a",
|
|
122
138
|
"type": "tab",
|
|
@@ -132,6 +148,22 @@
|
|
|
132
148
|
"disabled": false,
|
|
133
149
|
"info": ""
|
|
134
150
|
},
|
|
151
|
+
{
|
|
152
|
+
"id": "d98540e8ed31a4a1",
|
|
153
|
+
"type": "tab",
|
|
154
|
+
"label": "logistic Regression",
|
|
155
|
+
"disabled": false,
|
|
156
|
+
"info": "",
|
|
157
|
+
"env": []
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"id": "8aa8799ad5afca2b",
|
|
161
|
+
"type": "tab",
|
|
162
|
+
"label": "Columnar store",
|
|
163
|
+
"disabled": false,
|
|
164
|
+
"info": "",
|
|
165
|
+
"env": []
|
|
166
|
+
},
|
|
135
167
|
{
|
|
136
168
|
"id": "680198a3be420949",
|
|
137
169
|
"type": "group",
|
|
@@ -1391,6 +1423,19 @@
|
|
|
1391
1423
|
[]
|
|
1392
1424
|
]
|
|
1393
1425
|
},
|
|
1426
|
+
{
|
|
1427
|
+
"id": "17e0d9b46ba19357",
|
|
1428
|
+
"type": "filesystem",
|
|
1429
|
+
"z": "43a74ee3902ea5d5",
|
|
1430
|
+
"name": "",
|
|
1431
|
+
"action": "open",
|
|
1432
|
+
"x": 120,
|
|
1433
|
+
"y": 240,
|
|
1434
|
+
"wires": [
|
|
1435
|
+
[],
|
|
1436
|
+
[]
|
|
1437
|
+
]
|
|
1438
|
+
},
|
|
1394
1439
|
{
|
|
1395
1440
|
"id": "ffd72c7.5d152d",
|
|
1396
1441
|
"type": "Host Available",
|
|
@@ -1991,9 +2036,9 @@
|
|
|
1991
2036
|
"infiniteIsNull": false,
|
|
1992
2037
|
"payload": "",
|
|
1993
2038
|
"payloadType": "date",
|
|
1994
|
-
"result": "$boolean(
|
|
2039
|
+
"result": "$boolean(_matrix.toArray()=[[1,0],[0,1]])",
|
|
1995
2040
|
"resultType": "jsonata",
|
|
1996
|
-
"resultProperty": "msg
|
|
2041
|
+
"resultProperty": "msg",
|
|
1997
2042
|
"topic": "",
|
|
1998
2043
|
"x": 170,
|
|
1999
2044
|
"y": 480,
|
|
@@ -2061,6 +2106,24 @@
|
|
|
2061
2106
|
[]
|
|
2062
2107
|
]
|
|
2063
2108
|
},
|
|
2109
|
+
{
|
|
2110
|
+
"id": "ae223fa13da104ff",
|
|
2111
|
+
"type": "function",
|
|
2112
|
+
"z": "ae9957f07bd56e1b",
|
|
2113
|
+
"name": "function 1",
|
|
2114
|
+
"func": "\nreturn msg;",
|
|
2115
|
+
"outputs": 1,
|
|
2116
|
+
"timeout": 0,
|
|
2117
|
+
"noerr": 0,
|
|
2118
|
+
"initialize": "",
|
|
2119
|
+
"finalize": "",
|
|
2120
|
+
"libs": [],
|
|
2121
|
+
"x": 480,
|
|
2122
|
+
"y": 580,
|
|
2123
|
+
"wires": [
|
|
2124
|
+
[]
|
|
2125
|
+
]
|
|
2126
|
+
},
|
|
2064
2127
|
{
|
|
2065
2128
|
"id": "c4e5d98c.1db6f8",
|
|
2066
2129
|
"type": "Monitor Flow",
|
|
@@ -3129,44 +3192,6 @@
|
|
|
3129
3192
|
]
|
|
3130
3193
|
]
|
|
3131
3194
|
},
|
|
3132
|
-
{
|
|
3133
|
-
"id": "2ce3786.acae688",
|
|
3134
|
-
"type": "transform",
|
|
3135
|
-
"z": "d9c7ae0e.cb9a9",
|
|
3136
|
-
"name": "",
|
|
3137
|
-
"actionSource": "JSON",
|
|
3138
|
-
"actionTarget": "String",
|
|
3139
|
-
"delimiter": ",",
|
|
3140
|
-
"x": 580,
|
|
3141
|
-
"y": 60,
|
|
3142
|
-
"wires": [
|
|
3143
|
-
[
|
|
3144
|
-
"5ac2ef6c.d0953"
|
|
3145
|
-
],
|
|
3146
|
-
[]
|
|
3147
|
-
]
|
|
3148
|
-
},
|
|
3149
|
-
{
|
|
3150
|
-
"id": "5ac2ef6c.d0953",
|
|
3151
|
-
"type": "test",
|
|
3152
|
-
"z": "d9c7ae0e.cb9a9",
|
|
3153
|
-
"name": "",
|
|
3154
|
-
"payload": "{\"a\":1,\"b\":1}",
|
|
3155
|
-
"payloadType": "json",
|
|
3156
|
-
"result": "{\"a\":1,\"b\":1}",
|
|
3157
|
-
"resultType": "str",
|
|
3158
|
-
"resultProperty": "msg.payload",
|
|
3159
|
-
"topic": "",
|
|
3160
|
-
"x": 300,
|
|
3161
|
-
"y": 120,
|
|
3162
|
-
"wires": [
|
|
3163
|
-
[
|
|
3164
|
-
"2ce3786.acae688"
|
|
3165
|
-
],
|
|
3166
|
-
[],
|
|
3167
|
-
[]
|
|
3168
|
-
]
|
|
3169
|
-
},
|
|
3170
3195
|
{
|
|
3171
3196
|
"id": "d9a04503.7fc3a8",
|
|
3172
3197
|
"type": "debug",
|
|
@@ -3220,28 +3245,6 @@
|
|
|
3220
3245
|
[]
|
|
3221
3246
|
]
|
|
3222
3247
|
},
|
|
3223
|
-
{
|
|
3224
|
-
"id": "b61d362a.9b7288",
|
|
3225
|
-
"type": "inject",
|
|
3226
|
-
"z": "d9c7ae0e.cb9a9",
|
|
3227
|
-
"name": "",
|
|
3228
|
-
"repeat": "",
|
|
3229
|
-
"crontab": "",
|
|
3230
|
-
"once": false,
|
|
3231
|
-
"onceDelay": 0.1,
|
|
3232
|
-
"topic": "",
|
|
3233
|
-
"payload": "",
|
|
3234
|
-
"payloadType": "date",
|
|
3235
|
-
"x": 80,
|
|
3236
|
-
"y": 40,
|
|
3237
|
-
"wires": [
|
|
3238
|
-
[
|
|
3239
|
-
"5ac2ef6c.d0953",
|
|
3240
|
-
"df3844b8.d62658",
|
|
3241
|
-
"1996fa8b.414205"
|
|
3242
|
-
]
|
|
3243
|
-
]
|
|
3244
|
-
},
|
|
3245
3248
|
{
|
|
3246
3249
|
"id": "eaa68e41.81cce",
|
|
3247
3250
|
"type": "transform",
|
|
@@ -3309,8 +3312,31 @@
|
|
|
3309
3312
|
"z": "d9c7ae0e.cb9a9",
|
|
3310
3313
|
"name": "",
|
|
3311
3314
|
"actionSource": "ISO8385",
|
|
3312
|
-
"
|
|
3315
|
+
"deleteSource": "true",
|
|
3316
|
+
"deleteSourceType": "bool",
|
|
3317
|
+
"actionTarget": "JSON",
|
|
3318
|
+
"sourceProperty": "",
|
|
3319
|
+
"targetProperty": "",
|
|
3320
|
+
"topicProperty": "",
|
|
3321
|
+
"JSONataSource": "",
|
|
3322
|
+
"JSONataTarget": "",
|
|
3323
|
+
"index": "",
|
|
3324
|
+
"maxMessages": "",
|
|
3325
|
+
"maxDate": "",
|
|
3326
|
+
"minDate": "",
|
|
3327
|
+
"maxNumber": "",
|
|
3328
|
+
"minNumber": "",
|
|
3329
|
+
"maxString": "",
|
|
3330
|
+
"minString": "",
|
|
3331
|
+
"radix": "",
|
|
3332
|
+
"schema": "",
|
|
3333
|
+
"schemaType": "str",
|
|
3334
|
+
"skipLeading": "",
|
|
3335
|
+
"skipTrailing": "",
|
|
3336
|
+
"string": "",
|
|
3337
|
+
"stringType": "str",
|
|
3313
3338
|
"delimiter": ",",
|
|
3339
|
+
"compressionType": "setGzip",
|
|
3314
3340
|
"x": 510,
|
|
3315
3341
|
"y": 420,
|
|
3316
3342
|
"wires": [
|
|
@@ -3338,8 +3364,8 @@
|
|
|
3338
3364
|
"actionSource": "JSON",
|
|
3339
3365
|
"actionTarget": "HTML",
|
|
3340
3366
|
"delimiter": ",",
|
|
3341
|
-
"x":
|
|
3342
|
-
"y":
|
|
3367
|
+
"x": 540,
|
|
3368
|
+
"y": 320,
|
|
3343
3369
|
"wires": [
|
|
3344
3370
|
[
|
|
3345
3371
|
"d9a04503.7fc3a8"
|
|
@@ -3424,117 +3450,295 @@
|
|
|
3424
3450
|
]
|
|
3425
3451
|
},
|
|
3426
3452
|
{
|
|
3427
|
-
"id": "
|
|
3428
|
-
"type": "
|
|
3429
|
-
"z": "
|
|
3430
|
-
"name": "
|
|
3431
|
-
"
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
"
|
|
3435
|
-
"
|
|
3436
|
-
"
|
|
3437
|
-
"
|
|
3438
|
-
"
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3453
|
+
"id": "7d7f98d9f9c42629",
|
|
3454
|
+
"type": "link call",
|
|
3455
|
+
"z": "d9c7ae0e.cb9a9",
|
|
3456
|
+
"name": "",
|
|
3457
|
+
"links": [
|
|
3458
|
+
"2605139b45f1f105"
|
|
3459
|
+
],
|
|
3460
|
+
"linkType": "static",
|
|
3461
|
+
"timeout": "30",
|
|
3462
|
+
"x": 340,
|
|
3463
|
+
"y": 820,
|
|
3464
|
+
"wires": [
|
|
3465
|
+
[
|
|
3466
|
+
"39f69c675d39c38c"
|
|
3467
|
+
]
|
|
3468
|
+
]
|
|
3442
3469
|
},
|
|
3443
3470
|
{
|
|
3444
|
-
"id": "
|
|
3445
|
-
"type": "
|
|
3446
|
-
"z": "
|
|
3471
|
+
"id": "93648bfe54fe290b",
|
|
3472
|
+
"type": "inject",
|
|
3473
|
+
"z": "d9c7ae0e.cb9a9",
|
|
3447
3474
|
"name": "",
|
|
3448
|
-
"
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
"
|
|
3458
|
-
"
|
|
3459
|
-
"
|
|
3460
|
-
"
|
|
3461
|
-
"
|
|
3475
|
+
"props": [
|
|
3476
|
+
{
|
|
3477
|
+
"p": "payload"
|
|
3478
|
+
},
|
|
3479
|
+
{
|
|
3480
|
+
"p": "topic",
|
|
3481
|
+
"vt": "str"
|
|
3482
|
+
}
|
|
3483
|
+
],
|
|
3484
|
+
"repeat": "",
|
|
3485
|
+
"crontab": "",
|
|
3486
|
+
"once": false,
|
|
3487
|
+
"onceDelay": 0.1,
|
|
3488
|
+
"topic": "",
|
|
3489
|
+
"payload": "",
|
|
3490
|
+
"payloadType": "date",
|
|
3491
|
+
"x": 120,
|
|
3492
|
+
"y": 740,
|
|
3462
3493
|
"wires": [
|
|
3463
3494
|
[
|
|
3464
|
-
"
|
|
3465
|
-
]
|
|
3466
|
-
[]
|
|
3495
|
+
"455bee5a8bfcd16f"
|
|
3496
|
+
]
|
|
3467
3497
|
]
|
|
3468
3498
|
},
|
|
3469
3499
|
{
|
|
3470
|
-
"id": "
|
|
3471
|
-
"type": "
|
|
3472
|
-
"z": "
|
|
3500
|
+
"id": "44ba2e4231a7cf77",
|
|
3501
|
+
"type": "link call",
|
|
3502
|
+
"z": "d9c7ae0e.cb9a9",
|
|
3473
3503
|
"name": "",
|
|
3474
|
-
"
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
"
|
|
3478
|
-
"
|
|
3479
|
-
"
|
|
3480
|
-
"
|
|
3481
|
-
"schemaType": "json",
|
|
3482
|
-
"skipLeading": 0,
|
|
3483
|
-
"skipTrailing": 0,
|
|
3484
|
-
"delimiter": ",",
|
|
3485
|
-
"compressionType": "setGzip",
|
|
3486
|
-
"x": 460,
|
|
3487
|
-
"y": 360,
|
|
3504
|
+
"links": [
|
|
3505
|
+
"e057797d0b796145"
|
|
3506
|
+
],
|
|
3507
|
+
"linkType": "static",
|
|
3508
|
+
"timeout": "30",
|
|
3509
|
+
"x": 670,
|
|
3510
|
+
"y": 100,
|
|
3488
3511
|
"wires": [
|
|
3489
|
-
[
|
|
3490
|
-
"238111a6a4d2eb17"
|
|
3491
|
-
],
|
|
3492
3512
|
[]
|
|
3493
3513
|
]
|
|
3494
3514
|
},
|
|
3495
3515
|
{
|
|
3496
|
-
"id": "
|
|
3497
|
-
"type": "
|
|
3498
|
-
"z": "
|
|
3516
|
+
"id": "455bee5a8bfcd16f",
|
|
3517
|
+
"type": "link call",
|
|
3518
|
+
"z": "d9c7ae0e.cb9a9",
|
|
3499
3519
|
"name": "",
|
|
3500
|
-
"
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
"
|
|
3504
|
-
"
|
|
3505
|
-
"
|
|
3506
|
-
"
|
|
3507
|
-
"resultProperty": "msg.payload",
|
|
3508
|
-
"topic": "",
|
|
3509
|
-
"x": 170,
|
|
3510
|
-
"y": 360,
|
|
3520
|
+
"links": [
|
|
3521
|
+
"ef3c3bb841e5b85a"
|
|
3522
|
+
],
|
|
3523
|
+
"linkType": "static",
|
|
3524
|
+
"timeout": "30",
|
|
3525
|
+
"x": 320,
|
|
3526
|
+
"y": 740,
|
|
3511
3527
|
"wires": [
|
|
3512
3528
|
[
|
|
3513
|
-
"
|
|
3514
|
-
],
|
|
3515
|
-
[
|
|
3516
|
-
"93c7047f87bbf964"
|
|
3517
|
-
],
|
|
3518
|
-
[
|
|
3519
|
-
"4a732ba4ce49193b"
|
|
3529
|
+
"52839bfb05b91f4c"
|
|
3520
3530
|
]
|
|
3521
3531
|
]
|
|
3522
3532
|
},
|
|
3523
3533
|
{
|
|
3524
|
-
"id": "
|
|
3525
|
-
"type": "
|
|
3526
|
-
"z": "
|
|
3534
|
+
"id": "810e0fa7d63baab2",
|
|
3535
|
+
"type": "link call",
|
|
3536
|
+
"z": "d9c7ae0e.cb9a9",
|
|
3527
3537
|
"name": "",
|
|
3528
|
-
"
|
|
3529
|
-
|
|
3530
|
-
|
|
3538
|
+
"links": [
|
|
3539
|
+
"e057797d0b796145"
|
|
3540
|
+
],
|
|
3541
|
+
"linkType": "static",
|
|
3542
|
+
"timeout": "30",
|
|
3543
|
+
"x": 350,
|
|
3544
|
+
"y": 940,
|
|
3545
|
+
"wires": [
|
|
3546
|
+
[
|
|
3547
|
+
"6bda6a7cf990884d"
|
|
3548
|
+
]
|
|
3549
|
+
]
|
|
3550
|
+
},
|
|
3551
|
+
{
|
|
3552
|
+
"id": "6bda6a7cf990884d",
|
|
3553
|
+
"type": "debug",
|
|
3554
|
+
"z": "d9c7ae0e.cb9a9",
|
|
3555
|
+
"name": "Done",
|
|
3556
|
+
"active": true,
|
|
3557
|
+
"tosidebar": true,
|
|
3558
|
+
"console": false,
|
|
3559
|
+
"tostatus": false,
|
|
3560
|
+
"complete": "payload",
|
|
3561
|
+
"targetType": "msg",
|
|
3562
|
+
"statusVal": "",
|
|
3563
|
+
"statusType": "auto",
|
|
3564
|
+
"x": 570,
|
|
3565
|
+
"y": 960,
|
|
3566
|
+
"wires": []
|
|
3567
|
+
},
|
|
3568
|
+
{
|
|
3569
|
+
"id": "52839bfb05b91f4c",
|
|
3570
|
+
"type": "Monitor Flow",
|
|
3571
|
+
"z": "d9c7ae0e.cb9a9",
|
|
3572
|
+
"name": "",
|
|
3573
|
+
"x": 550,
|
|
3574
|
+
"y": 740,
|
|
3575
|
+
"wires": [
|
|
3576
|
+
[
|
|
3577
|
+
"11ca1573aaaf8288"
|
|
3578
|
+
]
|
|
3579
|
+
]
|
|
3580
|
+
},
|
|
3581
|
+
{
|
|
3582
|
+
"id": "39f69c675d39c38c",
|
|
3583
|
+
"type": "Monitor Flow",
|
|
3584
|
+
"z": "d9c7ae0e.cb9a9",
|
|
3585
|
+
"name": "",
|
|
3586
|
+
"x": 550,
|
|
3587
|
+
"y": 820,
|
|
3588
|
+
"wires": [
|
|
3589
|
+
[
|
|
3590
|
+
"6fe703fe6cf5f12d"
|
|
3591
|
+
]
|
|
3592
|
+
]
|
|
3593
|
+
},
|
|
3594
|
+
{
|
|
3595
|
+
"id": "6fe703fe6cf5f12d",
|
|
3596
|
+
"type": "link call",
|
|
3597
|
+
"z": "d9c7ae0e.cb9a9",
|
|
3598
|
+
"name": "",
|
|
3599
|
+
"links": [
|
|
3600
|
+
"8bc4d0adfbe612e5"
|
|
3601
|
+
],
|
|
3602
|
+
"linkType": "static",
|
|
3603
|
+
"timeout": "30",
|
|
3604
|
+
"x": 330,
|
|
3605
|
+
"y": 880,
|
|
3606
|
+
"wires": [
|
|
3607
|
+
[
|
|
3608
|
+
"810e0fa7d63baab2"
|
|
3609
|
+
]
|
|
3610
|
+
]
|
|
3611
|
+
},
|
|
3612
|
+
{
|
|
3613
|
+
"id": "11ca1573aaaf8288",
|
|
3614
|
+
"type": "link call",
|
|
3615
|
+
"z": "d9c7ae0e.cb9a9",
|
|
3616
|
+
"name": "",
|
|
3617
|
+
"links": [
|
|
3618
|
+
"0c1e0f0f3543e49e"
|
|
3619
|
+
],
|
|
3620
|
+
"linkType": "static",
|
|
3621
|
+
"timeout": "30",
|
|
3622
|
+
"x": 340,
|
|
3623
|
+
"y": 780,
|
|
3624
|
+
"wires": [
|
|
3625
|
+
[
|
|
3626
|
+
"7d7f98d9f9c42629"
|
|
3627
|
+
]
|
|
3628
|
+
]
|
|
3629
|
+
},
|
|
3630
|
+
{
|
|
3631
|
+
"id": "93c7047f87bbf964",
|
|
3632
|
+
"type": "debug",
|
|
3633
|
+
"z": "5866424ac23291eb",
|
|
3634
|
+
"name": "error",
|
|
3635
|
+
"active": true,
|
|
3636
|
+
"tosidebar": true,
|
|
3637
|
+
"console": false,
|
|
3638
|
+
"tostatus": false,
|
|
3639
|
+
"complete": "true",
|
|
3640
|
+
"targetType": "full",
|
|
3641
|
+
"statusVal": "",
|
|
3642
|
+
"statusType": "auto",
|
|
3643
|
+
"x": 970,
|
|
3644
|
+
"y": 200,
|
|
3645
|
+
"wires": []
|
|
3646
|
+
},
|
|
3647
|
+
{
|
|
3648
|
+
"id": "de625a76baddbeab",
|
|
3649
|
+
"type": "transform",
|
|
3650
|
+
"z": "5866424ac23291eb",
|
|
3651
|
+
"name": "",
|
|
3652
|
+
"actionSource": "JSON",
|
|
3653
|
+
"actionTarget": "CSV",
|
|
3654
|
+
"sourceProperty": "msg.payload",
|
|
3655
|
+
"targetProperty": "msg.payload",
|
|
3656
|
+
"topicProperty": "msg.topic",
|
|
3657
|
+
"maxMessages": 1000,
|
|
3658
|
+
"schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
|
|
3659
|
+
"schemaType": "json",
|
|
3660
|
+
"skipLeading": 0,
|
|
3661
|
+
"skipTrailing": 0,
|
|
3662
|
+
"delimiter": ",",
|
|
3663
|
+
"compressionType": "setGzip",
|
|
3664
|
+
"x": 630,
|
|
3665
|
+
"y": 280,
|
|
3666
|
+
"wires": [
|
|
3667
|
+
[
|
|
3668
|
+
"b8a38eb268a6e0c8"
|
|
3669
|
+
],
|
|
3670
|
+
[]
|
|
3671
|
+
]
|
|
3672
|
+
},
|
|
3673
|
+
{
|
|
3674
|
+
"id": "911d448d61a99628",
|
|
3675
|
+
"type": "transform",
|
|
3676
|
+
"z": "5866424ac23291eb",
|
|
3677
|
+
"name": "",
|
|
3678
|
+
"actionSource": "Array",
|
|
3679
|
+
"actionTarget": "HTML",
|
|
3680
|
+
"sourceProperty": "msg.payload",
|
|
3681
|
+
"targetProperty": "msg.payload",
|
|
3682
|
+
"topicProperty": "msg.topic",
|
|
3683
|
+
"maxMessages": 1000,
|
|
3684
|
+
"schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
|
|
3685
|
+
"schemaType": "json",
|
|
3686
|
+
"skipLeading": 0,
|
|
3687
|
+
"skipTrailing": 0,
|
|
3688
|
+
"delimiter": ",",
|
|
3689
|
+
"compressionType": "setGzip",
|
|
3690
|
+
"x": 640,
|
|
3691
|
+
"y": 360,
|
|
3692
|
+
"wires": [
|
|
3693
|
+
[
|
|
3694
|
+
"238111a6a4d2eb17"
|
|
3695
|
+
],
|
|
3696
|
+
[]
|
|
3697
|
+
]
|
|
3698
|
+
},
|
|
3699
|
+
{
|
|
3700
|
+
"id": "238111a6a4d2eb17",
|
|
3701
|
+
"type": "test",
|
|
3702
|
+
"z": "5866424ac23291eb",
|
|
3703
|
+
"name": "",
|
|
3704
|
+
"errorFactor": 0,
|
|
3705
|
+
"escapeString": false,
|
|
3706
|
+
"infiniteIsNull": false,
|
|
3707
|
+
"payload": "[[1,2],[3,4]]",
|
|
3708
|
+
"payloadType": "json",
|
|
3709
|
+
"result": "<table><tr><td><![CDATA[1]]></td><td><![CDATA[2]]></td></tr><tr><td><![CDATA[3]]></td><td><![CDATA[4]]></td></tr></table>",
|
|
3710
|
+
"resultType": "str",
|
|
3711
|
+
"resultProperty": "msg.payload",
|
|
3712
|
+
"topic": "",
|
|
3713
|
+
"x": 350,
|
|
3714
|
+
"y": 360,
|
|
3715
|
+
"wires": [
|
|
3716
|
+
[
|
|
3717
|
+
"911d448d61a99628"
|
|
3718
|
+
],
|
|
3719
|
+
[
|
|
3720
|
+
"93c7047f87bbf964"
|
|
3721
|
+
],
|
|
3722
|
+
[
|
|
3723
|
+
"4a732ba4ce49193b"
|
|
3724
|
+
]
|
|
3725
|
+
]
|
|
3726
|
+
},
|
|
3727
|
+
{
|
|
3728
|
+
"id": "4a732ba4ce49193b",
|
|
3729
|
+
"type": "test",
|
|
3730
|
+
"z": "5866424ac23291eb",
|
|
3731
|
+
"name": "",
|
|
3732
|
+
"errorFactor": 0,
|
|
3733
|
+
"escapeString": false,
|
|
3734
|
+
"infiniteIsNull": false,
|
|
3531
3735
|
"payload": "[[1,2],[3,4]]",
|
|
3532
3736
|
"payloadType": "json",
|
|
3533
3737
|
"result": "[[\"0\",[[\"0\",1],[\"1\",2]]],[\"1\",[[\"0\",3],[\"1\",4]]]]",
|
|
3534
3738
|
"resultType": "json",
|
|
3535
3739
|
"resultProperty": "msg.payload",
|
|
3536
3740
|
"topic": "",
|
|
3537
|
-
"x":
|
|
3741
|
+
"x": 340,
|
|
3538
3742
|
"y": 440,
|
|
3539
3743
|
"wires": [
|
|
3540
3744
|
[
|
|
@@ -3577,7 +3781,7 @@
|
|
|
3577
3781
|
"stringType": "str",
|
|
3578
3782
|
"delimiter": ",",
|
|
3579
3783
|
"compressionType": "setGzip",
|
|
3580
|
-
"x":
|
|
3784
|
+
"x": 640,
|
|
3581
3785
|
"y": 440,
|
|
3582
3786
|
"wires": [
|
|
3583
3787
|
[
|
|
@@ -3602,7 +3806,7 @@
|
|
|
3602
3806
|
"resultType": "json",
|
|
3603
3807
|
"resultProperty": "msg.payload",
|
|
3604
3808
|
"topic": "",
|
|
3605
|
-
"x":
|
|
3809
|
+
"x": 350,
|
|
3606
3810
|
"y": 520,
|
|
3607
3811
|
"wires": [
|
|
3608
3812
|
[
|
|
@@ -3611,7 +3815,9 @@
|
|
|
3611
3815
|
[
|
|
3612
3816
|
"93c7047f87bbf964"
|
|
3613
3817
|
],
|
|
3614
|
-
[
|
|
3818
|
+
[
|
|
3819
|
+
"3c77d5233e994214"
|
|
3820
|
+
]
|
|
3615
3821
|
]
|
|
3616
3822
|
},
|
|
3617
3823
|
{
|
|
@@ -3631,7 +3837,7 @@
|
|
|
3631
3837
|
"skipTrailing": 0,
|
|
3632
3838
|
"delimiter": ",",
|
|
3633
3839
|
"compressionType": "setGzip",
|
|
3634
|
-
"x":
|
|
3840
|
+
"x": 640,
|
|
3635
3841
|
"y": 520,
|
|
3636
3842
|
"wires": [
|
|
3637
3843
|
[
|
|
@@ -3656,7 +3862,7 @@
|
|
|
3656
3862
|
"resultType": "str",
|
|
3657
3863
|
"resultProperty": "msg.payload",
|
|
3658
3864
|
"topic": "",
|
|
3659
|
-
"x":
|
|
3865
|
+
"x": 350,
|
|
3660
3866
|
"y": 40,
|
|
3661
3867
|
"wires": [
|
|
3662
3868
|
[
|
|
@@ -3687,7 +3893,7 @@
|
|
|
3687
3893
|
"skipTrailing": 0,
|
|
3688
3894
|
"delimiter": ",",
|
|
3689
3895
|
"compressionType": "setGzip",
|
|
3690
|
-
"x":
|
|
3896
|
+
"x": 630,
|
|
3691
3897
|
"y": 40,
|
|
3692
3898
|
"wires": [
|
|
3693
3899
|
[
|
|
@@ -3712,7 +3918,7 @@
|
|
|
3712
3918
|
"resultType": "str",
|
|
3713
3919
|
"resultProperty": "msg.payload",
|
|
3714
3920
|
"topic": "",
|
|
3715
|
-
"x":
|
|
3921
|
+
"x": 330,
|
|
3716
3922
|
"y": 120,
|
|
3717
3923
|
"wires": [
|
|
3718
3924
|
[
|
|
@@ -3743,7 +3949,7 @@
|
|
|
3743
3949
|
"skipTrailing": 0,
|
|
3744
3950
|
"delimiter": ",",
|
|
3745
3951
|
"compressionType": "setGzip",
|
|
3746
|
-
"x":
|
|
3952
|
+
"x": 630,
|
|
3747
3953
|
"y": 120,
|
|
3748
3954
|
"wires": [
|
|
3749
3955
|
[
|
|
@@ -3771,7 +3977,7 @@
|
|
|
3771
3977
|
"skipTrailing": 0,
|
|
3772
3978
|
"delimiter": ",",
|
|
3773
3979
|
"compressionType": "setGzip",
|
|
3774
|
-
"x":
|
|
3980
|
+
"x": 640,
|
|
3775
3981
|
"y": 200,
|
|
3776
3982
|
"wires": [
|
|
3777
3983
|
[
|
|
@@ -3796,7 +4002,7 @@
|
|
|
3796
4002
|
"resultType": "str",
|
|
3797
4003
|
"resultProperty": "msg.payload",
|
|
3798
4004
|
"topic": "",
|
|
3799
|
-
"x":
|
|
4005
|
+
"x": 350,
|
|
3800
4006
|
"y": 200,
|
|
3801
4007
|
"wires": [
|
|
3802
4008
|
[
|
|
@@ -3824,7 +4030,7 @@
|
|
|
3824
4030
|
"resultType": "str",
|
|
3825
4031
|
"resultProperty": "msg.payload",
|
|
3826
4032
|
"topic": "",
|
|
3827
|
-
"x":
|
|
4033
|
+
"x": 350,
|
|
3828
4034
|
"y": 280,
|
|
3829
4035
|
"wires": [
|
|
3830
4036
|
[
|
|
@@ -3838,6 +4044,31 @@
|
|
|
3838
4044
|
]
|
|
3839
4045
|
]
|
|
3840
4046
|
},
|
|
4047
|
+
{
|
|
4048
|
+
"id": "ef3c3bb841e5b85a",
|
|
4049
|
+
"type": "link in",
|
|
4050
|
+
"z": "5866424ac23291eb",
|
|
4051
|
+
"name": "transform array",
|
|
4052
|
+
"links": [],
|
|
4053
|
+
"x": 105,
|
|
4054
|
+
"y": 40,
|
|
4055
|
+
"wires": [
|
|
4056
|
+
[
|
|
4057
|
+
"16fb26ead524acd9"
|
|
4058
|
+
]
|
|
4059
|
+
]
|
|
4060
|
+
},
|
|
4061
|
+
{
|
|
4062
|
+
"id": "3c77d5233e994214",
|
|
4063
|
+
"type": "link out",
|
|
4064
|
+
"z": "5866424ac23291eb",
|
|
4065
|
+
"name": "transform array finished",
|
|
4066
|
+
"mode": "return",
|
|
4067
|
+
"links": [],
|
|
4068
|
+
"x": 555,
|
|
4069
|
+
"y": 620,
|
|
4070
|
+
"wires": []
|
|
4071
|
+
},
|
|
3841
4072
|
{
|
|
3842
4073
|
"id": "49b2ad130416e0a0",
|
|
3843
4074
|
"type": "transform",
|
|
@@ -4595,7 +4826,8 @@
|
|
|
4595
4826
|
"3113b8a9e4b92296"
|
|
4596
4827
|
],
|
|
4597
4828
|
[
|
|
4598
|
-
"a411a1f479258d72"
|
|
4829
|
+
"a411a1f479258d72",
|
|
4830
|
+
"d8e481b0d9a11465"
|
|
4599
4831
|
]
|
|
4600
4832
|
]
|
|
4601
4833
|
},
|
|
@@ -4638,6 +4870,31 @@
|
|
|
4638
4870
|
[]
|
|
4639
4871
|
]
|
|
4640
4872
|
},
|
|
4873
|
+
{
|
|
4874
|
+
"id": "2605139b45f1f105",
|
|
4875
|
+
"type": "link in",
|
|
4876
|
+
"z": "1374c39ae82adb4e",
|
|
4877
|
+
"name": "transform date",
|
|
4878
|
+
"links": [],
|
|
4879
|
+
"x": 75,
|
|
4880
|
+
"y": 160,
|
|
4881
|
+
"wires": [
|
|
4882
|
+
[
|
|
4883
|
+
"d96341af5b44e199"
|
|
4884
|
+
]
|
|
4885
|
+
]
|
|
4886
|
+
},
|
|
4887
|
+
{
|
|
4888
|
+
"id": "d8e481b0d9a11465",
|
|
4889
|
+
"type": "link out",
|
|
4890
|
+
"z": "1374c39ae82adb4e",
|
|
4891
|
+
"name": "trans form date finish",
|
|
4892
|
+
"mode": "return",
|
|
4893
|
+
"links": [],
|
|
4894
|
+
"x": 1235,
|
|
4895
|
+
"y": 680,
|
|
4896
|
+
"wires": []
|
|
4897
|
+
},
|
|
4641
4898
|
{
|
|
4642
4899
|
"id": "ee2d5b0149699bfd",
|
|
4643
4900
|
"type": "transform",
|
|
@@ -4671,7 +4928,7 @@
|
|
|
4671
4928
|
"type": "debug",
|
|
4672
4929
|
"z": "65b5beda2b73b7b5",
|
|
4673
4930
|
"name": "debug",
|
|
4674
|
-
"active":
|
|
4931
|
+
"active": false,
|
|
4675
4932
|
"tosidebar": true,
|
|
4676
4933
|
"console": false,
|
|
4677
4934
|
"tostatus": false,
|
|
@@ -4915,7 +5172,9 @@
|
|
|
4915
5172
|
[
|
|
4916
5173
|
"10a0adbf5535121a"
|
|
4917
5174
|
],
|
|
4918
|
-
[
|
|
5175
|
+
[
|
|
5176
|
+
"84bf5aaa74b38e59"
|
|
5177
|
+
]
|
|
4919
5178
|
]
|
|
4920
5179
|
},
|
|
4921
5180
|
{
|
|
@@ -4959,14 +5218,292 @@
|
|
|
4959
5218
|
]
|
|
4960
5219
|
},
|
|
4961
5220
|
{
|
|
4962
|
-
"id": "
|
|
4963
|
-
"type": "
|
|
4964
|
-
"z": "
|
|
4965
|
-
"name": "",
|
|
4966
|
-
"
|
|
4967
|
-
"
|
|
4968
|
-
"
|
|
4969
|
-
"
|
|
5221
|
+
"id": "0c1e0f0f3543e49e",
|
|
5222
|
+
"type": "link in",
|
|
5223
|
+
"z": "65b5beda2b73b7b5",
|
|
5224
|
+
"name": "transform compress",
|
|
5225
|
+
"links": [],
|
|
5226
|
+
"x": 75,
|
|
5227
|
+
"y": 40,
|
|
5228
|
+
"wires": [
|
|
5229
|
+
[
|
|
5230
|
+
"d38095883a4a54ac"
|
|
5231
|
+
]
|
|
5232
|
+
]
|
|
5233
|
+
},
|
|
5234
|
+
{
|
|
5235
|
+
"id": "84bf5aaa74b38e59",
|
|
5236
|
+
"type": "link out",
|
|
5237
|
+
"z": "65b5beda2b73b7b5",
|
|
5238
|
+
"name": "transform compress finished",
|
|
5239
|
+
"mode": "return",
|
|
5240
|
+
"links": [],
|
|
5241
|
+
"x": 305,
|
|
5242
|
+
"y": 760,
|
|
5243
|
+
"wires": []
|
|
5244
|
+
},
|
|
5245
|
+
{
|
|
5246
|
+
"id": "5ac2ef6c.d0953",
|
|
5247
|
+
"type": "test",
|
|
5248
|
+
"z": "e45553957f2b6fab",
|
|
5249
|
+
"name": "",
|
|
5250
|
+
"errorFactor": "",
|
|
5251
|
+
"escapeString": false,
|
|
5252
|
+
"payload": "{\"a\":1,\"b\":1}",
|
|
5253
|
+
"payloadType": "json",
|
|
5254
|
+
"result": "{\"a\":1,\"b\":1}",
|
|
5255
|
+
"resultType": "json",
|
|
5256
|
+
"resultProperty": "msg.payload",
|
|
5257
|
+
"topic": "",
|
|
5258
|
+
"x": 280,
|
|
5259
|
+
"y": 100,
|
|
5260
|
+
"wires": [
|
|
5261
|
+
[
|
|
5262
|
+
"2ce3786.acae688"
|
|
5263
|
+
],
|
|
5264
|
+
[
|
|
5265
|
+
"039806dcd68d6ff2"
|
|
5266
|
+
],
|
|
5267
|
+
[
|
|
5268
|
+
"d49331e9f6193c4f"
|
|
5269
|
+
]
|
|
5270
|
+
]
|
|
5271
|
+
},
|
|
5272
|
+
{
|
|
5273
|
+
"id": "2ce3786.acae688",
|
|
5274
|
+
"type": "transform",
|
|
5275
|
+
"z": "e45553957f2b6fab",
|
|
5276
|
+
"name": "",
|
|
5277
|
+
"actionSource": "JSON",
|
|
5278
|
+
"deleteSource": "true",
|
|
5279
|
+
"deleteSourceType": "bool",
|
|
5280
|
+
"actionTarget": "JSON",
|
|
5281
|
+
"sourceProperty": "",
|
|
5282
|
+
"targetProperty": "",
|
|
5283
|
+
"topicProperty": "",
|
|
5284
|
+
"JSONataSource": "",
|
|
5285
|
+
"JSONataTarget": "",
|
|
5286
|
+
"index": "",
|
|
5287
|
+
"maxMessages": "",
|
|
5288
|
+
"maxDate": "",
|
|
5289
|
+
"minDate": "",
|
|
5290
|
+
"maxNumber": "",
|
|
5291
|
+
"minNumber": "",
|
|
5292
|
+
"maxString": "",
|
|
5293
|
+
"minString": "",
|
|
5294
|
+
"radix": "",
|
|
5295
|
+
"schema": "",
|
|
5296
|
+
"schemaType": "str",
|
|
5297
|
+
"skipLeading": "",
|
|
5298
|
+
"skipTrailing": "",
|
|
5299
|
+
"string": "",
|
|
5300
|
+
"stringType": "str",
|
|
5301
|
+
"delimiter": ",",
|
|
5302
|
+
"compressionType": "setGzip",
|
|
5303
|
+
"x": 640,
|
|
5304
|
+
"y": 20,
|
|
5305
|
+
"wires": [
|
|
5306
|
+
[
|
|
5307
|
+
"5ac2ef6c.d0953"
|
|
5308
|
+
],
|
|
5309
|
+
[
|
|
5310
|
+
"039806dcd68d6ff2"
|
|
5311
|
+
]
|
|
5312
|
+
]
|
|
5313
|
+
},
|
|
5314
|
+
{
|
|
5315
|
+
"id": "d49331e9f6193c4f",
|
|
5316
|
+
"type": "test",
|
|
5317
|
+
"z": "e45553957f2b6fab",
|
|
5318
|
+
"name": "",
|
|
5319
|
+
"errorFactor": "",
|
|
5320
|
+
"escapeString": false,
|
|
5321
|
+
"payload": "{\"in\":{\"a\":1,\"b\":1}}",
|
|
5322
|
+
"payloadType": "json",
|
|
5323
|
+
"result": "1",
|
|
5324
|
+
"resultType": "num",
|
|
5325
|
+
"resultProperty": "msg.payload",
|
|
5326
|
+
"topic": "",
|
|
5327
|
+
"x": 270,
|
|
5328
|
+
"y": 240,
|
|
5329
|
+
"wires": [
|
|
5330
|
+
[
|
|
5331
|
+
"670969e02ee29ad1"
|
|
5332
|
+
],
|
|
5333
|
+
[
|
|
5334
|
+
"039806dcd68d6ff2"
|
|
5335
|
+
],
|
|
5336
|
+
[
|
|
5337
|
+
"5e2a7ceef9de11bf"
|
|
5338
|
+
]
|
|
5339
|
+
]
|
|
5340
|
+
},
|
|
5341
|
+
{
|
|
5342
|
+
"id": "670969e02ee29ad1",
|
|
5343
|
+
"type": "transform",
|
|
5344
|
+
"z": "e45553957f2b6fab",
|
|
5345
|
+
"name": "",
|
|
5346
|
+
"actionSource": "JSON",
|
|
5347
|
+
"deleteSource": "true",
|
|
5348
|
+
"deleteSourceType": "bool",
|
|
5349
|
+
"actionTarget": "JSON",
|
|
5350
|
+
"sourceProperty": "",
|
|
5351
|
+
"targetProperty": "",
|
|
5352
|
+
"topicProperty": "",
|
|
5353
|
+
"JSONataSource": "in.a",
|
|
5354
|
+
"JSONataSourceType": "jsonata",
|
|
5355
|
+
"JSONataTarget": "",
|
|
5356
|
+
"JSONataTargetType": "jsonata",
|
|
5357
|
+
"index": "",
|
|
5358
|
+
"maxMessages": "",
|
|
5359
|
+
"maxDate": "",
|
|
5360
|
+
"minDate": "",
|
|
5361
|
+
"maxNumber": "",
|
|
5362
|
+
"minNumber": "",
|
|
5363
|
+
"maxString": "",
|
|
5364
|
+
"minString": "",
|
|
5365
|
+
"radix": "",
|
|
5366
|
+
"schema": "",
|
|
5367
|
+
"schemaType": "str",
|
|
5368
|
+
"skipLeading": "",
|
|
5369
|
+
"skipTrailing": "",
|
|
5370
|
+
"string": "",
|
|
5371
|
+
"stringType": "str",
|
|
5372
|
+
"delimiter": ",",
|
|
5373
|
+
"compressionType": "setGzip",
|
|
5374
|
+
"x": 640,
|
|
5375
|
+
"y": 160,
|
|
5376
|
+
"wires": [
|
|
5377
|
+
[
|
|
5378
|
+
"d49331e9f6193c4f"
|
|
5379
|
+
],
|
|
5380
|
+
[
|
|
5381
|
+
"039806dcd68d6ff2"
|
|
5382
|
+
]
|
|
5383
|
+
]
|
|
5384
|
+
},
|
|
5385
|
+
{
|
|
5386
|
+
"id": "039806dcd68d6ff2",
|
|
5387
|
+
"type": "debug",
|
|
5388
|
+
"z": "e45553957f2b6fab",
|
|
5389
|
+
"name": "error",
|
|
5390
|
+
"active": true,
|
|
5391
|
+
"tosidebar": true,
|
|
5392
|
+
"console": false,
|
|
5393
|
+
"tostatus": false,
|
|
5394
|
+
"complete": "true",
|
|
5395
|
+
"targetType": "full",
|
|
5396
|
+
"statusVal": "",
|
|
5397
|
+
"statusType": "auto",
|
|
5398
|
+
"x": 930,
|
|
5399
|
+
"y": 220,
|
|
5400
|
+
"wires": []
|
|
5401
|
+
},
|
|
5402
|
+
{
|
|
5403
|
+
"id": "b02379a693c4f95d",
|
|
5404
|
+
"type": "link out",
|
|
5405
|
+
"z": "e45553957f2b6fab",
|
|
5406
|
+
"name": "link out 4",
|
|
5407
|
+
"mode": "return",
|
|
5408
|
+
"links": [],
|
|
5409
|
+
"x": 545,
|
|
5410
|
+
"y": 380,
|
|
5411
|
+
"wires": []
|
|
5412
|
+
},
|
|
5413
|
+
{
|
|
5414
|
+
"id": "8bc4d0adfbe612e5",
|
|
5415
|
+
"type": "link in",
|
|
5416
|
+
"z": "e45553957f2b6fab",
|
|
5417
|
+
"name": "transform json",
|
|
5418
|
+
"links": [],
|
|
5419
|
+
"x": 75,
|
|
5420
|
+
"y": 40,
|
|
5421
|
+
"wires": [
|
|
5422
|
+
[
|
|
5423
|
+
"5ac2ef6c.d0953"
|
|
5424
|
+
]
|
|
5425
|
+
]
|
|
5426
|
+
},
|
|
5427
|
+
{
|
|
5428
|
+
"id": "5e2a7ceef9de11bf",
|
|
5429
|
+
"type": "test",
|
|
5430
|
+
"z": "e45553957f2b6fab",
|
|
5431
|
+
"name": "",
|
|
5432
|
+
"errorFactor": "",
|
|
5433
|
+
"escapeString": false,
|
|
5434
|
+
"payload": "{\"in\":{\"a\":1,\"b\":1}}",
|
|
5435
|
+
"payloadType": "json",
|
|
5436
|
+
"result": "1",
|
|
5437
|
+
"resultType": "num",
|
|
5438
|
+
"resultProperty": "msg.payload",
|
|
5439
|
+
"topic": "",
|
|
5440
|
+
"x": 290,
|
|
5441
|
+
"y": 360,
|
|
5442
|
+
"wires": [
|
|
5443
|
+
[
|
|
5444
|
+
"96f0fb80a916acba"
|
|
5445
|
+
],
|
|
5446
|
+
[
|
|
5447
|
+
"039806dcd68d6ff2"
|
|
5448
|
+
],
|
|
5449
|
+
[
|
|
5450
|
+
"b02379a693c4f95d"
|
|
5451
|
+
]
|
|
5452
|
+
]
|
|
5453
|
+
},
|
|
5454
|
+
{
|
|
5455
|
+
"id": "96f0fb80a916acba",
|
|
5456
|
+
"type": "transform",
|
|
5457
|
+
"z": "e45553957f2b6fab",
|
|
5458
|
+
"name": "",
|
|
5459
|
+
"actionSource": "JSON",
|
|
5460
|
+
"deleteSource": "true",
|
|
5461
|
+
"deleteSourceType": "bool",
|
|
5462
|
+
"actionTarget": "JSON",
|
|
5463
|
+
"sourceProperty": "",
|
|
5464
|
+
"targetProperty": "",
|
|
5465
|
+
"topicProperty": "",
|
|
5466
|
+
"JSONataSource": "",
|
|
5467
|
+
"JSONataSourceType": "jsonata",
|
|
5468
|
+
"JSONataTarget": "in.a",
|
|
5469
|
+
"JSONataTargetType": "jsonata",
|
|
5470
|
+
"index": "",
|
|
5471
|
+
"maxMessages": "",
|
|
5472
|
+
"maxDate": "",
|
|
5473
|
+
"minDate": "",
|
|
5474
|
+
"maxNumber": "",
|
|
5475
|
+
"minNumber": "",
|
|
5476
|
+
"maxString": "",
|
|
5477
|
+
"minString": "",
|
|
5478
|
+
"radix": "",
|
|
5479
|
+
"schema": "",
|
|
5480
|
+
"schemaType": "str",
|
|
5481
|
+
"skipLeading": "",
|
|
5482
|
+
"skipTrailing": "",
|
|
5483
|
+
"string": "",
|
|
5484
|
+
"stringType": "str",
|
|
5485
|
+
"delimiter": ",",
|
|
5486
|
+
"compressionType": "setGzip",
|
|
5487
|
+
"x": 660,
|
|
5488
|
+
"y": 280,
|
|
5489
|
+
"wires": [
|
|
5490
|
+
[
|
|
5491
|
+
"5e2a7ceef9de11bf"
|
|
5492
|
+
],
|
|
5493
|
+
[
|
|
5494
|
+
"039806dcd68d6ff2"
|
|
5495
|
+
]
|
|
5496
|
+
]
|
|
5497
|
+
},
|
|
5498
|
+
{
|
|
5499
|
+
"id": "47a287530ed838e7",
|
|
5500
|
+
"type": "transform",
|
|
5501
|
+
"z": "460ae66eec4b7f8a",
|
|
5502
|
+
"name": "",
|
|
5503
|
+
"actionSource": "String",
|
|
5504
|
+
"deleteSource": "true",
|
|
5505
|
+
"deleteSourceType": "bool",
|
|
5506
|
+
"actionTarget": "Append",
|
|
4970
5507
|
"sourceProperty": "msg.payload",
|
|
4971
5508
|
"targetProperty": "msg.payload",
|
|
4972
5509
|
"topicProperty": "msg.topic",
|
|
@@ -5006,13 +5543,15 @@
|
|
|
5006
5543
|
"resultType": "str",
|
|
5007
5544
|
"resultProperty": "msg.payload",
|
|
5008
5545
|
"topic": "",
|
|
5009
|
-
"x":
|
|
5546
|
+
"x": 240,
|
|
5010
5547
|
"y": 40,
|
|
5011
5548
|
"wires": [
|
|
5012
5549
|
[
|
|
5013
5550
|
"47a287530ed838e7"
|
|
5014
5551
|
],
|
|
5015
|
-
[
|
|
5552
|
+
[
|
|
5553
|
+
"925117734d8e96b5"
|
|
5554
|
+
],
|
|
5016
5555
|
[
|
|
5017
5556
|
"8d8bb2e1192b3a8c"
|
|
5018
5557
|
]
|
|
@@ -5031,8 +5570,8 @@
|
|
|
5031
5570
|
"targetType": "full",
|
|
5032
5571
|
"statusVal": "",
|
|
5033
5572
|
"statusType": "auto",
|
|
5034
|
-
"x":
|
|
5035
|
-
"y":
|
|
5573
|
+
"x": 890,
|
|
5574
|
+
"y": 80,
|
|
5036
5575
|
"wires": []
|
|
5037
5576
|
},
|
|
5038
5577
|
{
|
|
@@ -5055,7 +5594,9 @@
|
|
|
5055
5594
|
[
|
|
5056
5595
|
"517c89e4609e0e70"
|
|
5057
5596
|
],
|
|
5058
|
-
[
|
|
5597
|
+
[
|
|
5598
|
+
"925117734d8e96b5"
|
|
5599
|
+
],
|
|
5059
5600
|
[
|
|
5060
5601
|
"f78d540c53a64514"
|
|
5061
5602
|
]
|
|
@@ -5149,7 +5690,9 @@
|
|
|
5149
5690
|
[
|
|
5150
5691
|
"88582559dcf028bb"
|
|
5151
5692
|
],
|
|
5152
|
-
[
|
|
5693
|
+
[
|
|
5694
|
+
"925117734d8e96b5"
|
|
5695
|
+
],
|
|
5153
5696
|
[
|
|
5154
5697
|
"270a0e8c4f3d5172"
|
|
5155
5698
|
]
|
|
@@ -5175,7 +5718,9 @@
|
|
|
5175
5718
|
[
|
|
5176
5719
|
"daeadb001d8ec243"
|
|
5177
5720
|
],
|
|
5178
|
-
[
|
|
5721
|
+
[
|
|
5722
|
+
"925117734d8e96b5"
|
|
5723
|
+
],
|
|
5179
5724
|
[
|
|
5180
5725
|
"c64612fcd16ee4c2"
|
|
5181
5726
|
]
|
|
@@ -5235,7 +5780,9 @@
|
|
|
5235
5780
|
[
|
|
5236
5781
|
"4314006f6dc95d97"
|
|
5237
5782
|
],
|
|
5238
|
-
[
|
|
5783
|
+
[
|
|
5784
|
+
"925117734d8e96b5"
|
|
5785
|
+
],
|
|
5239
5786
|
[
|
|
5240
5787
|
"7c1ffb0b49742528"
|
|
5241
5788
|
]
|
|
@@ -5351,12 +5898,20 @@
|
|
|
5351
5898
|
"actionSource": "String",
|
|
5352
5899
|
"deleteSource": "true",
|
|
5353
5900
|
"deleteSourceType": "bool",
|
|
5354
|
-
"actionTarget": "
|
|
5901
|
+
"actionTarget": "DateLocal",
|
|
5355
5902
|
"sourceProperty": "msg.payload.a",
|
|
5356
5903
|
"targetProperty": "msg.payload.b",
|
|
5357
5904
|
"topicProperty": "msg.topic",
|
|
5905
|
+
"JSONataSource": "",
|
|
5906
|
+
"JSONataTarget": "",
|
|
5358
5907
|
"index": "1",
|
|
5359
5908
|
"maxMessages": 1000,
|
|
5909
|
+
"maxDate": "",
|
|
5910
|
+
"minDate": "",
|
|
5911
|
+
"maxNumber": "",
|
|
5912
|
+
"minNumber": "",
|
|
5913
|
+
"maxString": "",
|
|
5914
|
+
"minString": "",
|
|
5360
5915
|
"radix": 10,
|
|
5361
5916
|
"schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
|
|
5362
5917
|
"schemaType": "str",
|
|
@@ -5366,7 +5921,7 @@
|
|
|
5366
5921
|
"stringType": "str",
|
|
5367
5922
|
"delimiter": ",",
|
|
5368
5923
|
"compressionType": "setGzip",
|
|
5369
|
-
"x":
|
|
5924
|
+
"x": 510,
|
|
5370
5925
|
"y": 600,
|
|
5371
5926
|
"wires": [
|
|
5372
5927
|
[
|
|
@@ -5389,8 +5944,18 @@
|
|
|
5389
5944
|
"sourceProperty": "msg.payload.a",
|
|
5390
5945
|
"targetProperty": "msg.payload.b",
|
|
5391
5946
|
"topicProperty": "msg.topic",
|
|
5947
|
+
"JSONataSource": "",
|
|
5948
|
+
"JSONataSourceType": "jsonata",
|
|
5949
|
+
"JSONataTarget": "",
|
|
5950
|
+
"JSONataTargetType": "jsonata",
|
|
5392
5951
|
"index": "1",
|
|
5393
5952
|
"maxMessages": 1000,
|
|
5953
|
+
"maxDate": "",
|
|
5954
|
+
"minDate": "",
|
|
5955
|
+
"maxNumber": "",
|
|
5956
|
+
"minNumber": "",
|
|
5957
|
+
"maxString": "",
|
|
5958
|
+
"minString": "",
|
|
5394
5959
|
"radix": 10,
|
|
5395
5960
|
"schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
|
|
5396
5961
|
"schemaType": "str",
|
|
@@ -5567,7 +6132,9 @@
|
|
|
5567
6132
|
[
|
|
5568
6133
|
"5a4cf5bbdd78ca08"
|
|
5569
6134
|
],
|
|
5570
|
-
[
|
|
6135
|
+
[
|
|
6136
|
+
"925117734d8e96b5"
|
|
6137
|
+
],
|
|
5571
6138
|
[
|
|
5572
6139
|
"2a5e51b612e3b1f8"
|
|
5573
6140
|
]
|
|
@@ -5593,7 +6160,9 @@
|
|
|
5593
6160
|
[
|
|
5594
6161
|
"d950412c4738c78f"
|
|
5595
6162
|
],
|
|
5596
|
-
[
|
|
6163
|
+
[
|
|
6164
|
+
"925117734d8e96b5"
|
|
6165
|
+
],
|
|
5597
6166
|
[
|
|
5598
6167
|
"dc4920acde5f87e4"
|
|
5599
6168
|
]
|
|
@@ -5605,21 +6174,23 @@
|
|
|
5605
6174
|
"z": "460ae66eec4b7f8a",
|
|
5606
6175
|
"name": "",
|
|
5607
6176
|
"errorFactor": 0,
|
|
5608
|
-
"escapeString":
|
|
6177
|
+
"escapeString": false,
|
|
5609
6178
|
"infiniteIsNull": false,
|
|
5610
6179
|
"payload": "{\"a\":\"1/1/2001\"}",
|
|
5611
6180
|
"payloadType": "json",
|
|
5612
|
-
"result": "
|
|
5613
|
-
"resultType": "
|
|
6181
|
+
"result": "$boolean(b.toLocaleDateString()=\"01/01/2001\")",
|
|
6182
|
+
"resultType": "jsonata",
|
|
5614
6183
|
"resultProperty": "msg.payload",
|
|
5615
6184
|
"topic": "",
|
|
5616
|
-
"x":
|
|
6185
|
+
"x": 170,
|
|
5617
6186
|
"y": 600,
|
|
5618
6187
|
"wires": [
|
|
5619
6188
|
[
|
|
5620
6189
|
"072e7d19acea716f"
|
|
5621
6190
|
],
|
|
5622
|
-
[
|
|
6191
|
+
[
|
|
6192
|
+
"925117734d8e96b5"
|
|
6193
|
+
],
|
|
5623
6194
|
[
|
|
5624
6195
|
"71bde3f27fe075fc"
|
|
5625
6196
|
]
|
|
@@ -5701,7 +6272,9 @@
|
|
|
5701
6272
|
[
|
|
5702
6273
|
"4c20187ba4f4d732"
|
|
5703
6274
|
],
|
|
5704
|
-
[
|
|
6275
|
+
[
|
|
6276
|
+
"925117734d8e96b5"
|
|
6277
|
+
],
|
|
5705
6278
|
[
|
|
5706
6279
|
"186e62ee33add8f7"
|
|
5707
6280
|
]
|
|
@@ -5753,7 +6326,9 @@
|
|
|
5753
6326
|
[
|
|
5754
6327
|
"fd3ddc020e4e4dd5"
|
|
5755
6328
|
],
|
|
5756
|
-
[
|
|
6329
|
+
[
|
|
6330
|
+
"925117734d8e96b5"
|
|
6331
|
+
],
|
|
5757
6332
|
[
|
|
5758
6333
|
"dcc18294163735c9"
|
|
5759
6334
|
]
|
|
@@ -6714,60 +7289,143 @@
|
|
|
6714
7289
|
[
|
|
6715
7290
|
"925117734d8e96b5"
|
|
6716
7291
|
],
|
|
6717
|
-
[
|
|
7292
|
+
[
|
|
7293
|
+
"bee4fdd51ea59704"
|
|
7294
|
+
]
|
|
6718
7295
|
]
|
|
6719
7296
|
},
|
|
6720
7297
|
{
|
|
6721
|
-
"id": "
|
|
6722
|
-
"type": "
|
|
7298
|
+
"id": "e057797d0b796145",
|
|
7299
|
+
"type": "link in",
|
|
7300
|
+
"z": "460ae66eec4b7f8a",
|
|
7301
|
+
"name": "transform string in",
|
|
7302
|
+
"links": [],
|
|
7303
|
+
"x": 55,
|
|
7304
|
+
"y": 40,
|
|
7305
|
+
"wires": [
|
|
7306
|
+
[
|
|
7307
|
+
"9ec96a604b0f3e20"
|
|
7308
|
+
]
|
|
7309
|
+
]
|
|
7310
|
+
},
|
|
7311
|
+
{
|
|
7312
|
+
"id": "bee4fdd51ea59704",
|
|
7313
|
+
"type": "link out",
|
|
7314
|
+
"z": "460ae66eec4b7f8a",
|
|
7315
|
+
"name": "transform string",
|
|
7316
|
+
"mode": "return",
|
|
7317
|
+
"links": [],
|
|
7318
|
+
"x": 335,
|
|
7319
|
+
"y": 2340,
|
|
7320
|
+
"wires": []
|
|
7321
|
+
},
|
|
7322
|
+
{
|
|
7323
|
+
"id": "3db2b919.ea68d6",
|
|
7324
|
+
"type": "debug",
|
|
6723
7325
|
"z": "924bb2b7.03fd1",
|
|
6724
|
-
"name": "
|
|
6725
|
-
"
|
|
6726
|
-
|
|
6727
|
-
|
|
6728
|
-
|
|
6729
|
-
|
|
6730
|
-
|
|
6731
|
-
|
|
6732
|
-
|
|
6733
|
-
|
|
6734
|
-
"
|
|
6735
|
-
"
|
|
6736
|
-
|
|
6737
|
-
|
|
6738
|
-
"
|
|
7326
|
+
"name": "error",
|
|
7327
|
+
"active": true,
|
|
7328
|
+
"tosidebar": true,
|
|
7329
|
+
"console": false,
|
|
7330
|
+
"tostatus": false,
|
|
7331
|
+
"complete": "true",
|
|
7332
|
+
"targetType": "full",
|
|
7333
|
+
"statusVal": "",
|
|
7334
|
+
"statusType": "auto",
|
|
7335
|
+
"x": 730,
|
|
7336
|
+
"y": 420,
|
|
7337
|
+
"wires": []
|
|
7338
|
+
},
|
|
7339
|
+
{
|
|
7340
|
+
"id": "32a48f00e9c32747",
|
|
7341
|
+
"type": "Monitor Flow",
|
|
7342
|
+
"z": "924bb2b7.03fd1",
|
|
7343
|
+
"name": "",
|
|
7344
|
+
"x": 590,
|
|
7345
|
+
"y": 20,
|
|
7346
|
+
"wires": [
|
|
7347
|
+
[
|
|
7348
|
+
"7794ab9c1ff64390"
|
|
7349
|
+
]
|
|
7350
|
+
]
|
|
7351
|
+
},
|
|
7352
|
+
{
|
|
7353
|
+
"id": "4e471cf4f77579e9",
|
|
7354
|
+
"type": "link out",
|
|
7355
|
+
"z": "924bb2b7.03fd1",
|
|
7356
|
+
"name": "transform xlsx finish",
|
|
7357
|
+
"mode": "return",
|
|
7358
|
+
"links": [],
|
|
7359
|
+
"x": 745,
|
|
7360
|
+
"y": 60,
|
|
7361
|
+
"wires": []
|
|
7362
|
+
},
|
|
7363
|
+
{
|
|
7364
|
+
"id": "0e4f57304e89edb8",
|
|
7365
|
+
"type": "test",
|
|
7366
|
+
"z": "924bb2b7.03fd1",
|
|
7367
|
+
"name": "",
|
|
7368
|
+
"errorFactor": 0,
|
|
7369
|
+
"escapeString": false,
|
|
7370
|
+
"infiniteIsNull": false,
|
|
6739
7371
|
"payload": "{\"worksheet1\":[[11,12],[21,22],[31,32]],\"worksheet2\":[[11,12],[21,22]]}",
|
|
6740
7372
|
"payloadType": "json",
|
|
6741
|
-
"
|
|
6742
|
-
"
|
|
7373
|
+
"result": "{\"worksheet1\":[[11,12],[21,22],[31,32]],\"worksheet2\":[[11,12],[21,22]]}",
|
|
7374
|
+
"resultType": "json",
|
|
7375
|
+
"resultProperty": "msg.payload",
|
|
7376
|
+
"topic": "",
|
|
7377
|
+
"x": 260,
|
|
7378
|
+
"y": 40,
|
|
6743
7379
|
"wires": [
|
|
6744
7380
|
[
|
|
6745
|
-
"
|
|
7381
|
+
"32a48f00e9c32747"
|
|
7382
|
+
],
|
|
7383
|
+
[
|
|
7384
|
+
"3db2b919.ea68d6"
|
|
7385
|
+
],
|
|
7386
|
+
[
|
|
7387
|
+
"4e471cf4f77579e9"
|
|
6746
7388
|
]
|
|
6747
7389
|
]
|
|
6748
7390
|
},
|
|
6749
7391
|
{
|
|
6750
|
-
"id": "
|
|
7392
|
+
"id": "7794ab9c1ff64390",
|
|
6751
7393
|
"type": "transform",
|
|
6752
7394
|
"z": "924bb2b7.03fd1",
|
|
6753
7395
|
"name": "",
|
|
6754
7396
|
"actionSource": "Array",
|
|
7397
|
+
"deleteSource": "true",
|
|
7398
|
+
"deleteSourceType": "bool",
|
|
6755
7399
|
"actionTarget": "XLSX",
|
|
6756
7400
|
"sourceProperty": "msg.payload",
|
|
6757
|
-
"targetProperty": "msg.
|
|
7401
|
+
"targetProperty": "msg.payload",
|
|
6758
7402
|
"topicProperty": "msg.topic",
|
|
7403
|
+
"JSONataSource": "",
|
|
7404
|
+
"JSONataSourceType": "jsonata",
|
|
7405
|
+
"JSONataTarget": "",
|
|
7406
|
+
"JSONataTargetType": "jsonata",
|
|
7407
|
+
"index": 0,
|
|
6759
7408
|
"maxMessages": 1000,
|
|
7409
|
+
"maxDate": "",
|
|
7410
|
+
"minDate": "",
|
|
7411
|
+
"maxNumber": 0,
|
|
7412
|
+
"minNumber": 0,
|
|
7413
|
+
"maxString": "",
|
|
7414
|
+
"minString": "",
|
|
7415
|
+
"radix": 10,
|
|
6760
7416
|
"schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
|
|
6761
|
-
"schemaType": "
|
|
7417
|
+
"schemaType": "str",
|
|
6762
7418
|
"skipLeading": 0,
|
|
6763
7419
|
"skipTrailing": 0,
|
|
7420
|
+
"string": "",
|
|
7421
|
+
"stringType": "str",
|
|
6764
7422
|
"delimiter": ",",
|
|
6765
|
-
"
|
|
6766
|
-
"
|
|
7423
|
+
"compressionType": "setGzip",
|
|
7424
|
+
"x": 520,
|
|
7425
|
+
"y": 140,
|
|
6767
7426
|
"wires": [
|
|
6768
7427
|
[
|
|
6769
|
-
"
|
|
6770
|
-
"7bde11d2.378e6"
|
|
7428
|
+
"69cf00efd482d012"
|
|
6771
7429
|
],
|
|
6772
7430
|
[
|
|
6773
7431
|
"3db2b919.ea68d6"
|
|
@@ -6775,26 +7433,43 @@
|
|
|
6775
7433
|
]
|
|
6776
7434
|
},
|
|
6777
7435
|
{
|
|
6778
|
-
"id": "
|
|
7436
|
+
"id": "000cda4258683bde",
|
|
6779
7437
|
"type": "transform",
|
|
6780
7438
|
"z": "924bb2b7.03fd1",
|
|
6781
7439
|
"name": "",
|
|
6782
|
-
"actionSource": "
|
|
7440
|
+
"actionSource": "XLSX",
|
|
7441
|
+
"deleteSource": "true",
|
|
7442
|
+
"deleteSourceType": "bool",
|
|
6783
7443
|
"actionTarget": "XLSXObject",
|
|
6784
7444
|
"sourceProperty": "msg.payload",
|
|
6785
|
-
"targetProperty": "msg.
|
|
7445
|
+
"targetProperty": "msg.payload",
|
|
6786
7446
|
"topicProperty": "msg.topic",
|
|
7447
|
+
"JSONataSource": "",
|
|
7448
|
+
"JSONataSourceType": "jsonata",
|
|
7449
|
+
"JSONataTarget": "",
|
|
7450
|
+
"JSONataTargetType": "jsonata",
|
|
7451
|
+
"index": 0,
|
|
6787
7452
|
"maxMessages": 1000,
|
|
7453
|
+
"maxDate": "",
|
|
7454
|
+
"minDate": "",
|
|
7455
|
+
"maxNumber": 0,
|
|
7456
|
+
"minNumber": 0,
|
|
7457
|
+
"maxString": "",
|
|
7458
|
+
"minString": "",
|
|
7459
|
+
"radix": 10,
|
|
6788
7460
|
"schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
|
|
6789
|
-
"schemaType": "
|
|
7461
|
+
"schemaType": "str",
|
|
6790
7462
|
"skipLeading": 0,
|
|
6791
7463
|
"skipTrailing": 0,
|
|
7464
|
+
"string": "",
|
|
7465
|
+
"stringType": "str",
|
|
6792
7466
|
"delimiter": ",",
|
|
6793
|
-
"
|
|
6794
|
-
"
|
|
7467
|
+
"compressionType": "setGzip",
|
|
7468
|
+
"x": 380,
|
|
7469
|
+
"y": 220,
|
|
6795
7470
|
"wires": [
|
|
6796
7471
|
[
|
|
6797
|
-
"
|
|
7472
|
+
"7208e9201d7f1fcf"
|
|
6798
7473
|
],
|
|
6799
7474
|
[
|
|
6800
7475
|
"3db2b919.ea68d6"
|
|
@@ -6802,26 +7477,43 @@
|
|
|
6802
7477
|
]
|
|
6803
7478
|
},
|
|
6804
7479
|
{
|
|
6805
|
-
"id": "
|
|
7480
|
+
"id": "dd556f2fb8c84838",
|
|
6806
7481
|
"type": "transform",
|
|
6807
7482
|
"z": "924bb2b7.03fd1",
|
|
6808
7483
|
"name": "",
|
|
6809
|
-
"actionSource": "
|
|
6810
|
-
"
|
|
6811
|
-
"
|
|
6812
|
-
"
|
|
7484
|
+
"actionSource": "XLSXObject",
|
|
7485
|
+
"deleteSource": "true",
|
|
7486
|
+
"deleteSourceType": "bool",
|
|
7487
|
+
"actionTarget": "JSON",
|
|
7488
|
+
"sourceProperty": "msg.payload",
|
|
7489
|
+
"targetProperty": "msg.payload",
|
|
6813
7490
|
"topicProperty": "msg.topic",
|
|
7491
|
+
"JSONataSource": "",
|
|
7492
|
+
"JSONataSourceType": "jsonata",
|
|
7493
|
+
"JSONataTarget": "",
|
|
7494
|
+
"JSONataTargetType": "jsonata",
|
|
7495
|
+
"index": 0,
|
|
6814
7496
|
"maxMessages": 1000,
|
|
7497
|
+
"maxDate": "",
|
|
7498
|
+
"minDate": "",
|
|
7499
|
+
"maxNumber": 0,
|
|
7500
|
+
"minNumber": 0,
|
|
7501
|
+
"maxString": "",
|
|
7502
|
+
"minString": "",
|
|
7503
|
+
"radix": 10,
|
|
6815
7504
|
"schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
|
|
6816
|
-
"schemaType": "
|
|
7505
|
+
"schemaType": "str",
|
|
6817
7506
|
"skipLeading": 0,
|
|
6818
7507
|
"skipTrailing": 0,
|
|
7508
|
+
"string": "",
|
|
7509
|
+
"stringType": "str",
|
|
6819
7510
|
"delimiter": ",",
|
|
6820
|
-
"
|
|
6821
|
-
"
|
|
7511
|
+
"compressionType": "setGzip",
|
|
7512
|
+
"x": 160,
|
|
7513
|
+
"y": 320,
|
|
6822
7514
|
"wires": [
|
|
6823
7515
|
[
|
|
6824
|
-
"
|
|
7516
|
+
"0e4f57304e89edb8"
|
|
6825
7517
|
],
|
|
6826
7518
|
[
|
|
6827
7519
|
"3db2b919.ea68d6"
|
|
@@ -6829,52 +7521,50 @@
|
|
|
6829
7521
|
]
|
|
6830
7522
|
},
|
|
6831
7523
|
{
|
|
6832
|
-
"id": "
|
|
6833
|
-
"type": "
|
|
7524
|
+
"id": "7208e9201d7f1fcf",
|
|
7525
|
+
"type": "Monitor Flow",
|
|
6834
7526
|
"z": "924bb2b7.03fd1",
|
|
6835
7527
|
"name": "",
|
|
6836
|
-
"
|
|
6837
|
-
"
|
|
6838
|
-
"sourceProperty": "msg.xlsx",
|
|
6839
|
-
"targetProperty": "msg.xlsx2xlsxObject",
|
|
6840
|
-
"topicProperty": "msg.topic",
|
|
6841
|
-
"maxMessages": 1000,
|
|
6842
|
-
"schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
|
|
6843
|
-
"schemaType": "json",
|
|
6844
|
-
"skipLeading": 0,
|
|
6845
|
-
"skipTrailing": 0,
|
|
6846
|
-
"delimiter": ",",
|
|
6847
|
-
"x": 660,
|
|
6848
|
-
"y": 60,
|
|
7528
|
+
"x": 750,
|
|
7529
|
+
"y": 220,
|
|
6849
7530
|
"wires": [
|
|
6850
7531
|
[
|
|
6851
|
-
"
|
|
6852
|
-
]
|
|
6853
|
-
[]
|
|
7532
|
+
"dd556f2fb8c84838"
|
|
7533
|
+
]
|
|
6854
7534
|
]
|
|
6855
7535
|
},
|
|
6856
7536
|
{
|
|
6857
|
-
"id": "
|
|
6858
|
-
"type": "
|
|
7537
|
+
"id": "69cf00efd482d012",
|
|
7538
|
+
"type": "Monitor Flow",
|
|
6859
7539
|
"z": "924bb2b7.03fd1",
|
|
6860
|
-
"name": "
|
|
6861
|
-
"
|
|
6862
|
-
"
|
|
6863
|
-
"
|
|
6864
|
-
|
|
6865
|
-
|
|
6866
|
-
|
|
6867
|
-
|
|
6868
|
-
"statusType": "auto",
|
|
6869
|
-
"x": 870,
|
|
6870
|
-
"y": 60,
|
|
6871
|
-
"wires": []
|
|
7540
|
+
"name": "",
|
|
7541
|
+
"x": 750,
|
|
7542
|
+
"y": 140,
|
|
7543
|
+
"wires": [
|
|
7544
|
+
[
|
|
7545
|
+
"000cda4258683bde"
|
|
7546
|
+
]
|
|
7547
|
+
]
|
|
6872
7548
|
},
|
|
6873
7549
|
{
|
|
6874
|
-
"id": "
|
|
6875
|
-
"type": "
|
|
7550
|
+
"id": "6ed524d3e461526d",
|
|
7551
|
+
"type": "link in",
|
|
6876
7552
|
"z": "924bb2b7.03fd1",
|
|
6877
|
-
"name": "",
|
|
7553
|
+
"name": "transform xlsx",
|
|
7554
|
+
"links": [],
|
|
7555
|
+
"x": 45,
|
|
7556
|
+
"y": 40,
|
|
7557
|
+
"wires": [
|
|
7558
|
+
[
|
|
7559
|
+
"0e4f57304e89edb8"
|
|
7560
|
+
]
|
|
7561
|
+
]
|
|
7562
|
+
},
|
|
7563
|
+
{
|
|
7564
|
+
"id": "835d891c3b7b9451",
|
|
7565
|
+
"type": "debug",
|
|
7566
|
+
"z": "d98540e8ed31a4a1",
|
|
7567
|
+
"name": "debug 3",
|
|
6878
7568
|
"active": true,
|
|
6879
7569
|
"tosidebar": true,
|
|
6880
7570
|
"console": false,
|
|
@@ -6883,8 +7573,505 @@
|
|
|
6883
7573
|
"targetType": "full",
|
|
6884
7574
|
"statusVal": "",
|
|
6885
7575
|
"statusType": "auto",
|
|
6886
|
-
"x":
|
|
6887
|
-
"y":
|
|
7576
|
+
"x": 740,
|
|
7577
|
+
"y": 420,
|
|
6888
7578
|
"wires": []
|
|
7579
|
+
},
|
|
7580
|
+
{
|
|
7581
|
+
"id": "b850a29956571494",
|
|
7582
|
+
"type": "logisticRegression",
|
|
7583
|
+
"z": "d98540e8ed31a4a1",
|
|
7584
|
+
"name": "",
|
|
7585
|
+
"modelName": "test",
|
|
7586
|
+
"action": "fit",
|
|
7587
|
+
"learningRate": 0.1,
|
|
7588
|
+
"iterations": 2000,
|
|
7589
|
+
"fitIntercept": true,
|
|
7590
|
+
"l2": 0,
|
|
7591
|
+
"tolerance": 1e-7,
|
|
7592
|
+
"verbose": false,
|
|
7593
|
+
"threshold": 0.5,
|
|
7594
|
+
"x": 420,
|
|
7595
|
+
"y": 180,
|
|
7596
|
+
"wires": [
|
|
7597
|
+
[
|
|
7598
|
+
"835d891c3b7b9451",
|
|
7599
|
+
"1c969461651d15fa"
|
|
7600
|
+
]
|
|
7601
|
+
]
|
|
7602
|
+
},
|
|
7603
|
+
{
|
|
7604
|
+
"id": "1c969461651d15fa",
|
|
7605
|
+
"type": "test",
|
|
7606
|
+
"z": "d98540e8ed31a4a1",
|
|
7607
|
+
"name": "",
|
|
7608
|
+
"errorFactor": 0,
|
|
7609
|
+
"escapeString": false,
|
|
7610
|
+
"infiniteIsNull": false,
|
|
7611
|
+
"payload": "{\"X\":[[0,0],[0,1],[1,0],[1,1]],\"y\":[0,1,1,1]}",
|
|
7612
|
+
"payloadType": "json",
|
|
7613
|
+
"result": "Model fitted and stored as: test",
|
|
7614
|
+
"resultType": "str",
|
|
7615
|
+
"resultProperty": "msg.result",
|
|
7616
|
+
"topic": "",
|
|
7617
|
+
"x": 180,
|
|
7618
|
+
"y": 80,
|
|
7619
|
+
"wires": [
|
|
7620
|
+
[
|
|
7621
|
+
"b850a29956571494"
|
|
7622
|
+
],
|
|
7623
|
+
[],
|
|
7624
|
+
[
|
|
7625
|
+
"f903d1b11568c38c"
|
|
7626
|
+
]
|
|
7627
|
+
]
|
|
7628
|
+
},
|
|
7629
|
+
{
|
|
7630
|
+
"id": "a4ff87db6b6a4889",
|
|
7631
|
+
"type": "logisticRegression",
|
|
7632
|
+
"z": "d98540e8ed31a4a1",
|
|
7633
|
+
"name": "",
|
|
7634
|
+
"modelName": "test",
|
|
7635
|
+
"action": "predict",
|
|
7636
|
+
"learningRate": 0.1,
|
|
7637
|
+
"iterations": 2000,
|
|
7638
|
+
"fitIntercept": true,
|
|
7639
|
+
"l2": 0,
|
|
7640
|
+
"tolerance": 1e-7,
|
|
7641
|
+
"verbose": false,
|
|
7642
|
+
"threshold": 0.5,
|
|
7643
|
+
"x": 460,
|
|
7644
|
+
"y": 360,
|
|
7645
|
+
"wires": [
|
|
7646
|
+
[
|
|
7647
|
+
"835d891c3b7b9451",
|
|
7648
|
+
"f903d1b11568c38c",
|
|
7649
|
+
"21167b6b6f5c0cbc"
|
|
7650
|
+
]
|
|
7651
|
+
]
|
|
7652
|
+
},
|
|
7653
|
+
{
|
|
7654
|
+
"id": "f903d1b11568c38c",
|
|
7655
|
+
"type": "test",
|
|
7656
|
+
"z": "d98540e8ed31a4a1",
|
|
7657
|
+
"name": "",
|
|
7658
|
+
"errorFactor": 0,
|
|
7659
|
+
"escapeString": false,
|
|
7660
|
+
"infiniteIsNull": false,
|
|
7661
|
+
"payload": "[[0, 0], [1, 1], [0.5, 0.5]]",
|
|
7662
|
+
"payloadType": "json",
|
|
7663
|
+
"result": "[0,1,1]",
|
|
7664
|
+
"resultType": "json",
|
|
7665
|
+
"resultProperty": "msg.result",
|
|
7666
|
+
"topic": "",
|
|
7667
|
+
"x": 140,
|
|
7668
|
+
"y": 280,
|
|
7669
|
+
"wires": [
|
|
7670
|
+
[
|
|
7671
|
+
"a4ff87db6b6a4889"
|
|
7672
|
+
],
|
|
7673
|
+
[],
|
|
7674
|
+
[]
|
|
7675
|
+
]
|
|
7676
|
+
},
|
|
7677
|
+
{
|
|
7678
|
+
"id": "21167b6b6f5c0cbc",
|
|
7679
|
+
"type": "logisticRegression",
|
|
7680
|
+
"z": "d98540e8ed31a4a1",
|
|
7681
|
+
"name": "",
|
|
7682
|
+
"modelName": "test",
|
|
7683
|
+
"action": "predictProba",
|
|
7684
|
+
"learningRate": 0.1,
|
|
7685
|
+
"iterations": 2000,
|
|
7686
|
+
"fitIntercept": true,
|
|
7687
|
+
"l2": 0,
|
|
7688
|
+
"tolerance": 1e-7,
|
|
7689
|
+
"verbose": false,
|
|
7690
|
+
"threshold": 0.5,
|
|
7691
|
+
"x": 440,
|
|
7692
|
+
"y": 480,
|
|
7693
|
+
"wires": [
|
|
7694
|
+
[
|
|
7695
|
+
"835d891c3b7b9451"
|
|
7696
|
+
]
|
|
7697
|
+
]
|
|
7698
|
+
},
|
|
7699
|
+
{
|
|
7700
|
+
"id": "6dcc4342cb95db99",
|
|
7701
|
+
"type": "columnar",
|
|
7702
|
+
"z": "8aa8799ad5afca2b",
|
|
7703
|
+
"name": "",
|
|
7704
|
+
"action": "appendFile",
|
|
7705
|
+
"filePath": "C:\\Users\\peter\\data\\columnarStore\\test",
|
|
7706
|
+
"x": 350,
|
|
7707
|
+
"y": 180,
|
|
7708
|
+
"wires": [
|
|
7709
|
+
[
|
|
7710
|
+
"f7056a42ba573367"
|
|
7711
|
+
]
|
|
7712
|
+
]
|
|
7713
|
+
},
|
|
7714
|
+
{
|
|
7715
|
+
"id": "f7056a42ba573367",
|
|
7716
|
+
"type": "debug",
|
|
7717
|
+
"z": "8aa8799ad5afca2b",
|
|
7718
|
+
"name": "debug 4",
|
|
7719
|
+
"active": true,
|
|
7720
|
+
"tosidebar": true,
|
|
7721
|
+
"console": false,
|
|
7722
|
+
"tostatus": false,
|
|
7723
|
+
"complete": "true",
|
|
7724
|
+
"targetType": "full",
|
|
7725
|
+
"statusVal": "",
|
|
7726
|
+
"statusType": "auto",
|
|
7727
|
+
"x": 700,
|
|
7728
|
+
"y": 360,
|
|
7729
|
+
"wires": []
|
|
7730
|
+
},
|
|
7731
|
+
{
|
|
7732
|
+
"id": "69adf3d24df340b6",
|
|
7733
|
+
"type": "inject",
|
|
7734
|
+
"z": "8aa8799ad5afca2b",
|
|
7735
|
+
"name": "",
|
|
7736
|
+
"props": [
|
|
7737
|
+
{
|
|
7738
|
+
"p": "payload"
|
|
7739
|
+
},
|
|
7740
|
+
{
|
|
7741
|
+
"p": "topic",
|
|
7742
|
+
"vt": "str"
|
|
7743
|
+
}
|
|
7744
|
+
],
|
|
7745
|
+
"repeat": "",
|
|
7746
|
+
"crontab": "",
|
|
7747
|
+
"once": false,
|
|
7748
|
+
"onceDelay": 0.1,
|
|
7749
|
+
"topic": "",
|
|
7750
|
+
"payload": "{\"records\":[{\"name\":\"John\",\"age\":30,\"city\":\"NYC\"},{\"name\":\"Jane\",\"age\":25,\"city\":\"LA\"}]}",
|
|
7751
|
+
"payloadType": "json",
|
|
7752
|
+
"x": 90,
|
|
7753
|
+
"y": 180,
|
|
7754
|
+
"wires": [
|
|
7755
|
+
[
|
|
7756
|
+
"6dcc4342cb95db99"
|
|
7757
|
+
]
|
|
7758
|
+
]
|
|
7759
|
+
},
|
|
7760
|
+
{
|
|
7761
|
+
"id": "c4db16448a22def4",
|
|
7762
|
+
"type": "inject",
|
|
7763
|
+
"z": "8aa8799ad5afca2b",
|
|
7764
|
+
"name": "",
|
|
7765
|
+
"props": [
|
|
7766
|
+
{
|
|
7767
|
+
"p": "payload"
|
|
7768
|
+
},
|
|
7769
|
+
{
|
|
7770
|
+
"p": "topic",
|
|
7771
|
+
"vt": "str"
|
|
7772
|
+
}
|
|
7773
|
+
],
|
|
7774
|
+
"repeat": "",
|
|
7775
|
+
"crontab": "",
|
|
7776
|
+
"once": false,
|
|
7777
|
+
"onceDelay": 0.1,
|
|
7778
|
+
"topic": "",
|
|
7779
|
+
"payload": "",
|
|
7780
|
+
"payloadType": "date",
|
|
7781
|
+
"x": 100,
|
|
7782
|
+
"y": 280,
|
|
7783
|
+
"wires": [
|
|
7784
|
+
[
|
|
7785
|
+
"cb96c887a71c3cba"
|
|
7786
|
+
]
|
|
7787
|
+
]
|
|
7788
|
+
},
|
|
7789
|
+
{
|
|
7790
|
+
"id": "cb96c887a71c3cba",
|
|
7791
|
+
"type": "columnar",
|
|
7792
|
+
"z": "8aa8799ad5afca2b",
|
|
7793
|
+
"name": "",
|
|
7794
|
+
"action": "readFile",
|
|
7795
|
+
"filePath": "C:\\Users\\peter\\data\\columnarStore\\test",
|
|
7796
|
+
"x": 340,
|
|
7797
|
+
"y": 280,
|
|
7798
|
+
"wires": [
|
|
7799
|
+
[
|
|
7800
|
+
"f7056a42ba573367"
|
|
7801
|
+
]
|
|
7802
|
+
]
|
|
7803
|
+
},
|
|
7804
|
+
{
|
|
7805
|
+
"id": "a7c85ce48c4baa7b",
|
|
7806
|
+
"type": "columnar",
|
|
7807
|
+
"z": "8aa8799ad5afca2b",
|
|
7808
|
+
"name": "",
|
|
7809
|
+
"action": "sqlQuery",
|
|
7810
|
+
"filePath": "C:\\Users\\peter\\data\\columnarStore\\test",
|
|
7811
|
+
"sqlQuery": "select * from ? limit 4",
|
|
7812
|
+
"outputProperty": "",
|
|
7813
|
+
"x": 340,
|
|
7814
|
+
"y": 360,
|
|
7815
|
+
"wires": [
|
|
7816
|
+
[
|
|
7817
|
+
"f7056a42ba573367"
|
|
7818
|
+
]
|
|
7819
|
+
]
|
|
7820
|
+
},
|
|
7821
|
+
{
|
|
7822
|
+
"id": "17aa1ae56c2be540",
|
|
7823
|
+
"type": "inject",
|
|
7824
|
+
"z": "8aa8799ad5afca2b",
|
|
7825
|
+
"name": "",
|
|
7826
|
+
"props": [
|
|
7827
|
+
{
|
|
7828
|
+
"p": "payload"
|
|
7829
|
+
},
|
|
7830
|
+
{
|
|
7831
|
+
"p": "topic",
|
|
7832
|
+
"vt": "str"
|
|
7833
|
+
}
|
|
7834
|
+
],
|
|
7835
|
+
"repeat": "",
|
|
7836
|
+
"crontab": "",
|
|
7837
|
+
"once": false,
|
|
7838
|
+
"onceDelay": 0.1,
|
|
7839
|
+
"topic": "",
|
|
7840
|
+
"payload": "{\"sql\":\"SELECT COUNT(*) AS cnt FROM ? a LIMIT 10\"}",
|
|
7841
|
+
"payloadType": "json",
|
|
7842
|
+
"x": 90,
|
|
7843
|
+
"y": 360,
|
|
7844
|
+
"wires": [
|
|
7845
|
+
[
|
|
7846
|
+
"a7c85ce48c4baa7b"
|
|
7847
|
+
]
|
|
7848
|
+
]
|
|
7849
|
+
},
|
|
7850
|
+
{
|
|
7851
|
+
"id": "50413b0ca082d563",
|
|
7852
|
+
"type": "columnar",
|
|
7853
|
+
"z": "8aa8799ad5afca2b",
|
|
7854
|
+
"name": "",
|
|
7855
|
+
"action": "sqlQuery",
|
|
7856
|
+
"filePath": "C:\\Users\\peter\\data\\columnarStore\\test",
|
|
7857
|
+
"sqlQuery": "SELECT \"a1\" as test,:msg.payload as name,COUNT(*) AS cnt1 FROM ? a where name= :msg.payload",
|
|
7858
|
+
"outputProperty": "payload",
|
|
7859
|
+
"parameterMappings": [
|
|
7860
|
+
{
|
|
7861
|
+
"paramName": "name",
|
|
7862
|
+
"msgPath": "payload"
|
|
7863
|
+
}
|
|
7864
|
+
],
|
|
7865
|
+
"x": 370,
|
|
7866
|
+
"y": 500,
|
|
7867
|
+
"wires": [
|
|
7868
|
+
[
|
|
7869
|
+
"f7056a42ba573367"
|
|
7870
|
+
]
|
|
7871
|
+
]
|
|
7872
|
+
},
|
|
7873
|
+
{
|
|
7874
|
+
"id": "34909ff6e5e0f6a7",
|
|
7875
|
+
"type": "inject",
|
|
7876
|
+
"z": "8aa8799ad5afca2b",
|
|
7877
|
+
"name": "",
|
|
7878
|
+
"props": [
|
|
7879
|
+
{
|
|
7880
|
+
"p": "payload"
|
|
7881
|
+
},
|
|
7882
|
+
{
|
|
7883
|
+
"p": "topic",
|
|
7884
|
+
"vt": "str"
|
|
7885
|
+
}
|
|
7886
|
+
],
|
|
7887
|
+
"repeat": "",
|
|
7888
|
+
"crontab": "",
|
|
7889
|
+
"once": false,
|
|
7890
|
+
"onceDelay": 0.1,
|
|
7891
|
+
"topic": "",
|
|
7892
|
+
"payload": "John",
|
|
7893
|
+
"payloadType": "str",
|
|
7894
|
+
"x": 90,
|
|
7895
|
+
"y": 520,
|
|
7896
|
+
"wires": [
|
|
7897
|
+
[
|
|
7898
|
+
"50413b0ca082d563",
|
|
7899
|
+
"a1caf329e4e87dbc"
|
|
7900
|
+
]
|
|
7901
|
+
]
|
|
7902
|
+
},
|
|
7903
|
+
{
|
|
7904
|
+
"id": "a1caf329e4e87dbc",
|
|
7905
|
+
"type": "columnar",
|
|
7906
|
+
"z": "8aa8799ad5afca2b",
|
|
7907
|
+
"name": "",
|
|
7908
|
+
"action": "sqlQuery",
|
|
7909
|
+
"filePath": "C:\\Users\\peter\\data\\columnarStore\\test",
|
|
7910
|
+
"sqlQuery": "SELECT :msg.payload as tes from ? limit 5",
|
|
7911
|
+
"outputProperty": "payload",
|
|
7912
|
+
"parameterMappings": [
|
|
7913
|
+
{
|
|
7914
|
+
"paramName": "name",
|
|
7915
|
+
"msgPath": "payload"
|
|
7916
|
+
}
|
|
7917
|
+
],
|
|
7918
|
+
"x": 370,
|
|
7919
|
+
"y": 580,
|
|
7920
|
+
"wires": [
|
|
7921
|
+
[
|
|
7922
|
+
"f7056a42ba573367"
|
|
7923
|
+
]
|
|
7924
|
+
]
|
|
7925
|
+
},
|
|
7926
|
+
{
|
|
7927
|
+
"id": "ce0e3fb3e004b4af",
|
|
7928
|
+
"type": "columnar",
|
|
7929
|
+
"z": "8aa8799ad5afca2b",
|
|
7930
|
+
"name": "",
|
|
7931
|
+
"action": "sqlQuery",
|
|
7932
|
+
"filePath": "C:\\Users\\peter\\data\\columnarStore\\test",
|
|
7933
|
+
"sqlQuery": "SELECT a.name,COUNT(*) AS cnt FROM ? a group by name",
|
|
7934
|
+
"outputProperty": "payload",
|
|
7935
|
+
"parameterMappings": [
|
|
7936
|
+
{
|
|
7937
|
+
"paramName": "name",
|
|
7938
|
+
"msgPath": "payload"
|
|
7939
|
+
}
|
|
7940
|
+
],
|
|
7941
|
+
"x": 420,
|
|
7942
|
+
"y": 740,
|
|
7943
|
+
"wires": [
|
|
7944
|
+
[
|
|
7945
|
+
"f7056a42ba573367"
|
|
7946
|
+
]
|
|
7947
|
+
]
|
|
7948
|
+
},
|
|
7949
|
+
{
|
|
7950
|
+
"id": "343f59f36e7293df",
|
|
7951
|
+
"type": "columnar",
|
|
7952
|
+
"z": "8aa8799ad5afca2b",
|
|
7953
|
+
"name": "",
|
|
7954
|
+
"action": "sqlQuery",
|
|
7955
|
+
"filePath": "C:\\Users\\peter\\data\\columnarStore\\test",
|
|
7956
|
+
"sqlQuery": "select a.name from ? a where name=\"John\" limit 4",
|
|
7957
|
+
"outputProperty": "",
|
|
7958
|
+
"x": 420,
|
|
7959
|
+
"y": 660,
|
|
7960
|
+
"wires": [
|
|
7961
|
+
[
|
|
7962
|
+
"f7056a42ba573367"
|
|
7963
|
+
]
|
|
7964
|
+
]
|
|
7965
|
+
},
|
|
7966
|
+
{
|
|
7967
|
+
"id": "babd195c3d0980dd",
|
|
7968
|
+
"type": "inject",
|
|
7969
|
+
"z": "8aa8799ad5afca2b",
|
|
7970
|
+
"name": "",
|
|
7971
|
+
"props": [
|
|
7972
|
+
{
|
|
7973
|
+
"p": "payload"
|
|
7974
|
+
},
|
|
7975
|
+
{
|
|
7976
|
+
"p": "topic",
|
|
7977
|
+
"vt": "str"
|
|
7978
|
+
}
|
|
7979
|
+
],
|
|
7980
|
+
"repeat": "",
|
|
7981
|
+
"crontab": "",
|
|
7982
|
+
"once": false,
|
|
7983
|
+
"onceDelay": 0.1,
|
|
7984
|
+
"topic": "",
|
|
7985
|
+
"payload": "",
|
|
7986
|
+
"payloadType": "date",
|
|
7987
|
+
"x": 120,
|
|
7988
|
+
"y": 660,
|
|
7989
|
+
"wires": [
|
|
7990
|
+
[
|
|
7991
|
+
"343f59f36e7293df",
|
|
7992
|
+
"ce0e3fb3e004b4af"
|
|
7993
|
+
]
|
|
7994
|
+
]
|
|
7995
|
+
},
|
|
7996
|
+
{
|
|
7997
|
+
"id": "0960f3c3ca9ba2dc",
|
|
7998
|
+
"type": "inject",
|
|
7999
|
+
"z": "8aa8799ad5afca2b",
|
|
8000
|
+
"name": "",
|
|
8001
|
+
"props": [
|
|
8002
|
+
{
|
|
8003
|
+
"p": "payload"
|
|
8004
|
+
},
|
|
8005
|
+
{
|
|
8006
|
+
"p": "topic",
|
|
8007
|
+
"vt": "str"
|
|
8008
|
+
}
|
|
8009
|
+
],
|
|
8010
|
+
"repeat": "",
|
|
8011
|
+
"crontab": "",
|
|
8012
|
+
"once": false,
|
|
8013
|
+
"onceDelay": 0.1,
|
|
8014
|
+
"topic": "",
|
|
8015
|
+
"payload": "John",
|
|
8016
|
+
"payloadType": "str",
|
|
8017
|
+
"x": 90,
|
|
8018
|
+
"y": 480,
|
|
8019
|
+
"wires": [
|
|
8020
|
+
[
|
|
8021
|
+
"50413b0ca082d563"
|
|
8022
|
+
]
|
|
8023
|
+
]
|
|
8024
|
+
},
|
|
8025
|
+
{
|
|
8026
|
+
"id": "a61df296c3a578e2",
|
|
8027
|
+
"type": "columnar",
|
|
8028
|
+
"z": "8aa8799ad5afca2b",
|
|
8029
|
+
"name": "",
|
|
8030
|
+
"action": "sqlQuery",
|
|
8031
|
+
"filePath": "C:\\Users\\peter\\data\\columnarStore\\test",
|
|
8032
|
+
"sqlQuery": "SELECT \"a1\" as test,:msg.payload as name FROM ? a where name= :msg.payload",
|
|
8033
|
+
"outputProperty": "payload",
|
|
8034
|
+
"parameterMappings": [
|
|
8035
|
+
{
|
|
8036
|
+
"paramName": "name",
|
|
8037
|
+
"msgPath": "payload"
|
|
8038
|
+
}
|
|
8039
|
+
],
|
|
8040
|
+
"x": 370,
|
|
8041
|
+
"y": 440,
|
|
8042
|
+
"wires": [
|
|
8043
|
+
[
|
|
8044
|
+
"f7056a42ba573367"
|
|
8045
|
+
]
|
|
8046
|
+
]
|
|
8047
|
+
},
|
|
8048
|
+
{
|
|
8049
|
+
"id": "e88b60b96a6ce42a",
|
|
8050
|
+
"type": "inject",
|
|
8051
|
+
"z": "8aa8799ad5afca2b",
|
|
8052
|
+
"name": "",
|
|
8053
|
+
"props": [
|
|
8054
|
+
{
|
|
8055
|
+
"p": "payload"
|
|
8056
|
+
},
|
|
8057
|
+
{
|
|
8058
|
+
"p": "topic",
|
|
8059
|
+
"vt": "str"
|
|
8060
|
+
}
|
|
8061
|
+
],
|
|
8062
|
+
"repeat": "",
|
|
8063
|
+
"crontab": "",
|
|
8064
|
+
"once": false,
|
|
8065
|
+
"onceDelay": 0.1,
|
|
8066
|
+
"topic": "",
|
|
8067
|
+
"payload": "John",
|
|
8068
|
+
"payloadType": "str",
|
|
8069
|
+
"x": 90,
|
|
8070
|
+
"y": 420,
|
|
8071
|
+
"wires": [
|
|
8072
|
+
[
|
|
8073
|
+
"a61df296c3a578e2"
|
|
8074
|
+
]
|
|
8075
|
+
]
|
|
6889
8076
|
}
|
|
6890
8077
|
]
|