-
Notifications
You must be signed in to change notification settings - Fork 0
/
ospl-info.log
9316 lines (9218 loc) · 492 KB
/
ospl-info.log
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
========================================================================================
Report : WARNING
Date : qui nov 22 10:27:17 -02 2018
Description : Did not install signal handlers to cleanup resources.
To ensure cleanup for Java applications, the path to the 'jsig' library
(libjsig.so) must be set in the LD_PRELOAD environment variable.
This library is part of your Java distribution.
To ensure proper cleanup set this before starting your application.
Node : neumann-linux
Process : java <21571>
Thread : main thread 7f41b18ab700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OS abstraction layer/os_signalHandler.c/107/0/1542889637.748903692
========================================================================================
Report : INFO
Date : qui nov 22 10:27:17 -02 2018
Description : u_domainNew:Database allocated on heap
Node : neumann-linux
Process : java <21571>
Thread : spliced 7f4195754700
Internals : V6.4.140407OSS/3b83e82/3b83e82/user::u_domain::u_domainNew/u_domain.c/706/0/1542889637.773841967
========================================================================================
Report : INFO
Date : qui nov 22 10:27:17 -02 2018
Description : ---------------------------------------------------------------
-- The service is using the following configuration settings --
---------------------------------------------------------------
Domain (id) : ospl_sp_ddsi (0)
Storage : 10240 Kbytes
Storage threshold : 1024 Kbytes
Storage address : Not available
Locking : default
Memory mode : Heap memory
Builtin topics : true
Priority inheritance : false
Node : neumann-linux
Process : java <21571>
Thread : spliced 7f4195754700
Internals : V6.4.140407OSS/3b83e82/3b83e82/The OpenSplice domain service/u_domain.c/827/0/1542889637.781745007
========================================================================================
Report : INFO
Date : qui nov 22 10:27:17 -02 2018
Description : Service cmsoap disabled
Node : neumann-linux
Process : java <21571>
Thread : spliced 7f4195754700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OpenSplice domain service/sr_componentInfo.c/439/0/1542889637.782094864
========================================================================================
Report : INFO
Date : qui nov 22 10:27:17 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'splicedaemon' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <21571>
Thread : spliced 7f4195754700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542889637.784697429
========================================================================================
Report : WARNING
Date : qui nov 22 10:27:17 -02 2018
Description : using network interface wlp1s0 (139.82.153.142) selected arbitrarily from: wlp1s0, virbr0
Node : neumann-linux
Process : java <21571>
Thread : ddsi2 7f4194f60700
Internals : V6.4.140407OSS/3b83e82/3b83e82/ddsi2/q_nwif.c/668/0/1542889637.792515051
========================================================================================
Report : INFO
Date : qui nov 22 10:27:17 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'ddsi2' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <21571>
Thread : ddsi2 7f4194f60700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542889637.803055472
========================================================================================
Report : INFO
Date : qui nov 22 10:27:17 -02 2018
Description : The durability service can by identified by ID: 22355741
Node : neumann-linux
Process : java <21571>
Thread : durability 7f41952cf700
Internals : V6.4.140407OSS/3b83e82/3b83e82/DurabilityService/d_durability.c/476/0/1542889637.824757813
========================================================================================
Report : INFO
Date : qui nov 22 10:27:25 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'durability' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <21571>
Thread : durability 7f41952cf700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542889645.232879765
========================================================================================
Report : WARNING
Date : qui nov 22 10:52:16 -02 2018
Description : Did not install signal handlers to cleanup resources.
To ensure cleanup for Java applications, the path to the 'jsig' library
(libjsig.so) must be set in the LD_PRELOAD environment variable.
This library is part of your Java distribution.
To ensure proper cleanup set this before starting your application.
Node : neumann-linux
Process : java <30870>
Thread : main thread 7fd16e4ea700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OS abstraction layer/os_signalHandler.c/107/0/1542891136.005365205
========================================================================================
Report : INFO
Date : qui nov 22 10:52:16 -02 2018
Description : u_domainNew:Database allocated on heap
Node : neumann-linux
Process : java <30870>
Thread : spliced 7fd14e3cc700
Internals : V6.4.140407OSS/3b83e82/3b83e82/user::u_domain::u_domainNew/u_domain.c/706/0/1542891136.038984918
========================================================================================
Report : INFO
Date : qui nov 22 10:52:16 -02 2018
Description : ---------------------------------------------------------------
-- The service is using the following configuration settings --
---------------------------------------------------------------
Domain (id) : ospl_sp_ddsi (0)
Storage : 10240 Kbytes
Storage threshold : 1024 Kbytes
Storage address : Not available
Locking : default
Memory mode : Heap memory
Builtin topics : true
Priority inheritance : false
Node : neumann-linux
Process : java <30870>
Thread : spliced 7fd14e3cc700
Internals : V6.4.140407OSS/3b83e82/3b83e82/The OpenSplice domain service/u_domain.c/827/0/1542891136.049604202
========================================================================================
Report : INFO
Date : qui nov 22 10:52:16 -02 2018
Description : Service cmsoap disabled
Node : neumann-linux
Process : java <30870>
Thread : spliced 7fd14e3cc700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OpenSplice domain service/sr_componentInfo.c/439/0/1542891136.049942115
========================================================================================
Report : INFO
Date : qui nov 22 10:52:16 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'splicedaemon' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <30870>
Thread : spliced 7fd14e3cc700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542891136.050392194
========================================================================================
Report : WARNING
Date : qui nov 22 10:52:16 -02 2018
Description : using network interface wlp1s0 (139.82.153.142) selected arbitrarily from: wlp1s0, virbr0
Node : neumann-linux
Process : java <30870>
Thread : ddsi2 7fd14dba5700
Internals : V6.4.140407OSS/3b83e82/3b83e82/ddsi2/q_nwif.c/668/0/1542891136.052159268
========================================================================================
Report : INFO
Date : qui nov 22 10:52:16 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'ddsi2' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <30870>
Thread : ddsi2 7fd14dba5700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542891136.058251142
========================================================================================
Report : INFO
Date : qui nov 22 10:52:16 -02 2018
Description : The durability service can by identified by ID: 474665056
Node : neumann-linux
Process : java <30870>
Thread : durability 7fd14df14700
Internals : V6.4.140407OSS/3b83e82/3b83e82/DurabilityService/d_durability.c/476/0/1542891136.372950088
========================================================================================
Report : INFO
Date : qui nov 22 10:52:23 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'durability' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <30870>
Thread : durability 7fd14df14700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542891143.781807446
========================================================================================
Report : WARNING
Date : qui nov 22 10:53:13 -02 2018
Description : Did not install signal handlers to cleanup resources.
To ensure cleanup for Java applications, the path to the 'jsig' library
(libjsig.so) must be set in the LD_PRELOAD environment variable.
This library is part of your Java distribution.
To ensure proper cleanup set this before starting your application.
Node : neumann-linux
Process : java <7173>
Thread : main thread 7f3570a49700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OS abstraction layer/os_signalHandler.c/107/0/1542891193.263634349
========================================================================================
Report : INFO
Date : qui nov 22 10:53:13 -02 2018
Description : u_domainNew:Database allocated on heap
Node : neumann-linux
Process : java <7173>
Thread : spliced 7f3550931700
Internals : V6.4.140407OSS/3b83e82/3b83e82/user::u_domain::u_domainNew/u_domain.c/706/0/1542891193.335344792
========================================================================================
Report : INFO
Date : qui nov 22 10:53:13 -02 2018
Description : ---------------------------------------------------------------
-- The service is using the following configuration settings --
---------------------------------------------------------------
Domain (id) : ospl_sp_ddsi (0)
Storage : 10240 Kbytes
Storage threshold : 1024 Kbytes
Storage address : Not available
Locking : default
Memory mode : Heap memory
Builtin topics : true
Priority inheritance : false
Node : neumann-linux
Process : java <7173>
Thread : spliced 7f3550931700
Internals : V6.4.140407OSS/3b83e82/3b83e82/The OpenSplice domain service/u_domain.c/827/0/1542891193.344027011
========================================================================================
Report : INFO
Date : qui nov 22 10:53:13 -02 2018
Description : Service cmsoap disabled
Node : neumann-linux
Process : java <7173>
Thread : spliced 7f3550931700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OpenSplice domain service/sr_componentInfo.c/439/0/1542891193.344360219
========================================================================================
Report : INFO
Date : qui nov 22 10:53:13 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'splicedaemon' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <7173>
Thread : spliced 7f3550931700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542891193.354065558
========================================================================================
Report : WARNING
Date : qui nov 22 10:53:13 -02 2018
Description : using network interface wlp1s0 (139.82.153.142) selected arbitrarily from: wlp1s0, virbr0
Node : neumann-linux
Process : java <7173>
Thread : ddsi2 7f351ffff700
Internals : V6.4.140407OSS/3b83e82/3b83e82/ddsi2/q_nwif.c/668/0/1542891193.372911887
========================================================================================
Report : INFO
Date : qui nov 22 10:53:13 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'ddsi2' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <7173>
Thread : ddsi2 7f351ffff700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542891193.384109422
========================================================================================
Report : INFO
Date : qui nov 22 10:53:14 -02 2018
Description : The durability service can by identified by ID: 979301570
Node : neumann-linux
Process : java <7173>
Thread : durability 7f3550479700
Internals : V6.4.140407OSS/3b83e82/3b83e82/DurabilityService/d_durability.c/476/0/1542891194.181280713
========================================================================================
Report : INFO
Date : qui nov 22 10:53:21 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'durability' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <7173>
Thread : durability 7f3550479700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542891201.588615136
========================================================================================
Report : WARNING
Date : qui nov 22 11:07:30 -02 2018
Description : Did not install signal handlers to cleanup resources.
To ensure cleanup for Java applications, the path to the 'jsig' library
(libjsig.so) must be set in the LD_PRELOAD environment variable.
This library is part of your Java distribution.
To ensure proper cleanup set this before starting your application.
Node : neumann-linux
Process : java <8746>
Thread : main thread 7fb4b6bef700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OS abstraction layer/os_signalHandler.c/107/0/1542892050.315637642
========================================================================================
Report : INFO
Date : qui nov 22 11:07:30 -02 2018
Description : u_domainNew:Database allocated on heap
Node : neumann-linux
Process : java <8746>
Thread : spliced 7fb486ad8700
Internals : V6.4.140407OSS/3b83e82/3b83e82/user::u_domain::u_domainNew/u_domain.c/706/0/1542892050.325441582
========================================================================================
Report : INFO
Date : qui nov 22 11:07:30 -02 2018
Description : ---------------------------------------------------------------
-- The service is using the following configuration settings --
---------------------------------------------------------------
Domain (id) : ospl_sp_ddsi (0)
Storage : 10240 Kbytes
Storage threshold : 1024 Kbytes
Storage address : Not available
Locking : default
Memory mode : Heap memory
Builtin topics : true
Priority inheritance : false
Node : neumann-linux
Process : java <8746>
Thread : spliced 7fb486ad8700
Internals : V6.4.140407OSS/3b83e82/3b83e82/The OpenSplice domain service/u_domain.c/827/0/1542892050.344909763
========================================================================================
Report : INFO
Date : qui nov 22 11:07:30 -02 2018
Description : Service cmsoap disabled
Node : neumann-linux
Process : java <8746>
Thread : spliced 7fb486ad8700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OpenSplice domain service/sr_componentInfo.c/439/0/1542892050.345258901
========================================================================================
Report : INFO
Date : qui nov 22 11:07:30 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'splicedaemon' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <8746>
Thread : spliced 7fb486ad8700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542892050.352558588
========================================================================================
Report : WARNING
Date : qui nov 22 11:07:30 -02 2018
Description : using network interface wlp1s0 (139.82.153.142) selected arbitrarily from: wlp1s0, virbr0
Node : neumann-linux
Process : java <8746>
Thread : ddsi2 7fb4862b1700
Internals : V6.4.140407OSS/3b83e82/3b83e82/ddsi2/q_nwif.c/668/0/1542892050.355204975
========================================================================================
Report : INFO
Date : qui nov 22 11:07:30 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'ddsi2' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <8746>
Thread : ddsi2 7fb4862b1700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542892050.379481439
========================================================================================
Report : INFO
Date : qui nov 22 11:07:30 -02 2018
Description : The durability service can by identified by ID: 2146230745
Node : neumann-linux
Process : java <8746>
Thread : durability 7fb486620700
Internals : V6.4.140407OSS/3b83e82/3b83e82/DurabilityService/d_durability.c/476/0/1542892050.417973296
========================================================================================
Report : INFO
Date : qui nov 22 11:07:37 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'durability' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <8746>
Thread : durability 7fb486620700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542892057.828138698
========================================================================================
Report : WARNING
Date : qui nov 22 11:36:18 -02 2018
Description : Did not install signal handlers to cleanup resources.
To ensure cleanup for Java applications, the path to the 'jsig' library
(libjsig.so) must be set in the LD_PRELOAD environment variable.
This library is part of your Java distribution.
To ensure proper cleanup set this before starting your application.
Node : neumann-linux
Process : java <9947>
Thread : main thread 7fa80168c700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OS abstraction layer/os_signalHandler.c/107/0/1542893778.484073967
========================================================================================
Report : INFO
Date : qui nov 22 11:36:18 -02 2018
Description : u_domainNew:Database allocated on heap
Node : neumann-linux
Process : java <9947>
Thread : spliced 7fa7e8202700
Internals : V6.4.140407OSS/3b83e82/3b83e82/user::u_domain::u_domainNew/u_domain.c/706/0/1542893778.555240135
========================================================================================
Report : INFO
Date : qui nov 22 11:36:18 -02 2018
Description : ---------------------------------------------------------------
-- The service is using the following configuration settings --
---------------------------------------------------------------
Domain (id) : ospl_sp_ddsi (0)
Storage : 10240 Kbytes
Storage threshold : 1024 Kbytes
Storage address : Not available
Locking : default
Memory mode : Heap memory
Builtin topics : true
Priority inheritance : false
Node : neumann-linux
Process : java <9947>
Thread : spliced 7fa7e8202700
Internals : V6.4.140407OSS/3b83e82/3b83e82/The OpenSplice domain service/u_domain.c/827/0/1542893778.589059253
========================================================================================
Report : INFO
Date : qui nov 22 11:36:18 -02 2018
Description : Service cmsoap disabled
Node : neumann-linux
Process : java <9947>
Thread : spliced 7fa7e8202700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OpenSplice domain service/sr_componentInfo.c/439/0/1542893778.589394791
========================================================================================
Report : INFO
Date : qui nov 22 11:36:18 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'splicedaemon' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <9947>
Thread : spliced 7fa7e8202700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542893778.589875513
========================================================================================
Report : WARNING
Date : qui nov 22 11:36:18 -02 2018
Description : using network interface wlp1s0 (139.82.153.142) selected arbitrarily from: wlp1s0, virbr0
Node : neumann-linux
Process : java <9947>
Thread : ddsi2 7fa7e0cf2700
Internals : V6.4.140407OSS/3b83e82/3b83e82/ddsi2/q_nwif.c/668/0/1542893778.611900763
========================================================================================
Report : INFO
Date : qui nov 22 11:36:18 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'ddsi2' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <9947>
Thread : ddsi2 7fa7e0cf2700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542893778.617940114
========================================================================================
Report : INFO
Date : qui nov 22 11:36:18 -02 2018
Description : The durability service can by identified by ID: 402009592
Node : neumann-linux
Process : java <9947>
Thread : durability 7fa7e1094700
Internals : V6.4.140407OSS/3b83e82/3b83e82/DurabilityService/d_durability.c/476/0/1542893778.920643936
========================================================================================
Report : INFO
Date : qui nov 22 11:36:26 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'durability' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <9947>
Thread : durability 7fa7e1094700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542893786.534690191
========================================================================================
Report : WARNING
Date : qui nov 22 11:41:23 -02 2018
Description : Did not install signal handlers to cleanup resources.
To ensure cleanup for Java applications, the path to the 'jsig' library
(libjsig.so) must be set in the LD_PRELOAD environment variable.
This library is part of your Java distribution.
To ensure proper cleanup set this before starting your application.
Node : neumann-linux
Process : java <10244>
Thread : main thread 7fe4b7de6700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OS abstraction layer/os_signalHandler.c/107/0/1542894083.876570715
========================================================================================
Report : INFO
Date : qui nov 22 11:41:23 -02 2018
Description : u_domainNew:Database allocated on heap
Node : neumann-linux
Process : java <10244>
Thread : spliced 7fe49c0e8700
Internals : V6.4.140407OSS/3b83e82/3b83e82/user::u_domain::u_domainNew/u_domain.c/706/0/1542894083.892948300
========================================================================================
Report : INFO
Date : qui nov 22 11:41:23 -02 2018
Description : ---------------------------------------------------------------
-- The service is using the following configuration settings --
---------------------------------------------------------------
Domain (id) : ospl_sp_ddsi (0)
Storage : 10240 Kbytes
Storage threshold : 1024 Kbytes
Storage address : Not available
Locking : default
Memory mode : Heap memory
Builtin topics : true
Priority inheritance : false
Node : neumann-linux
Process : java <10244>
Thread : spliced 7fe49c0e8700
Internals : V6.4.140407OSS/3b83e82/3b83e82/The OpenSplice domain service/u_domain.c/827/0/1542894083.906737712
========================================================================================
Report : INFO
Date : qui nov 22 11:41:23 -02 2018
Description : Service cmsoap disabled
Node : neumann-linux
Process : java <10244>
Thread : spliced 7fe49c0e8700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OpenSplice domain service/sr_componentInfo.c/439/0/1542894083.907129177
========================================================================================
Report : INFO
Date : qui nov 22 11:41:23 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'splicedaemon' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <10244>
Thread : spliced 7fe49c0e8700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542894083.907658459
========================================================================================
Report : WARNING
Date : qui nov 22 11:41:23 -02 2018
Description : using network interface wlp1s0 (139.82.153.142) selected arbitrarily from: wlp1s0, virbr0
Node : neumann-linux
Process : java <10244>
Thread : ddsi2 7fe477497700
Internals : V6.4.140407OSS/3b83e82/3b83e82/ddsi2/q_nwif.c/668/0/1542894083.910517501
========================================================================================
Report : INFO
Date : qui nov 22 11:41:23 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'ddsi2' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <10244>
Thread : ddsi2 7fe477497700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542894083.927754890
========================================================================================
Report : INFO
Date : qui nov 22 11:41:23 -02 2018
Description : The durability service can by identified by ID: 1595622376
Node : neumann-linux
Process : java <10244>
Thread : durability 7fe477806700
Internals : V6.4.140407OSS/3b83e82/3b83e82/DurabilityService/d_durability.c/476/0/1542894083.941874387
========================================================================================
Report : INFO
Date : qui nov 22 11:41:31 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'durability' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <10244>
Thread : durability 7fe477806700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542894091.348900666
========================================================================================
Report : WARNING
Date : qui nov 22 11:48:23 -02 2018
Description : Did not install signal handlers to cleanup resources.
To ensure cleanup for Java applications, the path to the 'jsig' library
(libjsig.so) must be set in the LD_PRELOAD environment variable.
This library is part of your Java distribution.
To ensure proper cleanup set this before starting your application.
Node : neumann-linux
Process : java <10512>
Thread : main thread 7f8b304e5700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OS abstraction layer/os_signalHandler.c/107/0/1542894503.843541269
========================================================================================
Report : INFO
Date : qui nov 22 11:48:23 -02 2018
Description : u_domainNew:Database allocated on heap
Node : neumann-linux
Process : java <10512>
Thread : spliced 7f8b143d0700
Internals : V6.4.140407OSS/3b83e82/3b83e82/user::u_domain::u_domainNew/u_domain.c/706/0/1542894503.869116420
========================================================================================
Report : INFO
Date : qui nov 22 11:48:23 -02 2018
Description : ---------------------------------------------------------------
-- The service is using the following configuration settings --
---------------------------------------------------------------
Domain (id) : ospl_sp_ddsi (0)
Storage : 10240 Kbytes
Storage threshold : 1024 Kbytes
Storage address : Not available
Locking : default
Memory mode : Heap memory
Builtin topics : true
Priority inheritance : false
Node : neumann-linux
Process : java <10512>
Thread : spliced 7f8b143d0700
Internals : V6.4.140407OSS/3b83e82/3b83e82/The OpenSplice domain service/u_domain.c/827/0/1542894503.877451993
========================================================================================
Report : INFO
Date : qui nov 22 11:48:23 -02 2018
Description : Service cmsoap disabled
Node : neumann-linux
Process : java <10512>
Thread : spliced 7f8b143d0700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OpenSplice domain service/sr_componentInfo.c/439/0/1542894503.877839772
========================================================================================
Report : INFO
Date : qui nov 22 11:48:23 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'splicedaemon' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <10512>
Thread : spliced 7f8b143d0700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542894503.878403048
========================================================================================
Report : WARNING
Date : qui nov 22 11:48:23 -02 2018
Description : using network interface wlp1s0 (139.82.153.142) selected arbitrarily from: wlp1s0, virbr0
Node : neumann-linux
Process : java <10512>
Thread : ddsi2 7f8adfb32700
Internals : V6.4.140407OSS/3b83e82/3b83e82/ddsi2/q_nwif.c/668/0/1542894503.898938012
========================================================================================
Report : INFO
Date : qui nov 22 11:48:23 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'ddsi2' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <10512>
Thread : ddsi2 7f8adfb32700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542894503.905419997
========================================================================================
Report : INFO
Date : qui nov 22 11:48:24 -02 2018
Description : The durability service can by identified by ID: 1860784584
Node : neumann-linux
Process : java <10512>
Thread : durability 7f8b14177700
Internals : V6.4.140407OSS/3b83e82/3b83e82/DurabilityService/d_durability.c/476/0/1542894504.507568486
========================================================================================
Report : INFO
Date : qui nov 22 11:48:31 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'durability' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <10512>
Thread : durability 7f8b14177700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542894511.915611181
========================================================================================
Report : WARNING
Date : qui nov 22 11:53:11 -02 2018
Description : Missed heartbeat for node - heartbeat id : 1025771799. (DCPSPublication state 1)
Node : neumann-linux
Process : java <10512>
Thread : OSPL Garbage Collector 7f8b14209700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_spliced/v_spliced.c/2439/0/1542894791.900284307
========================================================================================
Report : WARNING
Date : qui nov 22 12:23:25 -02 2018
Description : Processing of lease 0x7f8aec096440 is behind schedule; expiry-time=1542894801.919935770s and lag=1803.100948898s (actionId=7 and duration=10.000000000s). Assuming resuming after hibernate...
Node : neumann-linux
Process : java <10512>
Thread : watchdog 7f8adf6e7700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_leaseManager/v_leaseManager.c/775/0/1542896605.020934384
========================================================================================
Report : WARNING
Date : qui nov 22 12:23:25 -02 2018
Description : Processing of lease 0x7f8ae8002320 is behind schedule; expiry-time=1542894800.518021443s and lag=1804.503064339s (actionId=1 and duration=10.000000000s). Assuming resuming after hibernate...
Node : neumann-linux
Process : java <10512>
Thread : watchdog 7f8b143bf700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_leaseManager/v_leaseManager.c/775/0/1542896605.021100710
========================================================================================
Report : WARNING
Date : qui nov 22 12:23:25 -02 2018
Description : Processing of lease 0x7f8aec00ca80 is behind schedule; expiry-time=1542894793.897226538s and lag=1811.123859244s (actionId=5 and duration=2.000000000s). This is often an indication that the machine is too busy. The lease manager will continue to function normally.
Node : neumann-linux
Process : java <10512>
Thread : watchdog 7f8b143bf700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_leaseManager/v_leaseManager.c/795/0/1542896605.021136099
========================================================================================
Report : WARNING
Date : qui nov 22 12:23:25 -02 2018
Description : Processing of lease 0x7f8aec00ca10 is behind schedule; expiry-time=1542894793.897225610s and lag=1811.123860172s (actionId=6 and duration=2.000000000s). This is often an indication that the machine is too busy. The lease manager will continue to function normally.
Node : neumann-linux
Process : java <10512>
Thread : watchdog 7f8b143bf700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_leaseManager/v_leaseManager.c/795/0/1542896605.021174003
========================================================================================
Report : WARNING
Date : qui nov 22 12:23:25 -02 2018
Description : Processing of lease 0x7f8b00007b10 is behind schedule; expiry-time=1542894801.945007780s and lag=1803.076078002s (actionId=1 and duration=10.000000000s). Assuming resuming after hibernate...
Node : neumann-linux
Process : java <10512>
Thread : watchdog 7f8b143bf700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_leaseManager/v_leaseManager.c/775/0/1542896605.021194350
========================================================================================
Report : WARNING
Date : qui nov 22 12:30:03 -02 2018
Description : Did not install signal handlers to cleanup resources.
To ensure cleanup for Java applications, the path to the 'jsig' library
(libjsig.so) must be set in the LD_PRELOAD environment variable.
This library is part of your Java distribution.
To ensure proper cleanup set this before starting your application.
Node : neumann-linux
Process : java <11295>
Thread : main thread 7f98ae38c700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OS abstraction layer/os_signalHandler.c/107/0/1542897003.411537018
========================================================================================
Report : INFO
Date : qui nov 22 12:30:03 -02 2018
Description : u_domainNew:Database allocated on heap
Node : neumann-linux
Process : java <11295>
Thread : spliced 7f988e271700
Internals : V6.4.140407OSS/3b83e82/3b83e82/user::u_domain::u_domainNew/u_domain.c/706/0/1542897003.468962382
========================================================================================
Report : INFO
Date : qui nov 22 12:30:03 -02 2018
Description : ---------------------------------------------------------------
-- The service is using the following configuration settings --
---------------------------------------------------------------
Domain (id) : ospl_sp_ddsi (0)
Storage : 10240 Kbytes
Storage threshold : 1024 Kbytes
Storage address : Not available
Locking : default
Memory mode : Heap memory
Builtin topics : true
Priority inheritance : false
Node : neumann-linux
Process : java <11295>
Thread : spliced 7f988e271700
Internals : V6.4.140407OSS/3b83e82/3b83e82/The OpenSplice domain service/u_domain.c/827/0/1542897003.486541786
========================================================================================
Report : INFO
Date : qui nov 22 12:30:03 -02 2018
Description : Service cmsoap disabled
Node : neumann-linux
Process : java <11295>
Thread : spliced 7f988e271700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OpenSplice domain service/sr_componentInfo.c/439/0/1542897003.487033422
========================================================================================
Report : INFO
Date : qui nov 22 12:30:03 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'splicedaemon' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <11295>
Thread : spliced 7f988e271700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542897003.487626086
========================================================================================
Report : WARNING
Date : qui nov 22 12:30:03 -02 2018
Description : using network interface wlp1s0 (139.82.153.142) selected arbitrarily from: wlp1s0, virbr0
Node : neumann-linux
Process : java <11295>
Thread : ddsi2 7f988da06700
Internals : V6.4.140407OSS/3b83e82/3b83e82/ddsi2/q_nwif.c/668/0/1542897003.520067133
========================================================================================
Report : INFO
Date : qui nov 22 12:30:03 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'ddsi2' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <11295>
Thread : ddsi2 7f988da06700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542897003.526117785
========================================================================================
Report : INFO
Date : qui nov 22 12:30:03 -02 2018
Description : The durability service can by identified by ID: 1011493779
Node : neumann-linux
Process : java <11295>
Thread : durability 7f988ddb9700
Internals : V6.4.140407OSS/3b83e82/3b83e82/DurabilityService/d_durability.c/476/0/1542897003.829253515
========================================================================================
Report : INFO
Date : qui nov 22 12:30:11 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'durability' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <11295>
Thread : durability 7f988ddb9700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542897011.337283445
========================================================================================
Report : WARNING
Date : qui nov 22 12:41:23 -02 2018
Description : Did not install signal handlers to cleanup resources.
To ensure cleanup for Java applications, the path to the 'jsig' library
(libjsig.so) must be set in the LD_PRELOAD environment variable.
This library is part of your Java distribution.
To ensure proper cleanup set this before starting your application.
Node : neumann-linux
Process : java <12507>
Thread : main thread 7f4af52d1700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OS abstraction layer/os_signalHandler.c/107/0/1542897683.278888192
========================================================================================
Report : INFO
Date : qui nov 22 12:41:23 -02 2018
Description : u_domainNew:Database allocated on heap
Node : neumann-linux
Process : java <12507>
Thread : spliced 7f4ad91bc700
Internals : V6.4.140407OSS/3b83e82/3b83e82/user::u_domain::u_domainNew/u_domain.c/706/0/1542897683.407570758
========================================================================================
Report : INFO
Date : qui nov 22 12:41:23 -02 2018
Description : ---------------------------------------------------------------
-- The service is using the following configuration settings --
---------------------------------------------------------------
Domain (id) : ospl_sp_ddsi (0)
Storage : 10240 Kbytes
Storage threshold : 1024 Kbytes
Storage address : Not available
Locking : default
Memory mode : Heap memory
Builtin topics : true
Priority inheritance : false
Node : neumann-linux
Process : java <12507>
Thread : spliced 7f4ad91bc700
Internals : V6.4.140407OSS/3b83e82/3b83e82/The OpenSplice domain service/u_domain.c/827/0/1542897683.430654582
========================================================================================
Report : INFO
Date : qui nov 22 12:41:23 -02 2018
Description : Service cmsoap disabled
Node : neumann-linux
Process : java <12507>
Thread : spliced 7f4ad91bc700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OpenSplice domain service/sr_componentInfo.c/439/0/1542897683.431183719
========================================================================================
Report : INFO
Date : qui nov 22 12:41:23 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'splicedaemon' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <12507>
Thread : spliced 7f4ad91bc700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542897683.431622762
========================================================================================
Report : WARNING
Date : qui nov 22 12:41:23 -02 2018
Description : using network interface wlp1s0 (139.82.153.142) selected arbitrarily from: wlp1s0, virbr0
Node : neumann-linux
Process : java <12507>
Thread : ddsi2 7f4ad8940700
Internals : V6.4.140407OSS/3b83e82/3b83e82/ddsi2/q_nwif.c/668/0/1542897683.453248735
========================================================================================
Report : INFO
Date : qui nov 22 12:41:23 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'ddsi2' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <12507>
Thread : ddsi2 7f4ad8940700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542897683.458310523
========================================================================================
Report : INFO
Date : qui nov 22 12:41:24 -02 2018
Description : The durability service can by identified by ID: 1975609839
Node : neumann-linux
Process : java <12507>
Thread : durability 7f4ad8d04700
Internals : V6.4.140407OSS/3b83e82/3b83e82/DurabilityService/d_durability.c/476/0/1542897684.262183398
========================================================================================
Report : INFO
Date : qui nov 22 12:41:31 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'durability' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <12507>
Thread : durability 7f4ad8d04700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542897691.677785119
========================================================================================
Report : WARNING
Date : qui nov 22 12:43:27 -02 2018
Description : Did not install signal handlers to cleanup resources.
To ensure cleanup for Java applications, the path to the 'jsig' library
(libjsig.so) must be set in the LD_PRELOAD environment variable.
This library is part of your Java distribution.
To ensure proper cleanup set this before starting your application.
Node : neumann-linux
Process : java <12618>
Thread : main thread 7f1d90ed7700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OS abstraction layer/os_signalHandler.c/107/0/1542897807.981251903
========================================================================================
Report : INFO
Date : qui nov 22 12:43:28 -02 2018
Description : u_domainNew:Database allocated on heap
Node : neumann-linux
Process : java <12618>
Thread : spliced 7f1d74dc1700
Internals : V6.4.140407OSS/3b83e82/3b83e82/user::u_domain::u_domainNew/u_domain.c/706/0/1542897808.017560184
========================================================================================
Report : INFO
Date : qui nov 22 12:43:28 -02 2018
Description : ---------------------------------------------------------------
-- The service is using the following configuration settings --
---------------------------------------------------------------
Domain (id) : ospl_sp_ddsi (0)
Storage : 10240 Kbytes
Storage threshold : 1024 Kbytes
Storage address : Not available
Locking : default
Memory mode : Heap memory
Builtin topics : true
Priority inheritance : false
Node : neumann-linux
Process : java <12618>
Thread : spliced 7f1d74dc1700
Internals : V6.4.140407OSS/3b83e82/3b83e82/The OpenSplice domain service/u_domain.c/827/0/1542897808.029314477
========================================================================================
Report : INFO
Date : qui nov 22 12:43:28 -02 2018
Description : Service cmsoap disabled
Node : neumann-linux
Process : java <12618>
Thread : spliced 7f1d74dc1700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OpenSplice domain service/sr_componentInfo.c/439/0/1542897808.029634449
========================================================================================
Report : INFO
Date : qui nov 22 12:43:28 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'splicedaemon' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <12618>
Thread : spliced 7f1d74dc1700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542897808.044516168
========================================================================================
Report : WARNING
Date : qui nov 22 12:43:28 -02 2018
Description : using network interface wlp1s0 (139.82.153.142) selected arbitrarily from: wlp1s0, virbr0
Node : neumann-linux
Process : java <12618>
Thread : ddsi2 7f1d7459a700
Internals : V6.4.140407OSS/3b83e82/3b83e82/ddsi2/q_nwif.c/668/0/1542897808.050890976
========================================================================================
Report : INFO
Date : qui nov 22 12:43:28 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'ddsi2' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <12618>
Thread : ddsi2 7f1d7459a700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542897808.063800740
========================================================================================
Report : INFO
Date : qui nov 22 12:43:28 -02 2018
Description : The durability service can by identified by ID: 889325703
Node : neumann-linux
Process : java <12618>
Thread : durability 7f1d74909700
Internals : V6.4.140407OSS/3b83e82/3b83e82/DurabilityService/d_durability.c/476/0/1542897808.077248211
========================================================================================
Report : INFO
Date : qui nov 22 12:43:35 -02 2018
Description : ++++++++++++++++++++++++++++++++++++++++++++++++
++ The service 'durability' is now operational.
++++++++++++++++++++++++++++++++++++++++++++++++
Node : neumann-linux
Process : java <12618>
Thread : durability 7f1d74909700
Internals : V6.4.140407OSS/3b83e82/3b83e82/v_serviceChangeState/v_service.c/329/0/1542897815.586216801
========================================================================================
Report : WARNING
Date : qui nov 22 12:43:36 -02 2018
Description : Did not install signal handlers to cleanup resources.
To ensure cleanup for Java applications, the path to the 'jsig' library
(libjsig.so) must be set in the LD_PRELOAD environment variable.
This library is part of your Java distribution.
To ensure proper cleanup set this before starting your application.
Node : neumann-linux
Process : java <12690>
Thread : main thread 7fa218a03700
Internals : V6.4.140407OSS/3b83e82/3b83e82/OS abstraction layer/os_signalHandler.c/107/0/1542897816.019922860
========================================================================================
Report : INFO
Date : qui nov 22 12:43:36 -02 2018
Description : u_domainNew:Database allocated on heap
Node : neumann-linux
Process : java <12690>
Thread : spliced 7fa1fc8ee700
Internals : V6.4.140407OSS/3b83e82/3b83e82/user::u_domain::u_domainNew/u_domain.c/706/0/1542897816.029396361
========================================================================================
Report : INFO