Trace number 4264293

Some explanations

A solver is run under the control of another program named runsolver. runsolver is in charge of imposing the CPU time limit and the memory limit to the solver. It also monitors some information about the process. The trace of the execution of a solver is divided into four (or five) parts:
  1. SOLVER DATA
    This is the output of the solver (stdout and stderr).
    Note that some very long lines in this section may be truncated by your web browser ! In such a case, you may want to use the "Download as text" link to get the trace as a text file.

    When the --timestamp option is passed to the runsolver program, each line output by the solver is prepended with a timestamp which indicates at what time the line was output by the solver. Times are relative to the start of the program, given in seconds. The first timestamp (if present) is estimated CPU time. The last timestamp is wall clock time.

    As some 'v lines' may be very long (sometimes several megabytes), the 'v line' output by your solver may be split on several lines to help limit the size of the trace recorded in the database. In any case, the exact output of your solver is preserved in a trace file.
  2. VERIFIER DATA
    The output of the solver is piped to a verifier program which will search a value line "v " and, if found, will check that the given interpretation satisfies all constraints.
  3. CONVERSION SCRIPT DATA (Optionnal)
    When a conversion script is used, this section shows the messages that were output by the conversion script.
  4. WATCHER DATA
    This is the informations gathered by the runsolver program. It first prints the different limits. There's a first limit on CPU time set to X seconds (see the parameters in the trace). After this time has ellapsed, runsolver sends a SIGTERM and 2 seconds later a SIGKILL to the solver. For safety, there's also another limit set to X+30 seconds which will send a SIGXPU to the solver. The last limit is on the virtual memory used by the process (see the parameters in the trace).
    Every ten seconds, the runsolver process fetches the content of /proc/loadavg, /proc/pid/stat and /proc/pid/statm (see man proc) and prints it as raw data. This is only recorded in case we need to investigate the behaviour of a solver. The memory used by the solver (vsize) is also given every ten seconds.
    When the solver exits, runsolver prints some informations such as status and time. CPU usage is the ratio CPU Time/Real Time.
  5. LAUNCHER DATA
    These informations are related to the script which will launch the solver. The most important informations are the command line given to the solver, the md5sum of the different files and the dump of the /proc/cpuinfo and /proc/meminfo which provides some useful information on the computer.

Solver answer on this benchmark

Solver NameAnswerCPU timeWall clock time
AbsCon-basic 2017-06-11? (exit code) 50.995899 15.6027

General information on the benchmark

NameFischer/Fischer-m1-s1/
Fischer-11-14-fair.xml
MD5SUMabdfed4353cf02606058846107286b36
Bench CategoryCSP (decision problem)
Best result obtained on this benchmark
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark
Satisfiable
(Un)Satisfiability was proved
Number of variables40248
Number of constraints38137
Number of domains3
Minimum domain size2
Maximum domain size20001
Distribution of domain sizes[{"size":2,"count":5342},{"size":201,"count":180},{"size":20001,"count":34726}]
Minimum variable degree2
Maximum variable degree320
Distribution of variable degrees[{"degree":2,"count":35660},{"degree":3,"count":924},{"degree":4,"count":47},{"degree":5,"count":374},{"degree":6,"count":208},{"degree":7,"count":781},{"degree":8,"count":1143},{"degree":9,"count":638},{"degree":10,"count":24},{"degree":12,"count":29},{"degree":13,"count":336},{"degree":14,"count":11},{"degree":24,"count":1},{"degree":35,"count":15},{"degree":57,"count":15},{"degree":59,"count":12},{"degree":70,"count":1},{"degree":80,"count":14},{"degree":125,"count":2},{"degree":126,"count":12},{"degree":320,"count":1}]
Minimum constraint arity1
Maximum constraint arity3
Distribution of constraint arities[{"arity":1,"count":2},{"arity":2,"count":6162},{"arity":3,"count":31973}]
Number of extensional constraints0
Number of intensional constraints38137
Distribution of constraint types[{"type":"intension","count":38137}]
Optimization problemNO
Type of objective

Solver Data

0.21/0.37	
0.21/0.37	AbsCon 2 
0.21/0.37	
3.49/1.41	  Solving XCSP3-instance-4264293-1502321123 as a CSP
3.49/1.41	  Loading variables...
43.94/13.79	java.lang.OutOfMemoryError: Java heap space
43.94/13.79		at utility.Kit.repeat(Kit.java:286)
43.94/13.79		at utility.sets.LinkedSetBase.<init>(LinkedSetBase.java:74)
43.94/13.79		at utility.sets.LinkedSetOrdered.<init>(LinkedSetOrdered.java:130)
43.94/13.79		at utility.sets.LinkedSetOrderedStacked.<init>(LinkedSetOrderedStacked.java:14)
43.94/13.79		at utility.sets.LinkedSetOrderedStackedWithBits.<init>(LinkedSetOrderedStackedWithBits.java:34)
43.94/13.79		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
43.94/13.79		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
43.94/13.79		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
43.94/13.79		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
43.94/13.79		at utility.Reflector.buildObject(Reflector.java:289)
43.94/13.79		at variables.domains.Domain.<init>(Domain.java:348)
43.94/13.79		at variables.domains.DomainRange.<init>(DomainRange.java:29)
43.94/13.79		at variables.AVarInteger.<init>(AVarInteger.java:39)
43.94/13.79		at problem.Problem.buildVarInteger(Problem.java:845)
43.94/13.79		at problem.Problem.buildVarInteger(Problem.java:1)
43.94/13.79		at org.xcsp.modeler.implementation.ProblemIMP.fill(ProblemIMP.java:313)
43.94/13.79		at org.xcsp.modeler.ProblemAPI.array(ProblemAPI.java:1740)
43.94/13.79		at problems.xcsp3.XCSP3.loadArray(XCSP3.java:218)
43.94/13.79		at org.xcsp.parser.XCallbacks.loadVariables(XCallbacks.java:283)
43.94/13.79		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:257)
43.94/13.79		at problems.xcsp3.XCSP3.model(XCSP3.java:103)
43.94/13.79		at org.xcsp.modeler.Compiler.loadDataAndModel(Compiler.java:834)
43.94/13.79		at problem.Problem.<init>(Problem.java:630)
43.94/13.79		at abscon.Resolution.buildProblem(Resolution.java:195)
43.94/13.79		at abscon.Resolution.solveInstance(Resolution.java:277)
43.94/13.79		at abscon.Resolution.run(Resolution.java:325)
43.94/13.79	java.lang.NullPointerException
43.94/13.79		at variables.domains.Domain.computeIdxsAreEqualToVals(Domain.java:117)
43.94/13.79		at variables.domains.DomainRange.<init>(DomainRange.java:35)
43.94/13.79		at variables.AVarInteger.<init>(AVarInteger.java:39)
43.94/13.79		at problem.Problem.buildVarInteger(Problem.java:845)
43.94/13.79		at problem.Problem.buildVarInteger(Problem.java:1)
43.94/13.79		at org.xcsp.modeler.implementation.ProblemIMP.fill(ProblemIMP.java:313)
43.94/13.79		at org.xcsp.modeler.ProblemAPI.array(ProblemAPI.java:1740)
43.94/13.79		at problems.xcsp3.XCSP3.loadArray(XCSP3.java:218)
43.94/13.79		at org.xcsp.parser.XCallbacks.loadVariables(XCallbacks.java:283)
50.58/15.48		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:257)
50.58/15.48		at problems.xcsp3.XCSP3.model(XCSP3.java:103)
50.58/15.48		at org.xcsp.modeler.Compiler.loadDataAndModel(Compiler.java:834)
50.58/15.48		at problem.Problem.<init>(Problem.java:630)
50.58/15.48		at abscon.Resolution.buildProblem(Resolution.java:195)
50.58/15.48		at abscon.Resolution.solveInstance(Resolution.java:277)
50.58/15.48		at abscon.Resolution.run(Resolution.java:325)
50.58/15.48	Problem when parsing the instance. Fix the problem.

Verifier Data

One s line expected

Watcher Data

runsolver Copyright (C) 2010-2013 Olivier ROUSSEL

This is runsolver version 3.3.7 (svn: 2553)

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4264293-1502321123/watcher-4264293-1502321123 -o /tmp/evaluation-result-4264293-1502321123/solver-4264293-1502321123 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node134-1502258125-5061 --watchdog 2580 java -jar HOME/AbsCon-basic.jar HOME/instance-4264293-1502321123.xml 

pid=18474
running on 4 cores: 1,3,5,7

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2550 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 15872000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 15923200 KiB
Current StackSize limit: 8192 KiB


[startup+0 s]
/proc/loadavg: 1.85 1.77 1.84 4/203 18477
/proc/meminfo: memFree=30982620/32770624 swapFree=0/533008
[pid=18477] ppid=18474 vsize=23672 CPUtime=0 cores=1,3,5,7
/proc/18477/stat : 18477 (runsolver) D 18474 18477 31388 0 -1 4202560 107 0 0 0 0 0 0 0 20 0 1 0 79618458 24240128 108 18446744073709551615 4194304 4338465 140723969003664 140723969001304 139867400147671 0 0 1 24578 18446744071580418449 0 0 17 1 0 0 0 0 0 6438912 6441760 18235392 140723969011872 140723969012297 140723969012297 140723969015754 0
/proc/18477/statm: 5918 108 54 36 0 2156 0

[startup+0.100155 s]
/proc/loadavg: 1.85 1.77 1.84 4/203 18477
/proc/meminfo: memFree=30982620/32770624 swapFree=0/533008
[pid=18477] ppid=18474 vsize=23672 CPUtime=0 cores=1,3,5,7
/proc/18477/stat : 18477 (runsolver) D 18474 18477 31388 0 -1 4202560 107 0 0 0 0 0 0 0 20 0 1 0 79618458 24240128 108 18446744073709551615 4194304 4338465 140723969003664 140723969001304 139867400147671 0 0 1 24578 18446744071580418449 0 0 17 1 0 0 0 0 0 6438912 6441760 18235392 140723969011872 140723969012297 140723969012297 140723969015754 0
/proc/18477/statm: 5918 108 54 36 0 2156 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 23672

[startup+0.200317 s]
/proc/loadavg: 1.85 1.77 1.84 4/203 18477
/proc/meminfo: memFree=30982620/32770624 swapFree=0/533008
[pid=18477] ppid=18474 vsize=10484492 CPUtime=0.05 cores=1,3,5,7
/proc/18477/stat : 18477 (java) S 18474 18477 31388 0 -1 1077944320 4671 0 0 0 4 1 0 0 20 0 14 0 79618458 10736119808 5717 18446744073709551615 4194304 4196468 140721179617392 140721179599936 139863439236855 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 10 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
/proc/18477/statm: 2621123 5717 2567 1 0 2610620 0
Current children cumulated CPU time (s) 0.05
Current children cumulated vsize (KiB) 10484492

[startup+0.300329 s]
/proc/loadavg: 1.85 1.77 1.84 4/203 18477
/proc/meminfo: memFree=30982620/32770624 swapFree=0/533008
[pid=18477] ppid=18474 vsize=10551180 CPUtime=0.21 cores=1,3,5,7
/proc/18477/stat : 18477 (java) S 18474 18477 31388 0 -1 1077944320 8591 0 0 0 18 3 0 0 20 0 15 0 79618458 10804408320 8911 18446744073709551615 4194304 4196468 140721179617392 140721179599936 139863439236855 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 10 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
/proc/18477/statm: 2637795 8911 2855 1 0 2627261 0
Current children cumulated CPU time (s) 0.21
Current children cumulated vsize (KiB) 10551180

[startup+0.700588 s]
/proc/loadavg: 1.85 1.77 1.84 4/203 18477
/proc/meminfo: memFree=30982620/32770624 swapFree=0/533008
[pid=18477] ppid=18474 vsize=10621952 CPUtime=1.2 cores=1,3,5,7
/proc/18477/stat : 18477 (java) S 18474 18477 31388 0 -1 1077944320 13325 0 0 0 115 5 0 0 20 0 16 0 79618458 10876878848 25561 18446744073709551615 4194304 4196468 140721179617392 140721179599936 139863439236855 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 10 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
/proc/18477/statm: 2655488 25561 3063 1 0 2644414 0
Current children cumulated CPU time (s) 1.2
Current children cumulated vsize (KiB) 10621952

[startup+1.5016 s]
/proc/loadavg: 1.85 1.77 1.84 5/219 18493
/proc/meminfo: memFree=30780216/32770624 swapFree=0/532908
[pid=18477] ppid=18474 vsize=10621952 CPUtime=3.79 cores=1,3,5,7
/proc/18477/stat : 18477 (java) S 18474 18477 31388 0 -1 1077944320 17532 0 0 0 365 14 0 0 20 0 16 0 79618458 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 140721179599936 139863439236855 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 10 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
/proc/18477/statm: 2655488 61124 3116 1 0 2644414 0
[pid=18477/tid=18479] ppid=18474 vsize=10621952 CPUtime=0.2 cores=1,3,5,7
/proc/18477/task/18479/stat : 18479 (java) S 18474 18477 31388 0 -1 1077944384 6189 0 0 0 18 2 0 0 20 0 16 0 79618470 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139863443479728 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 3 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18480] ppid=18474 vsize=10621952 CPUtime=0.04 cores=1,3,5,7
/proc/18477/task/18480/stat : 18480 (java) S 18474 18477 31388 0 -1 1077944384 73 0 0 0 3 1 0 0 20 0 16 0 79618470 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139863050082832 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18481] ppid=18474 vsize=10621952 CPUtime=0.02 cores=1,3,5,7
/proc/18477/task/18481/stat : 18481 (java) S 18474 18477 31388 0 -1 1077944384 234 0 0 0 2 0 0 0 20 0 16 0 79618470 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139863049030288 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18482] ppid=18474 vsize=10621952 CPUtime=0.04 cores=1,3,5,7
/proc/18477/task/18482/stat : 18482 (java) S 18474 18477 31388 0 -1 1077944384 84 0 0 0 3 1 0 0 20 0 16 0 79618470 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139863047977232 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18483] ppid=18474 vsize=10621952 CPUtime=0.03 cores=1,3,5,7
/proc/18477/task/18483/stat : 18483 (java) S 18474 18477 31388 0 -1 1077944384 36 0 0 0 2 1 0 0 20 0 16 0 79618470 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139863046924688 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18484] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18484/stat : 18484 (java) S 18474 18477 31388 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139863003347696 139863439248002 0 0 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18485] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18485/stat : 18485 (java) S 18474 18477 31388 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139863002293920 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18486] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18486/stat : 18486 (java) S 18474 18477 31388 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139863001240816 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18487] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18487/stat : 18487 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618475 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139863000189392 139863439255451 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18488] ppid=18474 vsize=10621952 CPUtime=0.98 cores=1,3,5,7
/proc/18477/task/18488/stat : 18488 (java) R 18474 18477 31388 0 -1 4202560 2144 0 0 0 98 0 0 0 20 0 16 0 79618475 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139862999118032 139863422733643 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18489] ppid=18474 vsize=10621952 CPUtime=0.94 cores=1,3,5,7
/proc/18477/task/18489/stat : 18489 (java) R 18474 18477 31388 0 -1 4202560 2166 0 0 0 94 0 0 0 20 0 16 0 79618475 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139862998072384 139863422722778 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18490] ppid=18474 vsize=10621952 CPUtime=0.38 cores=1,3,5,7
/proc/18477/task/18490/stat : 18490 (java) S 18474 18477 31388 0 -1 1077944384 2295 0 0 0 37 1 0 0 20 0 16 0 79618475 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139862997030896 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18491] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18491/stat : 18491 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618475 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139862995978592 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18492] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18492/stat : 18492 (java) S 18474 18477 31388 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 16 0 79618479 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139862994926640 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18493] ppid=18474 vsize=10621952 CPUtime=1.06 cores=1,3,5,7
/proc/18477/task/18493/stat : 18493 (java) R 18474 18477 31388 0 -1 4202560 2870 0 0 0 103 3 0 0 20 0 16 0 79618496 10876878848 61124 18446744073709551615 4194304 4196468 140721179617392 139862993869368 139863081319546 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
Current children cumulated CPU time (s) 3.79
Current children cumulated vsize (KiB) 10621952

[startup+3.10855 s]
/proc/loadavg: 1.85 1.77 1.84 2/219 18493
/proc/meminfo: memFree=30364108/32770624 swapFree=0/532908
[pid=18477] ppid=18474 vsize=10621952 CPUtime=7.88 cores=1,3,5,7
/proc/18477/stat : 18477 (java) S 18474 18477 31388 0 -1 1077944320 22423 0 0 0 654 134 0 0 20 0 16 0 79618458 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 140721179599936 139863439236855 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 10 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
/proc/18477/statm: 2655488 380344 3141 1 0 2644414 0
[pid=18477/tid=18479] ppid=18474 vsize=10621952 CPUtime=0.2 cores=1,3,5,7
/proc/18477/task/18479/stat : 18479 (java) S 18474 18477 31388 0 -1 1077944384 6189 0 0 0 18 2 0 0 20 0 16 0 79618470 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139863443479728 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 3 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18480] ppid=18474 vsize=10621952 CPUtime=0.78 cores=1,3,5,7
/proc/18477/task/18480/stat : 18480 (java) R 18474 18477 31388 0 -1 4202560 746 0 0 0 50 28 0 0 20 0 16 0 79618470 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139863050082832 139863424187561 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18481] ppid=18474 vsize=10621952 CPUtime=0.79 cores=1,3,5,7
/proc/18477/task/18481/stat : 18481 (java) R 18474 18477 31388 0 -1 4202560 956 0 0 0 49 30 0 0 20 0 16 0 79618470 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139863049030488 139863420833338 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18482] ppid=18474 vsize=10621952 CPUtime=0.81 cores=1,3,5,7
/proc/18477/task/18482/stat : 18482 (java) R 18474 18477 31388 0 -1 4202560 771 0 0 0 49 32 0 0 20 0 16 0 79618470 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139863047977432 139863420833551 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18483] ppid=18474 vsize=10621952 CPUtime=0.76 cores=1,3,5,7
/proc/18477/task/18483/stat : 18483 (java) R 18474 18477 31388 0 -1 4202560 755 0 0 0 47 29 0 0 20 0 16 0 79618470 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139863046924688 139863423934494 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18484] ppid=18474 vsize=10621952 CPUtime=0.02 cores=1,3,5,7
/proc/18477/task/18484/stat : 18484 (java) S 18474 18477 31388 0 -1 1077944384 998 0 0 0 2 0 0 0 20 0 16 0 79618472 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139863003346016 139863439247061 0 0 1 16800974 18446744071579849748 0 0 -1 1 0 0 9 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18485] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18485/stat : 18485 (java) S 18474 18477 31388 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139863002293984 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18486] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18486/stat : 18486 (java) S 18474 18477 31388 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139863001240832 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18487] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18487/stat : 18487 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618475 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139863000189392 139863439255451 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18488] ppid=18474 vsize=10621952 CPUtime=1.25 cores=1,3,5,7
/proc/18477/task/18488/stat : 18488 (java) S 18474 18477 31388 0 -1 1077944384 2826 0 0 0 124 1 0 0 20 0 16 0 79618475 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139862999136496 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18489] ppid=18474 vsize=10621952 CPUtime=1 cores=1,3,5,7
/proc/18477/task/18489/stat : 18489 (java) S 18474 18477 31388 0 -1 1077944384 2190 0 0 0 100 0 0 0 20 0 16 0 79618475 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139862998083952 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18490] ppid=18474 vsize=10621952 CPUtime=0.42 cores=1,3,5,7
/proc/18477/task/18490/stat : 18490 (java) S 18474 18477 31388 0 -1 1077944384 2371 0 0 0 41 1 0 0 20 0 16 0 79618475 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139862997030896 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18491] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18491/stat : 18491 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618475 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139862995978592 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18492] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18492/stat : 18492 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618479 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139862994926640 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 9 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18493] ppid=18474 vsize=10621952 CPUtime=1.77 cores=1,3,5,7
/proc/18477/task/18493/stat : 18493 (java) S 18474 18477 31388 0 -1 1077944384 3261 0 0 0 170 7 0 0 20 0 16 0 79618496 10876878848 380344 18446744073709551615 4194304 4196468 140721179617392 139862993868032 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
Current children cumulated CPU time (s) 7.88
Current children cumulated vsize (KiB) 10621952

[startup+6.3016 s]
/proc/loadavg: 1.87 1.78 1.84 6/219 18493
/proc/meminfo: memFree=26608548/32770624 swapFree=0/532908
[pid=18477] ppid=18474 vsize=10621952 CPUtime=18.58 cores=1,3,5,7
/proc/18477/stat : 18477 (java) S 18474 18477 31388 0 -1 1077944320 35131 0 0 0 1318 540 0 0 20 0 16 0 79618458 10876878848 1249295 18446744073709551615 4194304 4196468 140721179617392 140721179599936 139863439236855 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 10 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
/proc/18477/statm: 2655488 1249295 3152 1 0 2644414 0
[pid=18477/tid=18479] ppid=18474 vsize=10621952 CPUtime=0.2 cores=1,3,5,7
/proc/18477/task/18479/stat : 18479 (java) S 18474 18477 31388 0 -1 1077944384 6189 0 0 0 18 2 0 0 20 0 16 0 79618470 10876878848 1249295 18446744073709551615 4194304 4196468 140721179617392 139863443479728 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 3 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18480] ppid=18474 vsize=10621952 CPUtime=3.15 cores=1,3,5,7
/proc/18477/task/18480/stat : 18480 (java) R 18474 18477 31388 0 -1 4202560 3858 0 0 0 182 133 0 0 20 0 16 0 79618470 10876878848 1249295 18446744073709551615 4194304 4196468 140721179617392 139863050082720 139863432339572 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18481] ppid=18474 vsize=10621952 CPUtime=3.16 cores=1,3,5,7
/proc/18477/task/18481/stat : 18481 (java) R 18474 18477 31388 0 -1 4202560 2897 0 0 0 193 123 0 0 20 0 16 0 79618470 10876878848 1249295 18446744073709551615 4194304 4196468 140721179617392 139863049030488 139863432339572 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18482] ppid=18474 vsize=10621952 CPUtime=3.18 cores=1,3,5,7
/proc/18477/task/18482/stat : 18482 (java) R 18474 18477 31388 0 -1 4202560 3149 0 0 0 176 142 0 0 20 0 16 0 79618470 10876878848 1249295 18446744073709551615 4194304 4196468 140721179617392 139863047977432 139863432339572 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18483] ppid=18474 vsize=10621952 CPUtime=3.12 cores=1,3,5,7
/proc/18477/task/18483/stat : 18483 (java) R 18474 18477 31388 0 -1 4202560 2986 0 0 0 188 124 0 0 20 0 16 0 79618470 10876878848 1249295 18446744073709551615 4194304 4196468 140721179617392 139863046924888 139863432339923 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18484] ppid=18474 vsize=10621952 CPUtime=0.05 cores=1,3,5,7
/proc/18477/task/18484/stat : 18484 (java) S 18474 18477 31388 0 -1 1077944384 3059 0 0 0 5 0 0 0 20 0 16 0 79618472 10876878848 1249807 18446744073709551615 4194304 4196468 140721179617392 139863003346208 139863439247061 0 0 1 16800974 18446744071579849748 0 0 -1 3 0 0 9 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18485] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18485/stat : 18485 (java) S 18474 18477 31388 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 1249807 18446744073709551615 4194304 4196468 140721179617392 139863002293984 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18486] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18486/stat : 18486 (java) S 18474 18477 31388 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 1249807 18446744073709551615 4194304 4196468 140721179617392 139863001240832 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18487] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18487/stat : 18487 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618475 10876878848 1249807 18446744073709551615 4194304 4196468 140721179617392 139863000189392 139863439255451 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18488] ppid=18474 vsize=10621952 CPUtime=1.41 cores=1,3,5,7
/proc/18477/task/18488/stat : 18488 (java) S 18474 18477 31388 0 -1 1077944384 2840 0 0 0 140 1 0 0 20 0 16 0 79618475 10876878848 1249807 18446744073709551615 4194304 4196468 140721179617392 139862999136496 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18489] ppid=18474 vsize=10621952 CPUtime=1.24 cores=1,3,5,7
/proc/18477/task/18489/stat : 18489 (java) S 18474 18477 31388 0 -1 1077944384 2227 0 0 0 124 0 0 0 20 0 16 0 79618475 10876878848 1249807 18446744073709551615 4194304 4196468 140721179617392 139862998083952 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18490] ppid=18474 vsize=10621952 CPUtime=0.42 cores=1,3,5,7
/proc/18477/task/18490/stat : 18490 (java) S 18474 18477 31388 0 -1 1077944384 2371 0 0 0 41 1 0 0 20 0 16 0 79618475 10876878848 1249807 18446744073709551615 4194304 4196468 140721179617392 139862997030896 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18491] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18491/stat : 18491 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618475 10876878848 1249807 18446744073709551615 4194304 4196468 140721179617392 139862995978592 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18492] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18492/stat : 18492 (java) S 18474 18477 31388 0 -1 1077944384 24 0 0 0 0 0 0 0 20 0 16 0 79618479 10876878848 1249807 18446744073709551615 4194304 4196468 140721179617392 139862994926640 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 9 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18493] ppid=18474 vsize=10621952 CPUtime=2.54 cores=1,3,5,7
/proc/18477/task/18493/stat : 18493 (java) S 18474 18477 31388 0 -1 1077944384 4174 0 0 0 246 8 0 0 20 0 16 0 79618496 10876878848 1249807 18446744073709551615 4194304 4196468 140721179617392 139862993870432 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
Current children cumulated CPU time (s) 18.58
Current children cumulated vsize (KiB) 10621952

[startup+12.7008 s]
/proc/loadavg: 2.12 1.83 1.86 6/219 18493
/proc/meminfo: memFree=22667612/32770624 swapFree=0/532904
[pid=18477] ppid=18474 vsize=10621952 CPUtime=40.18 cores=1,3,5,7
/proc/18477/stat : 18477 (java) S 18474 18477 31388 0 -1 1077944320 52795 0 0 0 3143 875 0 0 20 0 16 0 79618458 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 140721179599936 139863439236855 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 10 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
/proc/18477/statm: 2655488 2077590 3152 1 0 2644414 0
[pid=18477/tid=18479] ppid=18474 vsize=10621952 CPUtime=0.2 cores=1,3,5,7
/proc/18477/task/18479/stat : 18479 (java) S 18474 18477 31388 0 -1 1077944384 6189 0 0 0 18 2 0 0 20 0 16 0 79618470 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863443479728 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 3 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18480] ppid=18474 vsize=10621952 CPUtime=8.22 cores=1,3,5,7
/proc/18477/task/18480/stat : 18480 (java) S 18474 18477 31388 0 -1 1077944384 6177 0 0 0 601 221 0 0 20 0 16 0 79618470 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863050082832 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18481] ppid=18474 vsize=10621952 CPUtime=8.21 cores=1,3,5,7
/proc/18477/task/18481/stat : 18481 (java) S 18474 18477 31388 0 -1 1077944384 6326 0 0 0 592 229 0 0 20 0 16 0 79618470 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863049030288 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18482] ppid=18474 vsize=10621952 CPUtime=8.27 cores=1,3,5,7
/proc/18477/task/18482/stat : 18482 (java) S 18474 18477 31388 0 -1 1077944384 5395 0 0 0 624 203 0 0 20 0 16 0 79618470 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863047977232 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18483] ppid=18474 vsize=10621952 CPUtime=8.25 cores=1,3,5,7
/proc/18477/task/18483/stat : 18483 (java) S 18474 18477 31388 0 -1 1077944384 6426 0 0 0 621 204 0 0 20 0 16 0 79618470 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863046924688 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18484] ppid=18474 vsize=10621952 CPUtime=0.35 cores=1,3,5,7
/proc/18477/task/18484/stat : 18484 (java) R 18474 18477 31388 0 -1 4202560 8934 0 0 0 35 0 0 0 20 0 16 0 79618472 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863003346016 139863424232923 0 0 1 16800974 0 0 0 -1 1 0 0 9 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18485] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18485/stat : 18485 (java) S 18474 18477 31388 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863002293984 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18486] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18486/stat : 18486 (java) S 18474 18477 31388 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863001240832 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18487] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18487/stat : 18487 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618475 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863000189392 139863439255451 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18488] ppid=18474 vsize=10621952 CPUtime=1.41 cores=1,3,5,7
/proc/18477/task/18488/stat : 18488 (java) S 18474 18477 31388 0 -1 1077944384 2842 0 0 0 140 1 0 0 20 0 16 0 79618475 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139862999136496 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18489] ppid=18474 vsize=10621952 CPUtime=1.24 cores=1,3,5,7
/proc/18477/task/18489/stat : 18489 (java) S 18474 18477 31388 0 -1 1077944384 2229 0 0 0 124 0 0 0 20 0 16 0 79618475 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139862998083952 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18490] ppid=18474 vsize=10621952 CPUtime=0.42 cores=1,3,5,7
/proc/18477/task/18490/stat : 18490 (java) S 18474 18477 31388 0 -1 1077944384 2375 0 0 0 41 1 0 0 20 0 16 0 79618475 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139862997030896 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18491] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18491/stat : 18491 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618475 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139862995978592 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18492] ppid=18474 vsize=10621952 CPUtime=0.01 cores=1,3,5,7
/proc/18477/task/18492/stat : 18492 (java) S 18474 18477 31388 0 -1 1077944384 24 0 0 0 0 1 0 0 20 0 16 0 79618479 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139862994926640 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 9 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18493] ppid=18474 vsize=10621952 CPUtime=3.5 cores=1,3,5,7
/proc/18477/task/18493/stat : 18493 (java) S 18474 18477 31388 0 -1 1077944384 4519 0 0 0 342 8 0 0 20 0 16 0 79618496 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139862993867440 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
Current children cumulated CPU time (s) 40.18
Current children cumulated vsize (KiB) 10621952

Solver just ended.
??? exit watcher main loop
??? sigkill at end of watcher main loop
??? kill 18477 sig 9
??? end of watcher thread
Dumping a history of the last processes samples

[startup+12.8016 s]
/proc/loadavg: 2.12 1.83 1.86 6/219 18493
/proc/meminfo: memFree=22667612/32770624 swapFree=0/532904
[pid=18477] ppid=18474 vsize=10621952 CPUtime=40.56 cores=1,3,5,7
/proc/18477/stat : 18477 (java) S 18474 18477 31388 0 -1 1077944320 52797 0 0 0 3181 875 0 0 20 0 16 0 79618458 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 140721179599936 139863439236855 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 10 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
/proc/18477/statm: 2655488 2077590 3152 1 0 2644414 0
[pid=18477/tid=18479] ppid=18474 vsize=10621952 CPUtime=0.2 cores=1,3,5,7
/proc/18477/task/18479/stat : 18479 (java) S 18474 18477 31388 0 -1 1077944384 6189 0 0 0 18 2 0 0 20 0 16 0 79618470 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863443479728 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 3 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18480] ppid=18474 vsize=10621952 CPUtime=8.31 cores=1,3,5,7
/proc/18477/task/18480/stat : 18480 (java) R 18474 18477 31388 0 -1 4202560 6177 0 0 0 610 221 0 0 20 0 16 0 79618470 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863050082640 139863431865063 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18481] ppid=18474 vsize=10621952 CPUtime=8.3 cores=1,3,5,7
/proc/18477/task/18481/stat : 18481 (java) R 18474 18477 31388 0 -1 4202560 6326 0 0 0 601 229 0 0 20 0 16 0 79618470 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863049030096 139863431865063 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18482] ppid=18474 vsize=10621952 CPUtime=8.37 cores=1,3,5,7
/proc/18477/task/18482/stat : 18482 (java) R 18474 18477 31388 0 -1 4202560 5395 0 0 0 634 203 0 0 20 0 16 0 79618470 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863047977432 139863432339874 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18483] ppid=18474 vsize=10621952 CPUtime=8.34 cores=1,3,5,7
/proc/18477/task/18483/stat : 18483 (java) R 18474 18477 31388 0 -1 4202560 6426 0 0 0 630 204 0 0 20 0 16 0 79618470 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863046924496 139863431865063 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18484] ppid=18474 vsize=10621952 CPUtime=0.35 cores=1,3,5,7
/proc/18477/task/18484/stat : 18484 (java) S 18474 18477 31388 0 -1 1077944384 8936 0 0 0 35 0 0 0 20 0 16 0 79618472 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863003346240 139863439247061 0 0 1 16800974 18446744071579849748 0 0 -1 1 0 0 9 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18485] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18485/stat : 18485 (java) S 18474 18477 31388 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863002293984 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18486] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18486/stat : 18486 (java) S 18474 18477 31388 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863001240832 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18487] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18487/stat : 18487 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618475 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139863000189392 139863439255451 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18488] ppid=18474 vsize=10621952 CPUtime=1.41 cores=1,3,5,7
/proc/18477/task/18488/stat : 18488 (java) S 18474 18477 31388 0 -1 1077944384 2842 0 0 0 140 1 0 0 20 0 16 0 79618475 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139862999136496 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18489] ppid=18474 vsize=10621952 CPUtime=1.24 cores=1,3,5,7
/proc/18477/task/18489/stat : 18489 (java) S 18474 18477 31388 0 -1 1077944384 2229 0 0 0 124 0 0 0 20 0 16 0 79618475 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139862998083952 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18490] ppid=18474 vsize=10621952 CPUtime=0.42 cores=1,3,5,7
/proc/18477/task/18490/stat : 18490 (java) S 18474 18477 31388 0 -1 1077944384 2375 0 0 0 41 1 0 0 20 0 16 0 79618475 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139862997030896 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18491] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18491/stat : 18491 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618475 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139862995978592 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18492] ppid=18474 vsize=10621952 CPUtime=0.01 cores=1,3,5,7
/proc/18477/task/18492/stat : 18492 (java) S 18474 18477 31388 0 -1 1077944384 24 0 0 0 0 1 0 0 20 0 16 0 79618479 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139862994926640 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 9 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18493] ppid=18474 vsize=10621952 CPUtime=3.5 cores=1,3,5,7
/proc/18477/task/18493/stat : 18493 (java) S 18474 18477 31388 0 -1 1077944384 4519 0 0 0 342 8 0 0 20 0 16 0 79618496 10876878848 2077590 18446744073709551615 4194304 4196468 140721179617392 139862993867440 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
Current children cumulated CPU time (s) 40.56
Current children cumulated vsize (KiB) 10621952

[startup+14.4086 s]
/proc/loadavg: 2.12 1.83 1.86 6/219 18493
/proc/meminfo: memFree=22667116/32770624 swapFree=0/532904
[pid=18477] ppid=18474 vsize=10621952 CPUtime=46.59 cores=1,3,5,7
/proc/18477/stat : 18477 (java) S 18474 18477 31388 0 -1 1077944320 53015 0 0 0 3781 878 0 0 20 0 16 0 79618458 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 140721179599936 139863439236855 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 10 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
/proc/18477/statm: 2655488 2077664 3152 1 0 2644414 0
[pid=18477/tid=18479] ppid=18474 vsize=10621952 CPUtime=0.2 cores=1,3,5,7
/proc/18477/task/18479/stat : 18479 (java) S 18474 18477 31388 0 -1 1077944384 6189 0 0 0 18 2 0 0 20 0 16 0 79618470 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139863443479728 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 3 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18480] ppid=18474 vsize=10621952 CPUtime=9.78 cores=1,3,5,7
/proc/18477/task/18480/stat : 18480 (java) R 18474 18477 31388 0 -1 4202560 6187 0 0 0 756 222 0 0 20 0 16 0 79618470 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139863050082720 139863432339869 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18481] ppid=18474 vsize=10621952 CPUtime=9.78 cores=1,3,5,7
/proc/18477/task/18481/stat : 18481 (java) R 18474 18477 31388 0 -1 4202560 6340 0 0 0 748 230 0 0 20 0 16 0 79618470 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139863049030488 139863432339848 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18482] ppid=18474 vsize=10621952 CPUtime=9.86 cores=1,3,5,7
/proc/18477/task/18482/stat : 18482 (java) R 18474 18477 31388 0 -1 4202560 5422 0 0 0 783 203 0 0 20 0 16 0 79618470 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139863047977432 139863432339834 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18483] ppid=18474 vsize=10621952 CPUtime=9.82 cores=1,3,5,7
/proc/18477/task/18483/stat : 18483 (java) R 18474 18477 31388 0 -1 4202560 6455 0 0 0 777 205 0 0 20 0 16 0 79618470 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139863046924888 139863432339834 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18484] ppid=18474 vsize=10621952 CPUtime=0.45 cores=1,3,5,7
/proc/18477/task/18484/stat : 18484 (java) S 18474 18477 31388 0 -1 1077944384 8955 0 0 0 45 0 0 0 20 0 16 0 79618472 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139863003346240 139863439247061 0 0 1 16800974 18446744071579849748 0 0 -1 7 0 0 9 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18485] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18485/stat : 18485 (java) S 18474 18477 31388 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139863002293984 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18486] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18486/stat : 18486 (java) S 18474 18477 31388 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139863001240832 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18487] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18487/stat : 18487 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618475 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139863000189392 139863439255451 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18488] ppid=18474 vsize=10621952 CPUtime=1.41 cores=1,3,5,7
/proc/18477/task/18488/stat : 18488 (java) S 18474 18477 31388 0 -1 1077944384 2842 0 0 0 140 1 0 0 20 0 16 0 79618475 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139862999136496 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18489] ppid=18474 vsize=10621952 CPUtime=1.24 cores=1,3,5,7
/proc/18477/task/18489/stat : 18489 (java) S 18474 18477 31388 0 -1 1077944384 2229 0 0 0 124 0 0 0 20 0 16 0 79618475 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139862998083952 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18490] ppid=18474 vsize=10621952 CPUtime=0.42 cores=1,3,5,7
/proc/18477/task/18490/stat : 18490 (java) S 18474 18477 31388 0 -1 1077944384 2442 0 0 0 41 1 0 0 20 0 16 0 79618475 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139862997027344 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18491] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18491/stat : 18491 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618475 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139862995978592 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18492] ppid=18474 vsize=10621952 CPUtime=0.01 cores=1,3,5,7
/proc/18477/task/18492/stat : 18492 (java) S 18474 18477 31388 0 -1 1077944384 24 0 0 0 0 1 0 0 20 0 16 0 79618479 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139862994926640 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 9 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18493] ppid=18474 vsize=10621952 CPUtime=3.51 cores=1,3,5,7
/proc/18477/task/18493/stat : 18493 (java) S 18474 18477 31388 0 -1 1077944384 4571 0 0 0 343 8 0 0 20 0 16 0 79618496 10876878848 2077664 18446744073709551615 4194304 4196468 140721179617392 139862993870784 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
Current children cumulated CPU time (s) 46.59
Current children cumulated vsize (KiB) 10621952

[startup+15.2016 s]
/proc/loadavg: 2.12 1.83 1.86 6/219 18493
/proc/meminfo: memFree=22667116/32770624 swapFree=0/532904
[pid=18477] ppid=18474 vsize=10621952 CPUtime=49.76 cores=1,3,5,7
/proc/18477/stat : 18477 (java) S 18474 18477 31388 0 -1 1077944320 53133 0 0 0 4098 878 0 0 20 0 16 0 79618458 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 140721179599936 139863439236855 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 10 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
/proc/18477/statm: 2655488 2077715 3152 1 0 2644414 0
[pid=18477/tid=18479] ppid=18474 vsize=10621952 CPUtime=0.2 cores=1,3,5,7
/proc/18477/task/18479/stat : 18479 (java) S 18474 18477 31388 0 -1 1077944384 6189 0 0 0 18 2 0 0 20 0 16 0 79618470 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139863443479728 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 3 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18480] ppid=18474 vsize=10621952 CPUtime=10.57 cores=1,3,5,7
/proc/18477/task/18480/stat : 18480 (java) R 18474 18477 31388 0 -1 4202560 6215 0 0 0 835 222 0 0 20 0 16 0 79618470 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139863050082720 139863432339827 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18481] ppid=18474 vsize=10621952 CPUtime=10.57 cores=1,3,5,7
/proc/18477/task/18481/stat : 18481 (java) R 18474 18477 31388 0 -1 4202560 6369 0 0 0 827 230 0 0 20 0 16 0 79618470 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139863049030488 139863432339841 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18482] ppid=18474 vsize=10621952 CPUtime=10.66 cores=1,3,5,7
/proc/18477/task/18482/stat : 18482 (java) R 18474 18477 31388 0 -1 4202560 5452 0 0 0 863 203 0 0 20 0 16 0 79618470 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139863047977432 139863432339841 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18483] ppid=18474 vsize=10621952 CPUtime=10.61 cores=1,3,5,7
/proc/18477/task/18483/stat : 18483 (java) R 18474 18477 31388 0 -1 4202560 6486 0 0 0 856 205 0 0 20 0 16 0 79618470 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139863046924888 139863423937104 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18484] ppid=18474 vsize=10621952 CPUtime=0.45 cores=1,3,5,7
/proc/18477/task/18484/stat : 18484 (java) S 18474 18477 31388 0 -1 1077944384 8955 0 0 0 45 0 0 0 20 0 16 0 79618472 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139863003346240 139863439247061 0 0 1 16800974 18446744071579849748 0 0 -1 7 0 0 9 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18485] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18485/stat : 18485 (java) S 18474 18477 31388 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139863002293984 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18486] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18486/stat : 18486 (java) S 18474 18477 31388 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 16 0 79618472 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139863001240832 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18487] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18487/stat : 18487 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618475 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139863000189392 139863439255451 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18488] ppid=18474 vsize=10621952 CPUtime=1.41 cores=1,3,5,7
/proc/18477/task/18488/stat : 18488 (java) S 18474 18477 31388 0 -1 1077944384 2842 0 0 0 140 1 0 0 20 0 16 0 79618475 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139862999136496 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18489] ppid=18474 vsize=10621952 CPUtime=1.24 cores=1,3,5,7
/proc/18477/task/18489/stat : 18489 (java) S 18474 18477 31388 0 -1 1077944384 2229 0 0 0 124 0 0 0 20 0 16 0 79618475 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139862998083952 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18490] ppid=18474 vsize=10621952 CPUtime=0.42 cores=1,3,5,7
/proc/18477/task/18490/stat : 18490 (java) S 18474 18477 31388 0 -1 1077944384 2442 0 0 0 41 1 0 0 20 0 16 0 79618475 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139862997027344 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18491] ppid=18474 vsize=10621952 CPUtime=0 cores=1,3,5,7
/proc/18477/task/18491/stat : 18491 (java) S 18474 18477 31388 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 79618475 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139862995978592 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18492] ppid=18474 vsize=10621952 CPUtime=0.01 cores=1,3,5,7
/proc/18477/task/18492/stat : 18492 (java) S 18474 18477 31388 0 -1 1077944384 24 0 0 0 0 1 0 0 20 0 16 0 79618479 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139862994926640 139863439248002 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 9 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
[pid=18477/tid=18493] ppid=18474 vsize=10621952 CPUtime=3.51 cores=1,3,5,7
/proc/18477/task/18493/stat : 18493 (java) S 18474 18477 31388 0 -1 1077944384 4571 0 0 0 343 8 0 0 20 0 16 0 79618496 10876878848 2077715 18446744073709551615 4194304 4196468 140721179617392 139862993870784 139863439247061 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 32505856 140721179619789 140721179619918 140721179619918 140721179623375 0
Current children cumulated CPU time (s) 49.76
Current children cumulated vsize (KiB) 10621952

[startup+15.6007 s]
/proc/loadavg: 2.35 1.88 1.87 7/219 18493
/proc/meminfo: memFree=22667116/32770624 swapFree=0/532904
[pid=18477] ppid=18474 vsize=0 CPUtime=50.98 cores=1,3,5,7
/proc/18477/stat : 18477 (java) Z 18474 18477 31388 0 -1 4228108 53668 0 0 0 4217 881 0 0 20 0 2 0 79618458 0 0 18446744073709551615 0 0 0 0 0 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 10 0 0 0 0 0 0 0 0 0 0
/proc/18477/statm: 0 0 0 0 0 0 0
[pid=18477/tid=18493] ppid=18474 vsize=0 CPUtime=3.55 cores=1,3,5,7
/proc/18477/task/18493/stat : 18493 (java) R 18474 18477 31388 0 -1 4203588 4581 0 0 0 343 12 0 0 20 0 2 0 79618496 0 0 18446744073709551615 0 0 0 0 0 0 4 1 16800974 18446744073709551615 0 0 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Current children cumulated CPU time (s) 50.98
Current children cumulated vsize (KiB) 0

Child status: 1
Real time (s): 15.6027
CPU time (s): 50.9959
CPU user time (s): 42.1791
CPU system time (s): 8.81682
CPU usage (%): 326.84
Max. virtual memory (cumulated for all children) (KiB): 10688516

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 42.1791
system time used= 8.81682
maximum resident set size= 8311552
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 53668
page faults= 0
swaps= 0
block input operations= 0
block output operations= 112
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 2710
involuntary context switches= 463

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.095653 second user time and 0.106281 second system time

The end

Launcher Data

Begin job on node134 at 2017-08-10 01:11:26
IDJOB=4264293
IDBENCH=139180
IDSOLVER=2652
FILE ID=node134/4264293-1502321123
RUNJOBID= node134-1502258125-5061
PBS_JOBID= 
Free space on /tmp= 62020 MiB

SOLVER NAME= AbsCon-basic 2017-06-11
BENCH NAME= XCSP17/Fischer/Fischer-m1-s1/Fischer-11-14-fair.xml
COMMAND LINE= java -jar HOME/AbsCon-basic.jar BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4264293-1502321123/watcher-4264293-1502321123 -o /tmp/evaluation-result-4264293-1502321123/solver-4264293-1502321123 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node134-1502258125-5061 --watchdog 2580  java -jar HOME/AbsCon-basic.jar HOME/instance-4264293-1502321123.xml

TIME LIMIT= 2520 seconds
MEMORY LIMIT= 15500 MiB
NBCORE= 4

MD5SUM BENCH= abdfed4353cf02606058846107286b36
RANDOM SEED=879103680

node134.alineos.net Linux 3.10.0-514.16.1.el7.x86_64 #1 SMP Wed Apr 12 15:04:24 UTC 2017

/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor:
performance

/proc/cpuinfo:
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.43
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 16
initial apicid	: 16
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 2
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.43
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 3
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 18
initial apicid	: 18
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 4
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 4
initial apicid	: 4
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.43
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 5
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 20
initial apicid	: 20
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 6
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 6
initial apicid	: 6
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.43
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 7
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 22
initial apicid	: 22
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        30982620 kB
MemAvailable:   31848180 kB
Buffers:          262812 kB
Cached:           897576 kB
SwapCached:            0 kB
Active:           790500 kB
Inactive:         564232 kB
Active(anon):     196312 kB
Inactive(anon):    31224 kB
Active(file):     594188 kB
Inactive(file):   533008 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              9572 kB
Writeback:             4 kB
AnonPages:        193872 kB
Mapped:            60208 kB
Shmem:             33468 kB
Slab:             135116 kB
SReclaimable:     108396 kB
SUnreclaim:        26720 kB
KernelStack:        3568 kB
PageTables:         6044 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1050284 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      354332 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:     86016 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      101760 kB
DirectMap2M:    33443840 kB

Free space on /tmp at the end= 62012 MiB
End job on node134 at 2017-08-10 01:11:42