https://pastein.ru/t/Rt

  скопируйте уникальную ссылку для отправки



Save New Duplicate & Edit Just Text Twitter
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
has_trouble":"","building_address_house":"","building_address_region_id":"","hospital_home_building_address_region_id":"","depart_modify_date":"","building_address_region_name":"","building_address_longtitude":"","building_build_year":"","ambulatory_patient_attached":"","building_address_prefix_area":"","hospital_home_building_address_houseid":"","depart_kind_id":"1175","hospital_home_building_floor_count":"","hospital_home_building_address_fias_version":"","hospital_home_building_address_aoid_street":"","depart_type_name":"Инструментально-диагностический","hospital_home_building_id":"","separate_depart_boolean":"false","building_create_date":"","hospital_home_building_address_aoid_area":"","depart_type_id":"4","depart_liquidation_date":"","hospital_home_building_name":"","depart_create_date":"2019-06-06T10:35:00.556+0300","building_address_aoid_street":"","hospital_ambulance_text":"","hospital_home_building_address_prefix_area":"","building_address_post_index":"","building_address_struct":"","building_name":"","hospital_ambulance_boolean":"","building_address_latitude":"","hospital_home_building_create_date":"","mo_oid":"1.2.643.5.1.13.13.12.2.99.9204","depart_kind_name":"Функциональной диагностики","SYS_HASH":"94d643234ab72d64ef29fa0776339c09","hospital_home_building_address_building":"","building_address_houseid":"","building_address_area_name":"","depart_oid":"1.2.643.5.1.13.13.12.2.99.9204.0.318160","hospital_home_building_address_street_name":"","ambulatory_child_attached":"","building_floor_count":""},{"hospital_home_building_modify_date":"","building_id":"","hospital_home_building_build_year":"","building_address_street_name":"","hospital_home_building_address_longtitude":"","hospital_mode_id":"","depart_name":"Отделение профилактики СПИД и инфекционных заболеваний","hospital_home_building_address_area_name":"","building_address_aoid_area":"","hospital_home_building_has_trouble":"","b2019-11-09T09:24:22.431029660Z uilding_address_prefix_street":"","hospital_home_building_address_latitude":"","hospital_home_building_address_cadastral_number":"","hospital_home_building_address_prefix_street":"","building_address_fias_version":"","building_modify_date":"","hospital_home_building_address_region_name":"","hospital_home_building_address_post_index":"","building_address_building":"","hospital_home_building_address_struct":"","hospital_home_building_address_house":"","ambulatory_visit_home":"","ambulatory_visit_per_shift":"","SYS_RECORDID":"239055","hospital_home_bed_count":"","hospital_mode_name":"","version":"3328","separate_depart_text":"","building_address_cadastral_number":"","building_has_trouble":"","building_address_house":"","building_address_region_id":"","hospital_home_building_address_region_id":"","depart_modify_date":"","building_address_region_name":"","building_address_longtitude":"","building_build_year":"","ambulatory_patient_attached":"","building_address_prefix_area":"","hospital_home_building_address_houseid":"","depart_kind_id":"1005","hospital_home_building_floor_count":"","hospital_home_building_address_fias_version":"","hospital_home_building_address_aoid_street":"","depart_type_name":"Лабораторно-диагностический","hospital_home_building_id":"","separate_depart_boolean":"false","building_create_date":"","hospital_home_building_address_aoid_area":"","depart_type_id":"3","depart_liquidation_date":"","hospital_home_building_name":"","depart_create_date":"2017-04-11T22:57:03.054+0300","building_address_aoid_street":"","hospital_ambulance_text":"","hospital_home_building_address_prefix_area":"","building_address_post_index":"","building_address_struct":"","building_name":"","hospital_ambulance_boolean":"","building_address_latitude":"","hospital_home_building_create_date":"","mo_oid":"1.2.643.5.1.13.13.12.2.99.9204","depart_kind_name":"Амбулатории","SYS_HASH":"471bb7a4be8d8c34594955e598cf655e","hospital_home_building_address_building":"","building_address_houseid":"","building_address_area_name":"","depart_oid":"1.2.643.5.1.13.13.12.2.99.9204.0.89599","hospital_home_building_address_street_name":"","ambulatory_child_attached":"","building_floor_count":""}], version=1.0}
2019-11-09T09:24:22.431844886Z 12:24:22.430 [http-nio-8080-exec-1] DEBUG org.hibernate.SQL - insert into oms.tmp_nsi_update_value (code, page, value, version, id) values (?, ?, ?, ?, ?)
2019-11-09T09:24:22.449290899Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection
2019-11-09T09:24:22.449325919Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - re-enabling autocommit
2019-11-09T09:24:22.449335732Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG r.i.o.r.a.AuditableJpaTransactionManager - Closing JPA EntityManager [org.hibernate.jpa.internal.EntityManagerImpl@2b1a7cf5] after transaction
2019-11-09T09:24:22.449356902Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.s.o.jpa.EntityManagerFactoryUtils - Closing JPA EntityManager
2019-11-09T09:24:22.449365032Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch
2019-11-09T09:24:22.449384206Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection
2019-11-09T09:24:22.449402336Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection
2019-11-09T09:24:22.449420955Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG r.i.o.r.a.AuditableJpaTransactionManager - Resuming suspended transaction after completion of inner transaction
2019-11-09T09:24:22.449749423Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.interceptor.LoggingOutInterceptor@1f99c1bd to phase pre-stream
2019-11-09T09:24:22.449767693Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.ws.policy.PolicyOutInterceptor@6bf66c15 to phase setup
2019-11-09T09:24:22.449776685Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.interceptor.LoggingOutInterceptor@3c0cbd90 to phase pre-stream
2019-11-09T09:24:22.449788934Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.interceptor.MessageSenderInterceptor@320692 to phase prepare-send
2019-11-09T09:24:22.449810724Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.interceptor.MessageSenderInterceptor@320692 to phase prepare-send
2019-11-09T09:24:22.449818570Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.jaxrs.client.spec.ClientRequestFilterInterceptor@6e1e0b01 to phase pre-logical
2019-11-09T09:24:22.449850088Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.jaxrs.client.WebClient$BodyWriter@5c6ede8f to phase write
2019-11-09T09:24:22.450035635Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Chain org.apache.cxf.phase.PhaseInterceptorChain@318746f8 was created. Current flow:
2019-11-09T09:24:22.450052794Z   setup [PolicyOutInterceptor]
2019-11-09T09:24:22.450060872Z   pre-logical [ClientRequestFilterInterceptor]
2019-11-09T09:24:22.450067345Z   prepare-send [MessageSenderInterceptor]
2019-11-09T09:24:22.450073423Z   pre-stream [LoggingOutInterceptor]
2019-11-09T09:24:22.450079487Z   write [BodyWriter]
2019-11-09T09:24:22.450086417Z 
2019-11-09T09:24:22.450092560Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Invoking handleMessage on interceptor org.apache.cxf.ws.policy.PolicyOutInterceptor@6bf66c15
2019-11-09T09:24:22.450099745Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.a.c.ws.policy.PolicyOutInterceptor - No binding operation info.
2019-11-09T09:24:22.450106556Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Invoking handleMessage on interceptor org.apache.cxf.jaxrs.client.spec.ClientRequestFilterInterceptor@6e1e0b01
2019-11-09T09:24:22.450113690Z 12:24:22.449 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Invoking handleMessage on interceptor org.apache.cxf.interceptor.MessageSenderInterceptor@320692
2019-11-09T09:24:22.450164588Z 12:24:22.450 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor@63009e07 to phase prepare-send-ending
2019-11-09T09:24:22.450180018Z 12:24:22.450 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Chain org.apache.cxf.phase.PhaseInterceptorChain@318746f8 was modified. Current flow:
2019-11-09T09:24:22.450187713Z   setup [PolicyOutInterceptor]
2019-11-09T09:24:22.450195627Z   pre-logical [ClientRequestFilterInterceptor]
2019-11-09T09:24:22.450202596Z   prepare-send [MessageSenderInterceptor]
2019-11-09T09:24:22.450209614Z   pre-stream [LoggingOutInterceptor]
2019-11-09T09:24:22.450216599Z   write [BodyWriter]
2019-11-09T09:24:22.450223218Z   prepare-send-ending [MessageSenderEndingInterceptor]
2019-11-09T09:24:22.450230089Z 
2019-11-09T09:24:22.450237176Z 12:24:22.450 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Invoking handleMessage on interceptor org.apache.cxf.interceptor.LoggingOutInterceptor@1f99c1bd
2019-11-09T09:24:22.454226451Z 12:24:22.450 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Invoking handleMessage on interceptor org.apache.cxf.jaxrs.client.WebClient$BodyWriter@5c6ede8f
2019-11-09T09:24:22.454252298Z 12:24:22.454 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Invoking handleMessage on interceptor org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor@63009e07
2019-11-09T09:24:22.454419168Z 12:24:22.454 [http-nio-8080-exec-1] INFO  o.a.c.i.LoggingOutInterceptor - Outbound Message
2019-11-09T09:24:22.454439765Z ---------------------------
2019-11-09T09:24:22.454448465Z ID: 1254
2019-11-09T09:24:22.454456461Z Address: http://136.243.75.67:8041/integration/get/nsi/data?recipient=nsi&envCode=registry&identifier=T002&version=1.0&page=1252
2019-11-09T09:24:22.454464271Z Http-Method: GET
2019-11-09T09:24:22.454470330Z Content-Type: 
2019-11-09T09:24:22.454476695Z Headers: {Accept=[*/*]}
2019-11-09T09:24:22.454483335Z --------------------------------------
2019-11-09T09:24:22.454495299Z 12:24:22.454 [http-nio-8080-exec-1] DEBUG o.apache.cxf.transport.http.Headers - Accept: */*
2019-11-09T09:24:22.454502328Z 12:24:22.454 [http-nio-8080-exec-1] DEBUG o.a.cxf.transport.http.HTTPConduit - No Trust Decider for Conduit '{http://136.243.75.67:8041/integration/get/nsi}WebClient.http-conduit'. An affirmative Trust Decision is assumed.
2019-11-09T09:24:24.338540155Z 12:24:24.338 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.interceptor.LoggingInInterceptor@4e90e180 to phase receive
2019-11-09T09:24:24.338580528Z 12:24:24.338 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.ws.policy.PolicyInInterceptor@6a57ece4 to phase receive
2019-11-09T09:24:24.338589978Z 12:24:24.338 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.interceptor.LoggingInInterceptor@5fdea0c3 to phase receive
2019-11-09T09:24:24.338596352Z 12:24:24.338 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor ru.i_novus.oms.registry.audit.AuditInterceptor@24b03a52 to phase receive
2019-11-09T09:24:24.338602272Z 12:24:24.338 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.jaxrs.client.WebClient$ClientAsyncResponseInterceptor@69c4f615 to phase unmarshal
2019-11-09T09:24:24.338608196Z 12:24:24.338 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Adding interceptor org.apache.cxf.jaxrs.client.spec.ClientResponseFilterInterceptor@1f1d9f27 to phase pre-protocol-frontend
2019-11-09T09:24:24.338617711Z 12:24:24.338 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Chain org.apache.cxf.phase.PhaseInterceptorChain@145c9c6 was created. Current flow:
2019-11-09T09:24:24.338624159Z   receive [LoggingInInterceptor, PolicyInInterceptor, AuditInterceptor]
2019-11-09T09:24:24.338629900Z   pre-protocol-frontend [ClientResponseFilterInterceptor]
2019-11-09T09:24:24.338669893Z   unmarshal [ClientAsyncResponseInterceptor]
2019-11-09T09:24:24.338689045Z 
2019-11-09T09:24:24.338696996Z 12:24:24.338 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Invoking handleMessage on interceptor org.apache.cxf.interceptor.LoggingInInterceptor@4e90e180
2019-11-09T09:24:24.338790342Z 12:24:24.338 [http-nio-8080-exec-1] INFO  o.a.c.i.LoggingInInterceptor - Inbound Message
2019-11-09T09:24:24.338806687Z ----------------------------
2019-11-09T09:24:24.338812397Z ID: 1254
2019-11-09T09:24:24.338817027Z Response-Code: 200
2019-11-09T09:24:24.338822145Z Encoding: UTF-8
2019-11-09T09:24:24.338826741Z Content-Type: application/json;charset=UTF-8
2019-11-09T09:24:24.338831333Z Headers: {content-type=[application/json;charset=UTF-8], Date=[Sat, 09 Nov 2019 09:24:24 GMT], transfer-encoding=[chunked]}
2019-11-09T09:24:24.338836538Z Payload: {"result":"OK","resultText":null,"resultCode":null,"total":250043,"list":[]}
2019-11-09T09:24:24.338844909Z --------------------------------------
2019-11-09T09:24:24.338852100Z 12:24:24.338 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Invoking handleMessage on interceptor org.apache.cxf.ws.policy.PolicyInInterceptor@6a57ece4
2019-11-09T09:24:24.338872229Z 12:24:24.338 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Invoking handleMessage on interceptor ru.i_novus.oms.registry.audit.AuditInterceptor@24b03a52
2019-11-09T09:24:24.338879937Z 12:24:24.338 [http-nio-8080-exec-1] DEBUG r.i.o.r.audit.AuditInterceptor - Not found user in http-message. basePath:null headers:{content-type=[application/json;charset=UTF-8], Date=[Sat, 09 Nov 2019 09:24:24 GMT], transfer-encoding=[chunked]} query:null
2019-11-09T09:24:24.338888279Z 12:24:24.338 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Invoking handleMessage on interceptor org.apache.cxf.jaxrs.client.spec.ClientResponseFilterInterceptor@1f1d9f27
2019-11-09T09:24:24.338896951Z 12:24:24.338 [http-nio-8080-exec-1] DEBUG o.a.cxf.phase.PhaseInterceptorChain - Invoking handleMessage on interceptor org.apache.cxf.jaxrs.client.WebClient$ClientAsyncResponseInterceptor@69c4f615
2019-11-09T09:24:24.339449449Z 12:24:24.339 [http-nio-8080-exec-1] DEBUG r.i.o.r.a.AuditableJpaTransactionManager - Found thread-bound EntityManager [org.hibernate.jpa.internal.EntityManagerImpl@72cf9ae9] for JPA transaction
2019-11-09T09:24:24.339467651Z 12:24:24.339 [http-nio-8080-exec-1] DEBUG r.i.o.r.a.AuditableJpaTransactionManager - Suspending current transaction, creating new transaction with name [ru.i_novus.oms.registry.impl.service.nsi.NsiServiceImpl.updateVersion]
2019-11-09T09:24:24.339550427Z 12:24:24.339 [http-nio-8080-exec-1] DEBUG r.i.o.r.a.AuditableJpaTransactionManager - Opened new EntityManager [org.hibernate.jpa.internal.EntityManagerImpl@2b75e5c7] for JPA transaction
2019-11-09T09:24:24.339567640Z 12:24:24.339 [http-nio-8080-exec-1] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin
2019-11-09T09:24:24.339576010Z 12:24:24.339 [http-nio-8080-exec-1] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection
2019-11-09T09:24:24.340396208Z 12:24:24.340 [http-nio-8080-exec-1] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection
2019-11-09T09:24:24.340425958Z 12:24:24.340 [http-nio-8080-exec-1] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: true
2019-11-09T09:24:24.340435368Z 12:24:24.340 [http-nio-8080-exec-1] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - disabling autocommit
2019-11-09T09:24:24.340445565Z 12:24:24.340 [http-nio-8080-exec-1] DEBUG r.i.o.r.a.AuditableJpaTransactionManager - Exposing JPA transaction as JDBC transaction [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@204ed6d7]
2019-11-09T09:24:24.340453095Z 12:24:24.340 [http-nio-8080-exec-1] WARN  r.i.o.r.a.AuditableJpaTransactionManager - current user is unknown
2019-11-09T09:24:24.342127896Z 12:24:24.342 [http-nio-8080-exec-1] DEBUG o.h.h.i.ast.QueryTranslatorImpl - parse() - HQL: SELECT tnuv FROM ru.i_novus.oms.registry.impl.entity.nsi.TmpNsiUpdateValueEntity tnuv WHERE tnuv.code = :code AND tnuv.version = :version 
2019-11-09T09:24:24.354346209Z 12:24:24.354 [http-nio-8080-exec-1] DEBUG o.h.h.i.ast.QueryTranslatorImpl - --- HQL AST ---
2019-11-09T09:24:24.354369622Z  \-[QUERY] Node: 'query'
2019-11-09T09:24:24.354373754Z     +-[SELECT_FROM] Node: 'SELECT_FROM'
2019-11-09T09:24:24.354376809Z     |  +-[FROM] Node: 'FROM'
2019-11-09T09:24:24.354379748Z     |  |  \-[RANGE] Node: 'RANGE'
2019-11-09T09:24:24.354382699Z     |  |     +-[DOT] Node: '.'
2019-11-09T09:24:24.354385583Z     |  |     |  +-[DOT] Node: '.'
2019-11-09T09:24:24.354388477Z     |  |     |  |  +-[DOT] Node: '.'
2019-11-09T09:24:24.354391387Z     |  |     |  |  |  +-[DOT] Node: '.'
2019-11-09T09:24:24.354394298Z     |  |     |  |  |  |  +-[DOT] Node: '.'
2019-11-09T09:24:24.354397216Z     |  |     |  |  |  |  |  +-[DOT] Node: '.'
2019-11-09T09:24:24.354400185Z     |  |     |  |  |  |  |  |  +-[DOT] Node: '.'
2019-11-09T09:24:24.354403409Z     |  |     |  |  |  |  |  |  |  +-[IDENT] Node: 'ru'
2019-11-09T09:24:24.354406409Z     |  |     |  |  |  |  |  |  |  \-[IDENT] Node: 'i_novus'
2019-11-09T09:24:24.354409395Z     |  |     |  |  |  |  |  |  \-[IDENT] Node: 'oms'
2019-11-09T09:24:24.354412328Z     |  |     |  |  |  |  |  \-[IDENT] Node: 'registry'
2019-11-09T09:24:24.354415241Z     |  |     |  |  |  |  \-[IDENT] Node: 'impl'
2019-11-09T09:24:24.354418124Z     |  |     |  |  |  \-[IDENT] Node: 'entity'
2019-11-09T09:24:24.354420989Z     |  |     |  |  \-[IDENT] Node: 'nsi'
2019-11-09T09:24:24.354423897Z     |  |     |  \-[IDENT] Node: 'TmpNsiUpdateValueEntity'
2019-11-09T09:24:24.354426791Z     |  |     \-[ALIAS] Node: 'tnuv'
2019-11-09T09:24:24.354429613Z     |  \-[SELECT] Node: 'SELECT'
2019-11-09T09:24:24.354433486Z     |     \-[IDENT] Node: 'tnuv'
2019-11-09T09:24:24.354436588Z     \-[WHERE] Node: 'WHERE'
2019-11-09T09:24:24.354440069Z        \-[AND] Node: 'AND'
2019-11-09T09:24:24.354442951Z           +-[EQ] Node: '='
2019-11-09T09:24:24.354454749Z           |  +-[DOT] Node: '.'
2019-11-09T09:24:24.354458028Z           |  |  +-[IDENT] Node: 'tnuv'
2019-11-09T09:24:24.354460952Z           |  |  \-[IDENT] Node: 'code'
2019-11-09T09:24:24.354463838Z           |  \-[COLON] Node: ':'
2019-11-09T09:24:24.354466784Z           |     \-[IDENT] Node: 'code'
2019-11-09T09:24:24.354469623Z           \-[EQ] Node: '='
2019-11-09T09:24:24.354472512Z              +-[DOT] Node: '.'
2019-11-09T09:24:24.354475317Z              |  +-[IDENT] Node: 'tnuv'
2019-11-09T09:24:24.354478198Z              |  \-[IDENT] Node: 'version'
2019-11-09T09:24:24.354481088Z              \-[COLON] Node: ':'
2019-11-09T09:24:24.354483888Z                 \-[IDENT] Node: 'version'
2019-11-09T09:24:24.354486799Z 
2019-11-09T09:24:24.354489671Z 12:24:24.354 [http-nio-8080-exec-1] DEBUG o.h.hql.internal.ast.ErrorCounter - throwQueryException() : no errors
2019-11-09T09:24:24.354584630Z 12:24:24.354 [http-nio-8080-exec-1] DEBUG o.h.h.i.antlr.HqlSqlBaseWalker - select << begin [level=1, statement=select]
2019-11-09T09:24:24.354773836Z 12:24:24.354 [http-nio-8080-exec-1] DEBUG o.h.h.internal.ast.tree.FromElement - FromClause{level=1} : ru.i_novus.oms.registry.impl.entity.nsi.TmpNsiUpdateValueEntity (tnuv) -> tmpnsiupda0_
2019-11-09T09:24:24.354848450Z 12:24:24.354 [http-nio-8080-exec-1] DEBUG o.h.h.i.ast.tree.FromReferenceNode - Resolved : tnuv -> tmpnsiupda0_.id
2019-11-09T09:24:24.354905106Z 12:24:24.354 [http-nio-8080-exec-1] DEBUG o.h.h.i.ast.tree.FromReferenceNode - Resolved : tnuv -> tmpnsiupda0_.id
2019-11-09T09:24:24.354939660Z 12:24:24.354 [http-nio-8080-exec-1] DEBUG o.h.hql.internal.ast.tree.DotNode - getDataType() : code -> org.hibernate.type.StringType@6eeabccb
2019-11-09T09:24:24.354974537Z 12:24:24.354 [http-nio-8080-exec-1] DEBUG o.h.h.i.ast.tree.FromReferenceNode - Resolved : tnuv.code -> tmpnsiupda0_.code
2019-11-09T09:24:24.355050991Z 12:24:24.355 [http-nio-8080-exec-1] DEBUG o.h.h.i.ast.tree.FromReferenceNode - Resolved : tnuv -> tmpnsiupda0_.id
2019-11-09T09:24:24.355073252Z 12:24:24.355 [http-nio-8080-exec-1] DEBUG o.h.hql.internal.ast.tree.DotNode - getDataType() : version -> org.hibernate.type.StringType@6eeabccb
2019-11-09T09:24:24.355123506Z 12:24:24.355 [http-nio-8080-exec-1] DEBUG o.h.h.i.ast.tree.FromReferenceNode - Resolved : tnuv.version -> tmpnsiupda0_.version
2019-11-09T09:24:24.355166908Z 12:24:24.355 [http-nio-8080-exec-1] DEBUG o.h.h.i.antlr.HqlSqlBaseWalker - select : finishing up [level=1, statement=select]
2019-11-09T09:24:24.355223087Z 12:24:24.355 [http-nio-8080-exec-1] DEBUG o.h.hql.internal.ast.HqlSqlWalker - processQuery() :  ( SELECT ( {select clause} tmpnsiupda0_.id ) ( FromClause{level=1} oms.tmp_nsi_update_value tmpnsiupda0_ ) ( WHERE ( AND ( = ( tmpnsiupda0_.code tmpnsiupda0_.id code ) ? ) ( = ( tmpnsiupda0_.version tmpnsiupda0_.id version ) ? ) ) ) )
2019-11-09T09:24:24.355355183Z 12:24:24.355 [http-nio-8080-exec-1] DEBUG o.h.h.i.ast.util.JoinProcessor - Using FROM fragment [oms.tmp_nsi_update_value tmpnsiupda0_]
2019-11-09T09:24:24.355391555Z 12:24:24.355 [http-nio-8080-exec-1] DEBUG o.h.h.i.antlr.HqlSqlBaseWalker - select >> end [level=1, statement=select]
2019-11-09T09:24:24.355549172Z 12:24:24.355 [http-nio-8080-exec-1] DEBUG o.h.h.i.ast.QueryTranslatorImpl - --- SQL AST ---
2019-11-09T09:24:24.355560259Z  \-[SELECT] QueryNode: 'SELECT'  querySpaces (oms.tmp_nsi_update_value)
2019-11-09T09:24:24.355566257Z     +-[SELECT_CLAUSE] SelectClause: '{select clause}'
2019-11-09T09:24:24.355571637Z     |  +-[ALIAS_REF] IdentNode: 'tmpnsiupda0_.id as id1_59_' {alias=tnuv, className=ru.i_novus.oms.registry.impl.entity.nsi.TmpNsiUpdateValueEntity, tableAlias=tmpnsiupda0_}
2019-11-09T09:24:24.355577459Z     |  \-[SQL_TOKEN] SqlFragment: 'tmpnsiupda0_.code as code2_59_, tmpnsiupda0_.page as page3_59_, tmpnsiupda0_.value as value4_59_, tmpnsiupda0_.version as version5_59_'
2019-11-09T09:24:24.355582830Z     +-[FROM] FromClause: 'FROM' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[tnuv], fromElementByTableAlias=[tmpnsiupda0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
2019-11-09T09:24:24.355588513Z     |  \-[FROM_FRAGMENT] FromElement: 'oms.tmp_nsi_update_value tmpnsiupda0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=tnuv,role=null,tableName=oms.tmp_nsi_update_value,tableAlias=tmpnsiupda0_,origin=null,columns={,className=ru.i_novus.oms.registry.impl.entity.nsi.TmpNsiUpdateValueEntity}}
2019-11-09T09:24:24.355593860Z     \-[WHERE] SqlNode: 'WHERE'
2019-11-09T09:24:24.355598931Z        \-[AND] SqlNode: 'AND'
2019-11-09T09:24:24.355603872Z           +-[EQ] BinaryLogicOperatorNode: '='
2019-11-09T09:24:24.355608447Z           |  +-[DOT] DotNode: 'tmpnsiupda0_.code' {propertyName=code,dereferenceType=PRIMITIVE,getPropertyPath=code,path=tnuv.code,tableAlias=tmpnsiupda0_,className=ru.i_novus.oms.registry.impl.entity.nsi.TmpNsiUpdateValueEntity,classAlias=tnuv}
2019-11-09T09:24:24.355613955Z           |  |  +-[ALIAS_REF] IdentNode: 'tmpnsiupda0_.id' {alias=tnuv, className=ru.i_novus.oms.registry.impl.entity.nsi.TmpNsiUpdateValueEntity, tableAlias=tmpnsiupda0_}
2019-11-09T09:24:24.355618420Z           |  |  \-[IDENT] IdentNode: 'code' {originalText=code}
2019-11-09T09:24:24.355623420Z           |  \-[NAMED_PARAM] ParameterNode: '?' {name=code, expectedType=org.hibernate.type.StringType@6eeabccb}
2019-11-09T09:24:24.355628157Z           \-[EQ] BinaryLogicOperatorNode: '='
2019-11-09T09:24:24.355644687Z              +-[DOT] DotNode: 'tmpnsiupda0_.version' {propertyName=version,dereferenceType=PRIMITIVE,getPropertyPath=version,path=tnuv.version,tableAlias=tmpnsiupda0_,className=ru.i_novus.oms.registry.impl.entity.nsi.TmpNsiUpdateValueEntity,classAlias=tnuv}
2019-11-09T09:24:24.355650628Z              |  +-[ALIAS_REF] IdentNode: 'tmpnsiupda0_.id' {alias=tnuv, className=ru.i_novus.oms.registry.impl.entity.nsi.TmpNsiUpdateValueEntity, tableAlias=tmpnsiupda0_}
2019-11-09T09:24:24.355655820Z              |  \-[IDENT] IdentNode: 'version' {originalText=version}
2019-11-09T09:24:24.355660480Z              \-[NAMED_PARAM] ParameterNode: '?' {name=version, expectedType=org.hibernate.type.StringType@6eeabccb}
2019-11-09T09:24:24.355664951Z 
2019-11-09T09:24:24.355675997Z 12:24:24.355 [http-nio-8080-exec-1] DEBUG o.h.hql.internal.ast.ErrorCounter - throwQueryException() : no errors
2019-11-09T09:24:24.355681366Z 12:24:24.355 [http-nio-8080-exec-1] DEBUG o.h.h.i.ast.QueryTranslatorImpl - HQL: SELECT tnuv FROM ru.i_novus.oms.registry.impl.entity.nsi.TmpNsiUpdateValueEntity tnuv WHERE tnuv.code = :code AND tnuv.version = :version 
2019-11-09T09:24:24.355686175Z 12:24:24.355 [http-nio-8080-exec-1] DEBUG o.h.h.i.ast.QueryTranslatorImpl - SQL: select tmpnsiupda0_.id as id1_59_, tmpnsiupda0_.code as code2_59_, tmpnsiupda0_.page as page3_59_, tmpnsiupda0_.value as value4_59_, tmpnsiupda0_.version as version5_59_ from oms.tmp_nsi_update_value tmpnsiupda0_ where tmpnsiupda0_.code=? and tmpnsiupda0_.version=?
2019-11-09T09:24:24.355691306Z 12:24:24.355 [http-nio-8080-exec-1] DEBUG o.h.hql.internal.ast.ErrorCounter - throwQueryException() : no errors
2019-11-09T09:24:24.355898168Z 12:24:24.355 [http-nio-8080-exec-1] DEBUG org.hibernate.SQL - select tmpnsiupda0_.id as id1_59_, tmpnsiupda0_.code as code2_59_, tmpnsiupda0_.page as page3_59_, tmpnsiupda0_.value as value4_59_, tmpnsiupda0_.version as version5_59_ from oms.tmp_nsi_update_value tmpnsiupda0_ where tmpnsiupda0_.code=? and tmpnsiupda0_.version=?
2019-11-09T09:25:24.862214170Z 12:25:24.861 [http-nio-8080-exec-1] DEBUG o.h.e.jdbc.spi.SqlExceptionHelper - could not extract ResultSet [n/a]
2019-11-09T09:25:24.862238367Z org.postgresql.util.PSQLException: Ran out of memory retrieving query results.
2019-11-09T09:25:24.862242361Z 	at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2150) ~[postgresql-42.2.4.jar:42.2.4]
2019-11-09T09:25:24.862245662Z 	at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:308) ~[postgresql-42.2.4.jar:42.2.4]
2019-11-09T09:25:24.862248937Z 	at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:441) ~[postgresql-42.2.4.jar:42.2.4]
2019-11-09T09:25:24.862251798Z 	at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:365) ~[postgresql-42.2.4.jar:42.2.4]
2019-11-09T09:25:24.862254632Z 	at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:150) ~[postgresql-42.2.4.jar:42.2.4]
2019-11-09T09:25:24.862257676Z 	at org.postgresql.jdbc.PgPreparedStatement.executeQuery(PgPreparedStatement.java:113) ~[postgresql-42.2.4.jar:42.2.4]
2019-11-09T09:25:24.862260695Z 	at org.apache.tomcat.dbcp.dbcp2.DelegatingPreparedStatement.executeQuery(DelegatingPreparedStatement.java:107) ~[tomcat-dbcp.jar:8.5.47]
2019-11-09T09:25:24.862263615Z 	at org.apache.tomcat.dbcp.dbcp2.DelegatingPreparedStatement.executeQuery(DelegatingPreparedStatement.java:107) ~[tomcat-dbcp.jar:8.5.47]
2019-11-09T09:25:24.862266503Z 	at org.hibernate.engine.jdbc.internal.ResultSetReturnImpl.extract(ResultSetReturnImpl.java:80) ~[hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862271265Z 	at org.hibernate.loader.Loader.getResultSet(Loader.java:2065) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862274265Z 	at org.hibernate.loader.Loader.executeQueryStatement(Loader.java:1862) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862277119Z 	at org.hibernate.loader.Loader.executeQueryStatement(Loader.java:1838) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862286488Z 	at org.hibernate.loader.Loader.doQuery(Loader.java:909) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862289256Z 	at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:354) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862291855Z 	at org.hibernate.loader.Loader.doList(Loader.java:2553) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862295038Z 	at org.hibernate.loader.Loader.doList(Loader.java:2539) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862297659Z 	at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2369) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862300227Z 	at org.hibernate.loader.Loader.list(Loader.java:2364) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862302748Z 	at org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:496) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862305315Z 	at org.hibernate.hql.internal.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.java:387) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862309113Z 	at org.hibernate.engine.query.spi.HQLQueryPlan.performList(HQLQueryPlan.java:231) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862313791Z 	at org.hibernate.internal.SessionImpl.list(SessionImpl.java:1264) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862318132Z 	at org.hibernate.internal.QueryImpl.list(QueryImpl.java:103) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862322985Z 	at org.hibernate.jpa.internal.QueryImpl.list(QueryImpl.java:573) [hibernate-entitymanager-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862327551Z 	at org.hibernate.jpa.internal.QueryImpl.getResultList(QueryImpl.java:449) [hibernate-entitymanager-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862331819Z 	at ru.i_novus.oms.registry.impl.service.nsi.NsiServiceImpl.getTmpNsiUpdateValue(NsiServiceImpl.java:192) [registry-impl-1.0.0-SNAPSHOT.jar:na]
2019-11-09T09:25:24.862335844Z 	at ru.i_novus.oms.registry.impl.service.nsi.NsiServiceImpl.updateVersion(NsiServiceImpl.java:144) [registry-impl-1.0.0-SNAPSHOT.jar:na]
2019-11-09T09:25:24.862339719Z 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_232]
2019-11-09T09:25:24.862343854Z 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_232]
2019-11-09T09:25:24.862346627Z 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_232]
2019-11-09T09:25:24.862349150Z 	at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_232]
2019-11-09T09:25:24.862351655Z 	at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:333) [spring-aop-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862354294Z 	at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:190) [spring-aop-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862357185Z 	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157) [spring-aop-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862362779Z 	at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:99) [spring-tx-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862365536Z 	at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:282) [spring-tx-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862368155Z 	at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96) [spring-tx-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862370763Z 	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) [spring-aop-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862373352Z 	at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:213) [spring-aop-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862375909Z 	at com.sun.proxy.$Proxy136.updateVersion(Unknown Source) [na:na]
2019-11-09T09:25:24.862378414Z 	at ru.i_novus.oms.registry.impl.service.nsi.NsiFillReferenceServiceImpl.updateVersion(NsiFillReferenceServiceImpl.java:117) [registry-impl-1.0.0-SNAPSHOT.jar:na]
2019-11-09T09:25:24.862381006Z 	at ru.i_novus.oms.registry.impl.service.nsi.NsiFillReferenceServiceImpl.fillReference(NsiFillReferenceServiceImpl.java:65) [registry-impl-1.0.0-SNAPSHOT.jar:na]
2019-11-09T09:25:24.862385072Z 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_232]
2019-11-09T09:25:24.862389457Z 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_232]
2019-11-09T09:25:24.862394278Z 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_232]
2019-11-09T09:25:24.862398201Z 	at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_232]
2019-11-09T09:25:24.862402333Z 	at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:333) [spring-aop-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862405668Z 	at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:207) [spring-aop-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862409032Z 	at com.sun.proxy.$Proxy138.fillReference(Unknown Source) [na:na]
2019-11-09T09:25:24.862413659Z 	at ru.i_novus.oms.registry.impl.service.nsi.NsiUpdaterServiceImpl.updateReference(NsiUpdaterServiceImpl.java:50) [registry-impl-1.0.0-SNAPSHOT.jar:na]
2019-11-09T09:25:24.862417166Z 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_232]
2019-11-09T09:25:24.862420233Z 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_232]
2019-11-09T09:25:24.862424649Z 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_232]
2019-11-09T09:25:24.862429097Z 	at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_232]
2019-11-09T09:25:24.862436542Z 	at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:333) [spring-aop-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862441132Z 	at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:190) [spring-aop-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862444419Z 	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157) [spring-aop-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862448202Z 	at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:99) [spring-tx-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862451740Z 	at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:282) [spring-tx-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862455645Z 	at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96) [spring-tx-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862460251Z 	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) [spring-aop-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862464948Z 	at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:213) [spring-aop-4.3.10.RELEASE.jar:4.3.10.RELEASE]
2019-11-09T09:25:24.862469253Z 	at com.sun.proxy.$Proxy140.updateReference(Unknown Source) [na:na]
2019-11-09T09:25:24.862473704Z 	at ru.i_novus.oms.registry.rest.NsiRest.updateReference(NsiRest.java:25) [registry-ui-backend-1.0.0-SNAPSHOT.jar:na]
2019-11-09T09:25:24.862478088Z 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_232]
2019-11-09T09:25:24.862483090Z 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_232]
2019-11-09T09:25:24.862487667Z 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_232]
2019-11-09T09:25:24.862492099Z 	at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_232]
2019-11-09T09:25:24.862496376Z 	at org.apache.cxf.service.invoker.AbstractInvoker.performInvocation(AbstractInvoker.java:180) [cxf-core-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862500187Z 	at org.apache.cxf.service.invoker.AbstractInvoker.invoke(AbstractInvoker.java:96) [cxf-core-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862504554Z 	at org.apache.cxf.jaxrs.JAXRSInvoker.invoke(JAXRSInvoker.java:189) [cxf-rt-frontend-jaxrs-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862508639Z 	at org.apache.cxf.jaxrs.JAXRSInvoker.invoke(JAXRSInvoker.java:99) [cxf-rt-frontend-jaxrs-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862512762Z 	at org.apache.cxf.interceptor.ServiceInvokerInterceptor$1.run(ServiceInvokerInterceptor.java:59) [cxf-core-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862517095Z 	at org.apache.cxf.interceptor.ServiceInvokerInterceptor.handleMessage(ServiceInvokerInterceptor.java:96) [cxf-core-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862521130Z 	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:308) [cxf-core-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862529042Z 	at org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:121) [cxf-core-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862533752Z 	at org.apache.cxf.transport.http.AbstractHTTPDestination.invoke(AbstractHTTPDestination.java:252) [cxf-rt-transports-http-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862538415Z 	at org.apache.cxf.transport.servlet.ServletController.invokeDestination(ServletController.java:234) [cxf-rt-transports-http-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862542974Z 	at org.apache.cxf.transport.servlet.ServletController.invoke(ServletController.java:208) [cxf-rt-transports-http-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862547386Z 	at org.apache.cxf.transport.servlet.ServletController.invoke(ServletController.java:160) [cxf-rt-transports-http-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862551816Z 	at org.apache.cxf.transport.servlet.CXFNonSpringServlet.invoke(CXFNonSpringServlet.java:180) [cxf-rt-transports-http-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862557270Z 	at org.apache.cxf.transport.servlet.AbstractHTTPServlet.handleRequest(AbstractHTTPServlet.java:299) [cxf-rt-transports-http-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862562221Z 	at org.apache.cxf.transport.servlet.AbstractHTTPServlet.doPost(AbstractHTTPServlet.java:218) [cxf-rt-transports-http-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862567054Z 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:660) [servlet-api.jar:na]
2019-11-09T09:25:24.862571548Z 	at org.apache.cxf.transport.servlet.AbstractHTTPServlet.service(AbstractHTTPServlet.java:274) [cxf-rt-transports-http-3.1.9.jar:3.1.9]
2019-11-09T09:25:24.862576080Z 	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) [catalina.jar:8.5.47]
2019-11-09T09:25:24.862580507Z 	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [catalina.jar:8.5.47]
2019-11-09T09:25:24.862585017Z 	at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) [tomcat-websocket.jar:8.5.47]
2019-11-09T09:25:24.862589858Z 	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [catalina.jar:8.5.47]
2019-11-09T09:25:24.862594256Z 	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [catalina.jar:8.5.47]
2019-11-09T09:25:24.862598489Z 	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:199) [catalina.jar:8.5.47]
2019-11-09T09:25:24.862602739Z 	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) [catalina.jar:8.5.47]
2019-11-09T09:25:24.862607010Z 	at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:528) [catalina.jar:8.5.47]
2019-11-09T09:25:24.862611514Z 	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) [catalina.jar:8.5.47]
2019-11-09T09:25:24.862616068Z 	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81) [catalina.jar:8.5.47]
2019-11-09T09:25:24.862620309Z 	at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:678) [catalina.jar:8.5.47]
2019-11-09T09:25:24.862627908Z 	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87) [catalina.jar:8.5.47]
2019-11-09T09:25:24.862641279Z 	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) [catalina.jar:8.5.47]
2019-11-09T09:25:24.862645865Z 	at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:798) [tomcat-coyote.jar:8.5.47]
2019-11-09T09:25:24.862649954Z 	at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) [tomcat-coyote.jar:8.5.47]
2019-11-09T09:25:24.862654344Z 	at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:810) [tomcat-coyote.jar:8.5.47]
2019-11-09T09:25:24.862658488Z 	at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1500) [tomcat-coyote.jar:8.5.47]
2019-11-09T09:25:24.862663124Z 	at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) [tomcat-coyote.jar:8.5.47]
2019-11-09T09:25:24.862667503Z 	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) [na:1.8.0_232]
2019-11-09T09:25:24.862671974Z 	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) [na:1.8.0_232]
2019-11-09T09:25:24.862676602Z 	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) [tomcat-util.jar:8.5.47]
2019-11-09T09:25:24.862681103Z 	at java.lang.Thread.run(Thread.java:748) [na:1.8.0_232]
2019-11-09T09:25:24.862685476Z Caused by: java.lang.OutOfMemoryError: Java heap space
2019-11-09T09:25:24.862689576Z 	at org.postgresql.core.PGStream.receiveTupleV3(PGStream.java:408) ~[postgresql-42.2.4.jar:42.2.4]
2019-11-09T09:25:24.862693842Z 	at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2146) ~[postgresql-42.2.4.jar:42.2.4]
2019-11-09T09:25:24.862697650Z 	at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:308) ~[postgresql-42.2.4.jar:42.2.4]
2019-11-09T09:25:24.862702134Z 	at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:441) ~[postgresql-42.2.4.jar:42.2.4]
2019-11-09T09:25:24.862706646Z 	at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:365) ~[postgresql-42.2.4.jar:42.2.4]
2019-11-09T09:25:24.862711048Z 	at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:150) ~[postgresql-42.2.4.jar:42.2.4]
2019-11-09T09:25:24.862715751Z 	at org.postgresql.jdbc.PgPreparedStatement.executeQuery(PgPreparedStatement.java:113) ~[postgresql-42.2.4.jar:42.2.4]
2019-11-09T09:25:24.862720045Z 	at org.apache.tomcat.dbcp.dbcp2.DelegatingPreparedStatement.executeQuery(DelegatingPreparedStatement.java:107) ~[tomcat-dbcp.jar:8.5.47]
2019-11-09T09:25:24.862724703Z 	at org.apache.tomcat.dbcp.dbcp2.DelegatingPreparedStatement.executeQuery(DelegatingPreparedStatement.java:107) ~[tomcat-dbcp.jar:8.5.47]
2019-11-09T09:25:24.862729344Z 	at org.hibernate.engine.jdbc.internal.ResultSetReturnImpl.extract(ResultSetReturnImpl.java:80) ~[hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862737394Z 	at org.hibernate.loader.Loader.getResultSet(Loader.java:2065) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862742922Z 	at org.hibernate.loader.Loader.executeQueryStatement(Loader.java:1862) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862747388Z 	at org.hibernate.loader.Loader.executeQueryStatement(Loader.java:1838) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862751623Z 	at org.hibernate.loader.Loader.doQuery(Loader.java:909) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862756203Z 	at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:354) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862760797Z 	at org.hibernate.loader.Loader.doList(Loader.java:2553) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862765257Z 	at org.hibernate.loader.Loader.doList(Loader.java:2539) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862769657Z 	at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2369) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862773917Z 	at org.hibernate.loader.Loader.list(Loader.java:2364) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862778105Z 	at org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:496) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862782082Z 	at org.hibernate.hql.internal.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.java:387) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862786596Z 	at org.hibernate.engine.query.spi.HQLQueryPlan.performList(HQLQueryPlan.java:231) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862791345Z 	at org.hibernate.internal.SessionImpl.list(SessionImpl.java:1264) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862795921Z 	at org.hibernate.internal.QueryImpl.list(QueryImpl.java:103) [hibernate-core-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862800186Z 	at org.hibernate.jpa.internal.QueryImpl.list(QueryImpl.java:573) [hibernate-entitymanager-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862804813Z 	at org.hibernate.jpa.internal.QueryImpl.getResultList(QueryImpl.java:449) [hibernate-entitymanager-4.3.5.Final.jar:4.3.5.Final]
2019-11-09T09:25:24.862809623Z 	at ru.i_novus.oms.registry.impl.service.nsi.NsiServiceImpl.getTmpNsiUpdateValue(NsiServiceImpl.java:192) [registry-impl-1.0.0-SNAPSHOT.jar:na]
2019-11-09T09:25:24.862814233Z 	at ru.i_novus.oms.registry.impl.service.nsi.NsiServiceImpl.updateVersion(NsiServiceImpl.java:144) [registry-impl-1.0.0-SNAPSHOT.jar:na]
2019-11-09T09:25:24.862881182Z 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_232]
2019-11-09T09:25:24.862892640Z 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_232]
2019-11-09T09:25:24.862897595Z 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_232]
2019-11-09T09:25:24.862901163Z 	at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_232]
2019-11-09T09:25:24.862910287Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.862914282Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.862918102Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.862921600Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.862925116Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.862928676Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.862932532Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.862936014Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.862939489Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.862943101Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.862946616Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.862950392Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.862954021Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.862957518Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.862961048Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.862965024Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.862968766Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.862972500Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.862975942Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.862979553Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.862983412Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.862986924Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.862993753Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.862997742Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863001197Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863005066Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863008555Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863011926Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863015485Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863018982Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863022670Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863026211Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863030005Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863034101Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863038126Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863041635Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863045254Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863048652Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863052145Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863055712Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863059525Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863063388Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863066771Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863070179Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863076982Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863081199Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863084785Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863088460Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863092236Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863095654Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863099384Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863103346Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863106939Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863110529Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863114031Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863117479Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863120934Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863124258Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863128117Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863131709Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863135035Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863138547Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863142145Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863145594Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863149174Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863152600Z 12:25:24.862 [http-nio-8080-exec-1] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Ran out of memory retrieving query results.
2019-11-09T09:25:24.863159204Z 12:25:24.862 [http-nio-8080-exec-1] WARN  o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 0, SQLState: 53200
2019-11-09T09:25:24.863163244Z 12:25:24.862 [http-