Trace number 4262361

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
Concrete 3.4? (TO) 2520.6799 2502.9399

General information on the benchmark

NameKnights/Knights-m1-s1/
Knights-100-05.xml
MD5SUM49715548d1d786de52e060044cf6008a
Bench CategoryCSP (decision problem)
Best result obtained on this benchmarkUNSAT
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark528.938
Satisfiable
(Un)Satisfiability was proved
Number of variables5
Number of constraints10
Number of domains1
Minimum domain size10000
Maximum domain size10000
Distribution of domain sizes[{"size":10000,"count":5}]
Minimum variable degree3
Maximum variable degree3
Distribution of variable degrees[{"degree":3,"count":5}]
Minimum constraint arity2
Maximum constraint arity2
Distribution of constraint arities[{"arity":2,"count":10}]
Number of extensional constraints0
Number of intensional constraints10
Distribution of constraint types[{"type":"intension","count":10}]
Optimization problemNO
Type of objective

Solver Data

3.26/2.40	c Concrete v3.4 running
2520.62/2502.91	java.util.concurrent.TimeoutException
2520.62/2502.91		at concrete.MAC.mac(MAC.scala:74)
2520.62/2502.91		at concrete.MAC.$anonfun$oneRun$1(MAC.scala:145)
2520.62/2502.91		at scala.util.Try$.apply(Try.scala:209)
2520.62/2502.91		at cspom.StatisticsManager$.$anonfun$measure$1(StatisticsManager.scala:194)
2520.62/2502.91		at cspom.StatisticsManager$.$anonfun$measureTry$1(StatisticsManager.scala:182)
2520.62/2502.91		at scala.runtime.java8.JFunction0$mcZ$sp.apply(JFunction0$mcZ$sp.java:12)
2520.62/2502.91		at org.scalameter.MeasureBuilder.$anonfun$measure$1(MeasureBuilder.scala:61)
2520.62/2502.91		at org.scalameter.Measurer$Default.measure(Measurer.scala:131)
2520.62/2502.91		at org.scalameter.MeasureBuilder.measureWith(MeasureBuilder.scala:51)
2520.62/2502.91		at org.scalameter.MeasureBuilder.measure(MeasureBuilder.scala:61)
2520.62/2502.91		at cspom.StatisticsManager$.measureTry(StatisticsManager.scala:181)
2520.62/2502.91		at cspom.StatisticsManager$.measure(StatisticsManager.scala:194)
2520.62/2502.91		at concrete.MAC.oneRun(MAC.scala:146)
2520.62/2502.91		at concrete.MAC.nextSolution(MAC.scala:166)
2520.62/2502.91		at concrete.MAC.$anonfun$nextSolution$2(MAC.scala:196)
2520.62/2502.91		at concrete.ProblemState.map(ProblemState.scala:203)
2520.62/2502.91		at concrete.ProblemState.map(ProblemState.scala:188)
2520.62/2502.91		at concrete.MAC.nextSolution(MAC.scala:195)
2520.62/2502.91		at concrete.Solver.hasNext(Solver.scala:202)
2520.62/2502.91		at scala.collection.Iterator.toStream(Iterator.scala:1403)
2520.62/2502.91		at scala.collection.Iterator.toStream$(Iterator.scala:1402)
2520.62/2502.91		at concrete.Solver.toStream(Solver.scala:73)
2520.62/2502.91		at scala.collection.TraversableOnce.toIterable(TraversableOnce.scala:296)
2520.62/2502.91		at scala.collection.TraversableOnce.toIterable$(TraversableOnce.scala:296)
2520.62/2502.91		at concrete.Solver.toIterable(Solver.scala:73)
2520.62/2502.91		at concrete.runner.ConcreteRunner.$anonfun$run$10(ConcreteRunner.scala:162)
2520.62/2502.91		at scala.util.Success.$anonfun$map$1(Try.scala:251)
2520.62/2502.91		at scala.util.Success.map(Try.scala:209)
2520.62/2502.91		at concrete.runner.ConcreteRunner.run(ConcreteRunner.scala:154)
2520.62/2502.91		at concrete.runner.ConcreteRunner.run$(ConcreteRunner.scala:72)
2520.62/2502.91		at concrete.runner.XCSP3Concrete$.run(XCSP3Concrete.scala:17)
2520.62/2502.91		at concrete.runner.XCSP3Concrete$.delayedEndpoint$concrete$runner$XCSP3Concrete$1(XCSP3Concrete.scala:119)
2520.62/2502.91		at concrete.runner.XCSP3Concrete$delayedInit$body.apply(XCSP3Concrete.scala:17)
2520.62/2502.91		at scala.Function0.apply$mcV$sp(Function0.scala:34)
2520.62/2502.91		at scala.Function0.apply$mcV$sp$(Function0.scala:34)
2520.62/2502.91		at scala.runtime.AbstractFunction0.apply$mcV$sp(AbstractFunction0.scala:12)
2520.62/2502.91		at scala.App.$anonfun$main$1$adapted(App.scala:76)
2520.62/2502.91		at scala.collection.immutable.List.foreach(List.scala:389)
2520.62/2502.91		at scala.App.main(App.scala:76)
2520.62/2502.91		at scala.App.main$(App.scala:74)
2520.62/2502.91		at concrete.runner.XCSP3Concrete$.main(XCSP3Concrete.scala:17)
2520.62/2502.91		at concrete.runner.XCSP3Concrete.main(XCSP3Concrete.scala)
2520.62/2502.92	s UNKNOWN

Verifier Data


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-4262361-1502424645/watcher-4262361-1502424645 -o /tmp/evaluation-result-4262361-1502424645/solver-4262361-1502424645 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node133-1502411423-4884 --watchdog 2580 bin/concrete HOME/instance-4262361-1502424645.xml 

pid=7733
running on 4 cores: 0,2,4,6

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.88 1.69 1.67 2/197 7736
/proc/meminfo: memFree=27042900/32770624 swapFree=0/425264
[pid=7736] ppid=7733 vsize=23672 CPUtime=0 cores=0,2,4,6
/proc/7736/stat : 7736 (runsolver) D 7733 7736 4821 0 -1 4202560 108 0 0 0 0 0 0 0 20 0 1 0 90279743 24240128 106 18446744073709551615 4194304 4338465 140725812672640 140725812670280 140410981671639 0 0 1 24578 18446744071580418449 0 0 17 6 0 0 0 0 0 6438912 6441760 16252928 140725812678865 140725812679241 140725812679241 140725812682698 0
/proc/7736/statm: 5918 106 53 36 0 2156 0

[startup+0.100063 s]
/proc/loadavg: 1.88 1.69 1.67 2/197 7736
/proc/meminfo: memFree=27042900/32770624 swapFree=0/425264
[pid=7736] ppid=7733 vsize=9508 CPUtime=0 cores=0,2,4,6
/proc/7736/stat : 7736 (bash) S 7733 7736 4821 0 -1 4202496 683 1544 0 0 0 0 0 0 20 0 1 0 90279743 9736192 351 18446744073709551615 4194304 5098028 140723123416592 140723123414232 139685334203392 0 0 5 65536 18446744071580971376 0 0 17 2 0 0 9 0 0 7196144 7232144 38117376 140723123421716 140723123421801 140723123421801 140723123425258 0
/proc/7736/statm: 2377 351 278 221 0 86 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9508

[startup+0.200258 s]
/proc/loadavg: 1.88 1.69 1.67 2/197 7736
/proc/meminfo: memFree=27042900/32770624 swapFree=0/425264
[pid=7736] ppid=7733 vsize=9636 CPUtime=0.01 cores=0,2,4,6
/proc/7736/stat : 7736 (bash) S 7733 7736 4821 0 -1 4202496 892 6485 0 0 0 0 0 1 20 0 1 0 90279743 9867264 377 18446744073709551615 4194304 5098028 140723123416592 140723123410600 139685334203392 0 0 5 65536 18446744071580971376 0 0 17 2 0 0 9 0 0 7196144 7232144 38117376 140723123421716 140723123421801 140723123421801 140723123425258 0
/proc/7736/statm: 2409 377 296 221 0 118 0
Current children cumulated CPU time (s) 0.01
Current children cumulated vsize (KiB) 9636

[startup+0.300346 s]
/proc/loadavg: 1.88 1.69 1.67 2/197 7736
/proc/meminfo: memFree=27042900/32770624 swapFree=0/425264
[pid=7736] ppid=7733 vsize=13907308 CPUtime=0.14 cores=0,2,4,6
/proc/7736/stat : 7736 (java) S 7733 7736 4821 0 -1 1077944320 5784 12767 0 0 5 1 5 3 20 0 14 0 90279743 14241083392 5968 18446744073709551615 4194304 4196468 140737094553632 140737094536176 140355808284407 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 9 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
/proc/7736/statm: 3476827 5968 2558 1 0 3466324 0
Current children cumulated CPU time (s) 0.14
Current children cumulated vsize (KiB) 13907308

[startup+0.708444 s]
/proc/loadavg: 1.88 1.69 1.67 2/197 7736
/proc/meminfo: memFree=27042900/32770624 swapFree=0/425264
[pid=7736] ppid=7733 vsize=13974784 CPUtime=0.71 cores=0,2,4,6
/proc/7736/stat : 7736 (java) S 7733 7736 4821 0 -1 1077944320 13901 12767 0 0 59 4 5 3 20 0 15 0 90279743 14310178816 15313 18446744073709551615 4194304 4196468 140737094553632 140737094536176 140355808284407 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 9 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
/proc/7736/statm: 3493696 15313 3104 1 0 3482965 0
Current children cumulated CPU time (s) 0.71
Current children cumulated vsize (KiB) 13974784

[startup+1.50592 s]
/proc/loadavg: 1.88 1.69 1.67 3/212 7799
/proc/meminfo: memFree=26938512/32770624 swapFree=0/425836
[pid=7736] ppid=7733 vsize=13985408 CPUtime=1.91 cores=0,2,4,6
/proc/7736/stat : 7736 (java) S 7733 7736 4821 0 -1 1077944320 26398 12767 0 0 173 10 5 3 20 0 15 0 90279743 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140737094536176 140355808284407 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 9 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
/proc/7736/statm: 3496352 40614 3366 1 0 3485525 0
[pid=7736/tid=7786] ppid=7733 vsize=13985408 CPUtime=1.31 cores=0,2,4,6
/proc/7736/task/7786/stat : 7786 (java) S 7733 7736 4821 0 -1 1077944384 20347 12767 0 0 117 6 5 3 20 0 15 0 90279765 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140355812505456 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 2 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7787] ppid=7733 vsize=13985408 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7787/stat : 7787 (java) R 7733 7736 4821 0 -1 4202560 32 12767 0 0 0 0 5 3 20 0 15 0 90279765 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140355408497808 140355801380880 0 4 1 16800974 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7788] ppid=7733 vsize=13985408 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7788/stat : 7788 (java) R 7733 7736 4821 0 -1 4202560 193 12767 0 0 0 0 5 3 20 0 15 0 90279765 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140355407445008 140355801389100 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7789] ppid=7733 vsize=13985408 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7789/stat : 7789 (java) R 7733 7736 4821 0 -1 4202560 37 12767 0 0 0 0 5 3 20 0 15 0 90279765 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140355406392208 140355792741792 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7790] ppid=7733 vsize=13985408 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7790/stat : 7790 (java) R 7733 7736 4821 0 -1 1077944384 35 12767 0 0 0 0 5 3 20 0 15 0 90279765 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140355405339408 140355808294613 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7791] ppid=7733 vsize=13985408 CPUtime=0.09 cores=0,2,4,6
/proc/7736/task/7791/stat : 7791 (java) S 7733 7736 4821 0 -1 1077944384 649 12767 0 0 1 0 5 3 20 0 15 0 90279767 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140354725073824 140355808294613 0 0 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7792] ppid=7733 vsize=13985408 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7792/stat : 7792 (java) S 7733 7736 4821 0 -1 1077944384 33 12767 0 0 0 0 5 3 20 0 15 0 90279767 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140354724021280 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7793] ppid=7733 vsize=13985408 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7793/stat : 7793 (java) S 7733 7736 4821 0 -1 1077944384 21 12767 0 0 0 0 5 3 20 0 15 0 90279767 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140354722968432 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7794] ppid=7733 vsize=13985408 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7794/stat : 7794 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 15 0 90279770 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140354721916752 140355808303003 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7795] ppid=7733 vsize=13985408 CPUtime=0.2 cores=0,2,4,6
/proc/7736/task/7795/stat : 7795 (java) S 7733 7736 4821 0 -1 1077944384 974 12767 0 0 12 0 5 3 20 0 15 0 90279770 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140354720865136 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7796] ppid=7733 vsize=13985408 CPUtime=0.25 cores=0,2,4,6
/proc/7736/task/7796/stat : 7796 (java) S 7733 7736 4821 0 -1 1077944384 689 12767 0 0 17 0 5 3 20 0 15 0 90279770 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140354719812336 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7797] ppid=7733 vsize=13985408 CPUtime=0.31 cores=0,2,4,6
/proc/7736/task/7797/stat : 7797 (java) S 7733 7736 4821 0 -1 1077944384 1229 12767 0 0 23 0 5 3 20 0 15 0 90279770 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140354718758432 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7798] ppid=7733 vsize=13985408 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7798/stat : 7798 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 15 0 90279770 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140354717706976 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7799] ppid=7733 vsize=13985408 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7799/stat : 7799 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 15 0 90279773 14321057792 40614 18446744073709551615 4194304 4196468 140737094553632 140354716654256 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
Current children cumulated CPU time (s) 1.91
Current children cumulated vsize (KiB) 13985408

[startup+3.10059 s]
/proc/loadavg: 1.88 1.69 1.67 3/212 7799
/proc/meminfo: memFree=26868584/32770624 swapFree=0/425820
[pid=7736] ppid=7733 vsize=13999932 CPUtime=5.39 cores=0,2,4,6
/proc/7736/stat : 7736 (java) S 7733 7736 4821 0 -1 1077944320 34649 12767 0 0 515 16 5 3 20 0 15 0 90279743 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140737094536176 140355808284407 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 9 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
/proc/7736/statm: 3499983 50684 3444 1 0 3488597 0
[pid=7736/tid=7786] ppid=7733 vsize=13999932 CPUtime=2.71 cores=0,2,4,6
/proc/7736/task/7786/stat : 7786 (java) R 7733 7736 4821 0 -1 4202560 24469 12767 0 0 254 9 5 3 20 0 15 0 90279765 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140355812505656 140355791471188 0 4 1 16800974 0 0 0 -1 4 0 0 2 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7787] ppid=7733 vsize=13999932 CPUtime=0.09 cores=0,2,4,6
/proc/7736/task/7787/stat : 7787 (java) S 7733 7736 4821 0 -1 1077944384 38 12767 0 0 1 0 5 3 20 0 15 0 90279765 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140355408497808 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7788] ppid=7733 vsize=13999932 CPUtime=0.09 cores=0,2,4,6
/proc/7736/task/7788/stat : 7788 (java) S 7733 7736 4821 0 -1 1077944384 193 12767 0 0 1 0 5 3 20 0 15 0 90279765 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140355407445008 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7789] ppid=7733 vsize=13999932 CPUtime=0.09 cores=0,2,4,6
/proc/7736/task/7789/stat : 7789 (java) S 7733 7736 4821 0 -1 1077944384 37 12767 0 0 1 0 5 3 20 0 15 0 90279765 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140355406392208 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7790] ppid=7733 vsize=13999932 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7790/stat : 7790 (java) S 7733 7736 4821 0 -1 1077944384 35 12767 0 0 0 0 5 3 20 0 15 0 90279765 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140355405339408 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7791] ppid=7733 vsize=13999932 CPUtime=0.09 cores=0,2,4,6
/proc/7736/task/7791/stat : 7791 (java) S 7733 7736 4821 0 -1 1077944384 660 12767 0 0 1 0 5 3 20 0 15 0 90279767 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140354725075312 140355808295554 0 0 1 16800974 18446744071579849748 0 0 -1 4 0 0 17 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7792] ppid=7733 vsize=13999932 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7792/stat : 7792 (java) S 7733 7736 4821 0 -1 1077944384 55 12767 0 0 0 0 5 3 20 0 15 0 90279767 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140354724021344 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7793] ppid=7733 vsize=13999932 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7793/stat : 7793 (java) S 7733 7736 4821 0 -1 1077944384 43 12767 0 0 0 0 5 3 20 0 15 0 90279767 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140354722968448 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7794] ppid=7733 vsize=13999932 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7794/stat : 7794 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 15 0 90279770 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140354721916752 140355808303003 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7795] ppid=7733 vsize=13999932 CPUtime=1.05 cores=0,2,4,6
/proc/7736/task/7795/stat : 7795 (java) R 7733 7736 4821 0 -1 4202560 2768 12767 0 0 96 1 5 3 20 0 15 0 90279770 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140354720857624 140355789847376 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7796] ppid=7733 vsize=13999932 CPUtime=0.74 cores=0,2,4,6
/proc/7736/task/7796/stat : 7796 (java) R 7733 7736 4821 0 -1 4202560 1230 12767 0 0 65 1 5 3 20 0 15 0 90279770 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140354719793352 140355791780933 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7797] ppid=7733 vsize=13999932 CPUtime=1.01 cores=0,2,4,6
/proc/7736/task/7797/stat : 7797 (java) S 7733 7736 4821 0 -1 1077944384 2958 12767 0 0 92 1 5 3 20 0 15 0 90279770 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140354718759536 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7798] ppid=7733 vsize=13999932 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7798/stat : 7798 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 15 0 90279770 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140354717706976 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7799] ppid=7733 vsize=13999932 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7799/stat : 7799 (java) S 7733 7736 4821 0 -1 1077944384 5 12767 0 0 0 0 5 3 20 0 15 0 90279773 14335930368 50684 18446744073709551615 4194304 4196468 140737094553632 140354716654256 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 13 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
Current children cumulated CPU time (s) 5.39
Current children cumulated vsize (KiB) 13999932

[startup+6.30063 s]
/proc/loadavg: 2.13 1.75 1.68 3/212 7799
/proc/meminfo: memFree=26711728/32770624 swapFree=0/425820
[pid=7736] ppid=7733 vsize=14067516 CPUtime=12.15 cores=0,2,4,6
/proc/7736/stat : 7736 (java) S 7733 7736 4821 0 -1 1077944320 60932 12767 0 0 1186 21 5 3 20 0 15 0 90279743 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140737094536176 140355808284407 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 9 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
/proc/7736/statm: 3516879 84040 3466 1 0 3505493 0
[pid=7736/tid=7786] ppid=7733 vsize=14067516 CPUtime=5.86 cores=0,2,4,6
/proc/7736/task/7786/stat : 7786 (java) R 7733 7736 4821 0 -1 4202560 41138 12767 0 0 565 13 5 3 20 0 15 0 90279765 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140355812515216 140355462740331 0 4 1 16800974 0 0 0 -1 4 0 0 2 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7787] ppid=7733 vsize=14067516 CPUtime=0.11 cores=0,2,4,6
/proc/7736/task/7787/stat : 7787 (java) S 7733 7736 4821 0 -1 1077944384 53 12767 0 0 3 0 5 3 20 0 15 0 90279765 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140355408497808 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7788] ppid=7733 vsize=14067516 CPUtime=0.11 cores=0,2,4,6
/proc/7736/task/7788/stat : 7788 (java) S 7733 7736 4821 0 -1 1077944384 208 12767 0 0 3 0 5 3 20 0 15 0 90279765 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140355407445008 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7789] ppid=7733 vsize=14067516 CPUtime=0.11 cores=0,2,4,6
/proc/7736/task/7789/stat : 7789 (java) S 7733 7736 4821 0 -1 1077944384 50 12767 0 0 3 0 5 3 20 0 15 0 90279765 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140355406392208 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7790] ppid=7733 vsize=14067516 CPUtime=0.11 cores=0,2,4,6
/proc/7736/task/7790/stat : 7790 (java) S 7733 7736 4821 0 -1 1077944384 263 12767 0 0 3 0 5 3 20 0 15 0 90279765 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140355405339408 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7791] ppid=7733 vsize=14067516 CPUtime=0.11 cores=0,2,4,6
/proc/7736/task/7791/stat : 7791 (java) S 7733 7736 4821 0 -1 1077944384 941 12767 0 0 3 0 5 3 20 0 15 0 90279767 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140354725075312 140355808295554 0 0 1 16800974 18446744071579849748 0 0 -1 2 0 0 17 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7792] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7792/stat : 7792 (java) S 7733 7736 4821 0 -1 1077944384 56 12767 0 0 0 0 5 3 20 0 15 0 90279767 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140354724021344 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7793] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7793/stat : 7793 (java) S 7733 7736 4821 0 -1 1077944384 43 12767 0 0 0 0 5 3 20 0 15 0 90279767 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140354722968448 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7794] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7794/stat : 7794 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 15 0 90279770 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140354721916752 140355808303003 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7795] ppid=7733 vsize=14067516 CPUtime=2.59 cores=0,2,4,6
/proc/7736/task/7795/stat : 7795 (java) R 7733 7736 4821 0 -1 4202560 5719 12767 0 0 250 1 5 3 20 0 15 0 90279770 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140354720865136 140355792573264 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7796] ppid=7733 vsize=14067516 CPUtime=2.35 cores=0,2,4,6
/proc/7736/task/7796/stat : 7796 (java) R 7733 7736 4821 0 -1 4202560 5133 12767 0 0 226 1 5 3 20 0 15 0 90279770 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140354719800896 140355792676958 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7797] ppid=7733 vsize=14067516 CPUtime=1.34 cores=0,2,4,6
/proc/7736/task/7797/stat : 7797 (java) S 7733 7736 4821 0 -1 1077944384 4915 12767 0 0 124 2 5 3 20 0 15 0 90279770 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140354718759536 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7798] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7798/stat : 7798 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 15 0 90279770 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140354717706976 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7799] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7799/stat : 7799 (java) S 7733 7736 4821 0 -1 1077944384 255 12767 0 0 0 0 5 3 20 0 15 0 90279773 14405136384 84040 18446744073709551615 4194304 4196468 140737094553632 140354716654256 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 13 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
Current children cumulated CPU time (s) 12.15
Current children cumulated vsize (KiB) 14067516

[startup+12.7007 s]
/proc/loadavg: 2.12 1.75 1.69 4/212 7800
/proc/meminfo: memFree=26648268/32770624 swapFree=0/425820
[pid=7736] ppid=7733 vsize=14067516 CPUtime=19.39 cores=0,2,4,6
/proc/7736/stat : 7736 (java) S 7733 7736 4821 0 -1 1077944320 70817 12767 0 0 1904 27 5 3 20 0 15 0 90279743 14405136384 97995 18446744073709551615 4194304 4196468 140737094553632 140737094536176 140355808284407 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 9 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
/proc/7736/statm: 3516879 97995 3475 1 0 3505493 0
[pid=7736/tid=7786] ppid=7733 vsize=14067516 CPUtime=12.22 cores=0,2,4,6
/proc/7736/task/7786/stat : 7786 (java) R 7733 7736 4821 0 -1 4202560 42092 12767 0 0 1201 13 5 3 20 0 15 0 90279765 14405136384 97995 18446744073709551615 4194304 4196468 140737094553632 140355812517800 140355457106518 0 4 1 16800974 0 0 0 -1 4 0 0 2 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7787] ppid=7733 vsize=14067516 CPUtime=0.14 cores=0,2,4,6
/proc/7736/task/7787/stat : 7787 (java) S 7733 7736 4821 0 -1 1077944384 105 12767 0 0 5 1 5 3 20 0 15 0 90279765 14405136384 97995 18446744073709551615 4194304 4196468 140737094553632 140355408497808 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7788] ppid=7733 vsize=14067516 CPUtime=0.14 cores=0,2,4,6
/proc/7736/task/7788/stat : 7788 (java) S 7733 7736 4821 0 -1 1077944384 814 12767 0 0 5 1 5 3 20 0 15 0 90279765 14405136384 97995 18446744073709551615 4194304 4196468 140737094553632 140355407445008 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7789] ppid=7733 vsize=14067516 CPUtime=0.14 cores=0,2,4,6
/proc/7736/task/7789/stat : 7789 (java) S 7733 7736 4821 0 -1 1077944384 125 12767 0 0 5 1 5 3 20 0 15 0 90279765 14405136384 97995 18446744073709551615 4194304 4196468 140737094553632 140355406392208 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7790] ppid=7733 vsize=14067516 CPUtime=0.13 cores=0,2,4,6
/proc/7736/task/7790/stat : 7790 (java) S 7733 7736 4821 0 -1 1077944384 1026 12767 0 0 4 1 5 3 20 0 15 0 90279765 14405136384 97995 18446744073709551615 4194304 4196468 140737094553632 140355405339408 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7791] ppid=7733 vsize=14067516 CPUtime=0.12 cores=0,2,4,6
/proc/7736/task/7791/stat : 7791 (java) S 7733 7736 4821 0 -1 1077944384 1176 12767 0 0 4 0 5 3 20 0 15 0 90279767 14405136384 97995 18446744073709551615 4194304 4196468 140737094553632 140354725075312 140355808295554 0 0 1 16800974 18446744071579849748 0 0 -1 0 0 0 17 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7792] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7792/stat : 7792 (java) S 7733 7736 4821 0 -1 1077944384 63 12767 0 0 0 0 5 3 20 0 15 0 90279767 14405136384 97995 18446744073709551615 4194304 4196468 140737094553632 140354724021344 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7793] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7793/stat : 7793 (java) S 7733 7736 4821 0 -1 1077944384 43 12767 0 0 0 0 5 3 20 0 15 0 90279767 14405136384 97995 18446744073709551615 4194304 4196468 140737094553632 140354722968448 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7794] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7794/stat : 7794 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 15 0 90279770 14405136384 97995 18446744073709551615 4194304 4196468 140737094553632 140354721916752 140355808303003 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0

################
# More data... #
################

/proc/7736/task/7798/stat : 7798 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 15 0 90279770 14405136384 106685 18446744073709551615 4194304 4196468 140737094553632 140354717706976 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7799] ppid=7733 vsize=14067516 CPUtime=0.75 cores=0,2,4,6
/proc/7736/task/7799/stat : 7799 (java) S 7733 7736 4821 0 -1 1077944384 1333 12767 0 0 31 36 5 3 20 0 15 0 90279773 14405136384 106685 18446744073709551615 4194304 4196468 140737094553632 140354716654256 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 13 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
Current children cumulated CPU time (s) 2459.42
Current children cumulated vsize (KiB) 14067516

[startup+2502.3 s]
/proc/loadavg: 1.49 1.45 1.49 3/215 8249
/proc/meminfo: memFree=28327748/32770624 swapFree=0/426348
[pid=7736] ppid=7733 vsize=14067516 CPUtime=2519.66 cores=0,2,4,6
/proc/7736/stat : 7736 (java) S 7733 7736 4821 0 -1 1077944320 219938 12767 0 0 251825 133 5 3 20 0 15 0 90279743 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140737094536176 140355808284407 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 9 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
/proc/7736/statm: 3516879 107224 3485 1 0 3505493 0
[pid=7736/tid=7786] ppid=7733 vsize=14067516 CPUtime=2496.18 cores=0,2,4,6
/proc/7736/task/7786/stat : 7786 (java) R 7733 7736 4821 0 -1 4202560 76239 12767 0 0 249585 25 5 3 20 0 15 0 90279765 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140355812518288 140355461489908 0 4 1 16800974 0 0 0 -1 0 0 0 2 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7787] ppid=7733 vsize=14067516 CPUtime=3.41 cores=0,2,4,6
/proc/7736/task/7787/stat : 7787 (java) S 7733 7736 4821 0 -1 1077944384 13246 12767 0 0 317 16 5 3 20 0 15 0 90279765 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140355408497808 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7788] ppid=7733 vsize=14067516 CPUtime=3.41 cores=0,2,4,6
/proc/7736/task/7788/stat : 7788 (java) S 7733 7736 4821 0 -1 1077944384 12427 12767 0 0 315 18 5 3 20 0 15 0 90279765 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140355407445008 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7789] ppid=7733 vsize=14067516 CPUtime=3.41 cores=0,2,4,6
/proc/7736/task/7789/stat : 7789 (java) S 7733 7736 4821 0 -1 1077944384 21079 12767 0 0 316 17 5 3 20 0 15 0 90279765 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140355406392208 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7790] ppid=7733 vsize=14067516 CPUtime=3.41 cores=0,2,4,6
/proc/7736/task/7790/stat : 7790 (java) S 7733 7736 4821 0 -1 1077944384 11697 12767 0 0 317 16 5 3 20 0 15 0 90279765 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140355405339408 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7791] ppid=7733 vsize=14067516 CPUtime=1.92 cores=0,2,4,6
/proc/7736/task/7791/stat : 7791 (java) S 7733 7736 4821 0 -1 1077944384 11265 12767 0 0 171 13 5 3 20 0 15 0 90279767 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354725075312 140355808295554 0 0 1 16800974 18446744071579849748 0 0 -1 2 0 0 17 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7792] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7792/stat : 7792 (java) S 7733 7736 4821 0 -1 1077944384 68 12767 0 0 0 0 5 3 20 0 15 0 90279767 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354724021344 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7793] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7793/stat : 7793 (java) S 7733 7736 4821 0 -1 1077944384 47 12767 0 0 0 0 5 3 20 0 15 0 90279767 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354722968448 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7794] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7794/stat : 7794 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 15 0 90279770 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354721916752 140355808303003 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7795] ppid=7733 vsize=14067516 CPUtime=3.28 cores=0,2,4,6
/proc/7736/task/7795/stat : 7795 (java) S 7733 7736 4821 0 -1 1077944384 22105 12767 0 0 318 2 5 3 20 0 15 0 90279770 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354720865136 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7796] ppid=7733 vsize=14067516 CPUtime=3.04 cores=0,2,4,6
/proc/7736/task/7796/stat : 7796 (java) S 7733 7736 4821 0 -1 1077944384 25434 12767 0 0 294 2 5 3 20 0 15 0 90279770 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354719812336 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7797] ppid=7733 vsize=14067516 CPUtime=1.44 cores=0,2,4,6
/proc/7736/task/7797/stat : 7797 (java) S 7733 7736 4821 0 -1 1077944384 22820 12767 0 0 132 4 5 3 20 0 15 0 90279770 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354718759536 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7798] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7798/stat : 7798 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 15 0 90279770 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354717706976 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7799] ppid=7733 vsize=14067516 CPUtime=0.77 cores=0,2,4,6
/proc/7736/task/7799/stat : 7799 (java) S 7733 7736 4821 0 -1 1077944384 1353 12767 0 0 31 38 5 3 20 0 15 0 90279773 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354716654256 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 13 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
Current children cumulated CPU time (s) 2519.66
Current children cumulated vsize (KiB) 14067516



Maximum CPU time exceeded: sending SIGTERM then SIGKILL

[startup+2502.7 s]
/proc/loadavg: 1.49 1.45 1.49 3/215 8249
/proc/meminfo: memFree=28335380/32770624 swapFree=0/426348
[pid=7736] ppid=7733 vsize=14067516 CPUtime=2520.06 cores=0,2,4,6
/proc/7736/stat : 7736 (java) S 7733 7736 4821 0 -1 1077944320 219940 12767 0 0 251865 133 5 3 20 0 15 0 90279743 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140737094536176 140355808284407 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 9 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
/proc/7736/statm: 3516879 107224 3485 1 0 3505493 0
[pid=7736/tid=7786] ppid=7733 vsize=14067516 CPUtime=2496.58 cores=0,2,4,6
/proc/7736/task/7786/stat : 7786 (java) R 7733 7736 4821 0 -1 4202560 76240 12767 0 0 249625 25 5 3 20 0 15 0 90279765 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140355812518688 140355457374564 0 4 1 16800974 0 0 0 -1 4 0 0 2 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7787] ppid=7733 vsize=14067516 CPUtime=3.41 cores=0,2,4,6
/proc/7736/task/7787/stat : 7787 (java) S 7733 7736 4821 0 -1 1077944384 13246 12767 0 0 317 16 5 3 20 0 15 0 90279765 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140355408497808 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7788] ppid=7733 vsize=14067516 CPUtime=3.41 cores=0,2,4,6
/proc/7736/task/7788/stat : 7788 (java) S 7733 7736 4821 0 -1 1077944384 12427 12767 0 0 315 18 5 3 20 0 15 0 90279765 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140355407445008 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7789] ppid=7733 vsize=14067516 CPUtime=3.42 cores=0,2,4,6
/proc/7736/task/7789/stat : 7789 (java) S 7733 7736 4821 0 -1 1077944384 21080 12767 0 0 317 17 5 3 20 0 15 0 90279765 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140355406392208 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7790] ppid=7733 vsize=14067516 CPUtime=3.41 cores=0,2,4,6
/proc/7736/task/7790/stat : 7790 (java) S 7733 7736 4821 0 -1 1077944384 11697 12767 0 0 317 16 5 3 20 0 15 0 90279765 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140355405339408 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7791] ppid=7733 vsize=14067516 CPUtime=1.92 cores=0,2,4,6
/proc/7736/task/7791/stat : 7791 (java) S 7733 7736 4821 0 -1 1077944384 11265 12767 0 0 171 13 5 3 20 0 15 0 90279767 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354725075312 140355808295554 0 0 1 16800974 18446744071579849748 0 0 -1 2 0 0 17 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7792] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7792/stat : 7792 (java) S 7733 7736 4821 0 -1 1077944384 68 12767 0 0 0 0 5 3 20 0 15 0 90279767 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354724021344 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7793] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7793/stat : 7793 (java) S 7733 7736 4821 0 -1 1077944384 47 12767 0 0 0 0 5 3 20 0 15 0 90279767 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354722968448 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7794] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7794/stat : 7794 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 15 0 90279770 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354721916752 140355808303003 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7795] ppid=7733 vsize=14067516 CPUtime=3.28 cores=0,2,4,6
/proc/7736/task/7795/stat : 7795 (java) S 7733 7736 4821 0 -1 1077944384 22105 12767 0 0 318 2 5 3 20 0 15 0 90279770 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354720865136 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7796] ppid=7733 vsize=14067516 CPUtime=3.04 cores=0,2,4,6
/proc/7736/task/7796/stat : 7796 (java) S 7733 7736 4821 0 -1 1077944384 25434 12767 0 0 294 2 5 3 20 0 15 0 90279770 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354719812336 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7797] ppid=7733 vsize=14067516 CPUtime=1.44 cores=0,2,4,6
/proc/7736/task/7797/stat : 7797 (java) S 7733 7736 4821 0 -1 1077944384 22820 12767 0 0 132 4 5 3 20 0 15 0 90279770 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354718759536 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7798] ppid=7733 vsize=14067516 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7798/stat : 7798 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 15 0 90279770 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354717706976 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7799] ppid=7733 vsize=14067516 CPUtime=0.77 cores=0,2,4,6
/proc/7736/task/7799/stat : 7799 (java) S 7733 7736 4821 0 -1 1077944384 1353 12767 0 0 31 38 5 3 20 0 15 0 90279773 14405136384 107224 18446744073709551615 4194304 4196468 140737094553632 140354716654256 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 13 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
Current children cumulated CPU time (s) 2520.06
Current children cumulated vsize (KiB) 14067516

Sending SIGTERM to process tree (bottom up)
Sleeping 2 seconds

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

[startup+2502.81 s]
/proc/loadavg: 1.49 1.45 1.49 3/215 8249
/proc/meminfo: memFree=28335380/32770624 swapFree=0/426348
[pid=7736] ppid=7733 vsize=14200644 CPUtime=2520.37 cores=0,2,4,6
/proc/7736/stat : 7736 (java) S 7733 7736 4821 0 -1 1077944320 231423 12767 0 0 251896 133 5 3 20 0 17 0 90279743 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140737094536176 140355808284407 0 0 1 16800974 18446744073709551615 0 0 17 0 0 0 9 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
/proc/7736/statm: 3550161 107350 3485 1 0 3538775 0
[pid=7736/tid=7786] ppid=7733 vsize=14200644 CPUtime=2496.59 cores=0,2,4,6
/proc/7736/task/7786/stat : 7786 (java) S 7733 7736 4821 0 -1 1077944384 77340 12767 0 0 249626 25 5 3 20 0 17 0 90279765 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140355812522080 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 2 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7787] ppid=7733 vsize=14200644 CPUtime=3.48 cores=0,2,4,6
/proc/7736/task/7787/stat : 7787 (java) R 7733 7736 4821 0 -1 4202560 13281 12767 0 0 324 16 5 3 20 0 17 0 90279765 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140355408498008 140355792982046 0 4 1 16800974 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7788] ppid=7733 vsize=14200644 CPUtime=3.48 cores=0,2,4,6
/proc/7736/task/7788/stat : 7788 (java) R 7733 7736 4821 0 -1 4202560 12440 12767 0 0 322 18 5 3 20 0 17 0 90279765 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140355407445008 140355800912615 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7789] ppid=7733 vsize=14200644 CPUtime=3.48 cores=0,2,4,6
/proc/7736/task/7789/stat : 7789 (java) R 7733 7736 4821 0 -1 4202560 21100 12767 0 0 323 17 5 3 20 0 17 0 90279765 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140355406392208 140355800912615 0 4 1 16800974 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7790] ppid=7733 vsize=14200644 CPUtime=3.48 cores=0,2,4,6
/proc/7736/task/7790/stat : 7790 (java) R 7733 7736 4821 0 -1 4202560 11711 12767 0 0 324 16 5 3 20 0 17 0 90279765 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140355405339408 140355800912615 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7791] ppid=7733 vsize=14200644 CPUtime=1.94 cores=0,2,4,6
/proc/7736/task/7791/stat : 7791 (java) S 7733 7736 4821 0 -1 1077944384 20935 12767 0 0 173 13 5 3 20 0 17 0 90279767 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354725073712 140355808294613 0 0 1 16800974 18446744071579849748 0 0 -1 4 0 0 17 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7792] ppid=7733 vsize=14200644 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7792/stat : 7792 (java) S 7733 7736 4821 0 -1 1077944384 69 12767 0 0 0 0 5 3 20 0 17 0 90279767 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354724021248 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7793] ppid=7733 vsize=14200644 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7793/stat : 7793 (java) S 7733 7736 4821 0 -1 1077944384 47 12767 0 0 0 0 5 3 20 0 17 0 90279767 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354722968448 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7794] ppid=7733 vsize=14200644 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7794/stat : 7794 (java) S 7733 7736 4821 0 -1 1077944384 261 12767 0 0 0 0 5 3 20 0 17 0 90279770 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354721916752 140355808303003 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7795] ppid=7733 vsize=14200644 CPUtime=3.28 cores=0,2,4,6
/proc/7736/task/7795/stat : 7795 (java) S 7733 7736 4821 0 -1 1077944384 22105 12767 0 0 318 2 5 3 20 0 17 0 90279770 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354720865136 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7796] ppid=7733 vsize=14200644 CPUtime=3.04 cores=0,2,4,6
/proc/7736/task/7796/stat : 7796 (java) S 7733 7736 4821 0 -1 1077944384 25434 12767 0 0 294 2 5 3 20 0 17 0 90279770 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354719812336 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7797] ppid=7733 vsize=14200644 CPUtime=1.44 cores=0,2,4,6
/proc/7736/task/7797/stat : 7797 (java) S 7733 7736 4821 0 -1 1077944384 22820 12767 0 0 132 4 5 3 20 0 17 0 90279770 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354718759536 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7798] ppid=7733 vsize=14200644 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7798/stat : 7798 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 17 0 90279770 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354717706976 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7799] ppid=7733 vsize=14200644 CPUtime=0.77 cores=0,2,4,6
/proc/7736/task/7799/stat : 7799 (java) R 7733 7736 4821 0 -1 1077944384 1353 12767 0 0 31 38 5 3 20 0 17 0 90279773 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354716654256 140355808295554 0 4 1 16800974 0 0 0 -1 6 0 0 13 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
Current children cumulated CPU time (s) 2520.37
Current children cumulated vsize (KiB) 14200644

[startup+2502.91 s]
/proc/loadavg: 1.49 1.45 1.49 3/215 8249
/proc/meminfo: memFree=28335380/32770624 swapFree=0/426348
[pid=7736] ppid=7733 vsize=14200644 CPUtime=2520.62 cores=0,2,4,6
/proc/7736/stat : 7736 (java) S 7733 7736 4821 0 -1 1077944320 231449 12767 0 0 251920 134 5 3 20 0 17 0 90279743 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140737094536176 140355808284407 0 0 1 16800974 18446744073709551615 0 0 17 0 0 0 9 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
/proc/7736/statm: 3550161 107350 3485 1 0 3538775 0
[pid=7736/tid=7786] ppid=7733 vsize=14200644 CPUtime=2496.59 cores=0,2,4,6
/proc/7736/task/7786/stat : 7786 (java) S 7733 7736 4821 0 -1 1077944384 77342 12767 0 0 249626 25 5 3 20 0 17 0 90279765 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140355812522080 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 2 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7787] ppid=7733 vsize=14200644 CPUtime=3.53 cores=0,2,4,6
/proc/7736/task/7787/stat : 7787 (java) S 7733 7736 4821 0 -1 1077944384 13282 12767 0 0 329 16 5 3 20 0 17 0 90279765 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140355408497808 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7788] ppid=7733 vsize=14200644 CPUtime=3.53 cores=0,2,4,6
/proc/7736/task/7788/stat : 7788 (java) S 7733 7736 4821 0 -1 1077944384 12442 12767 0 0 327 18 5 3 20 0 17 0 90279765 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140355407445008 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7789] ppid=7733 vsize=14200644 CPUtime=3.53 cores=0,2,4,6
/proc/7736/task/7789/stat : 7789 (java) S 7733 7736 4821 0 -1 1077944384 21109 12767 0 0 328 17 5 3 20 0 17 0 90279765 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140355406392208 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7790] ppid=7733 vsize=14200644 CPUtime=3.53 cores=0,2,4,6
/proc/7736/task/7790/stat : 7790 (java) S 7733 7736 4821 0 -1 1077944384 11711 12767 0 0 329 16 5 3 20 0 17 0 90279765 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140355405339408 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7791] ppid=7733 vsize=14200644 CPUtime=1.99 cores=0,2,4,6
/proc/7736/task/7791/stat : 7791 (java) R 7733 7736 4821 0 -1 4202560 20942 12767 0 0 178 13 5 3 20 0 17 0 90279767 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354725073600 140355793290286 0 0 1 16800974 0 0 0 -1 6 0 0 17 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7792] ppid=7733 vsize=14200644 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7792/stat : 7792 (java) S 7733 7736 4821 0 -1 1077944384 70 12767 0 0 0 0 5 3 20 0 17 0 90279767 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354724020880 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7793] ppid=7733 vsize=14200644 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7793/stat : 7793 (java) S 7733 7736 4821 0 -1 1077944384 51 12767 0 0 0 0 5 3 20 0 17 0 90279767 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354722968048 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7794] ppid=7733 vsize=14200644 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7794/stat : 7794 (java) S 7733 7736 4821 0 -1 1077944384 261 12767 0 0 0 0 5 3 20 0 17 0 90279770 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354721916752 140355808303003 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7795] ppid=7733 vsize=14200644 CPUtime=3.28 cores=0,2,4,6
/proc/7736/task/7795/stat : 7795 (java) S 7733 7736 4821 0 -1 1077944384 22105 12767 0 0 318 2 5 3 20 0 17 0 90279770 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354720865184 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7796] ppid=7733 vsize=14200644 CPUtime=3.04 cores=0,2,4,6
/proc/7736/task/7796/stat : 7796 (java) S 7733 7736 4821 0 -1 1077944384 25434 12767 0 0 294 2 5 3 20 0 17 0 90279770 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354719812096 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7797] ppid=7733 vsize=14200644 CPUtime=1.44 cores=0,2,4,6
/proc/7736/task/7797/stat : 7797 (java) S 7733 7736 4821 0 -1 1077944384 22820 12767 0 0 132 4 5 3 20 0 17 0 90279770 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354718759584 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7798] ppid=7733 vsize=14200644 CPUtime=0.08 cores=0,2,4,6
/proc/7736/task/7798/stat : 7798 (java) S 7733 7736 4821 0 -1 1077944384 3 12767 0 0 0 0 5 3 20 0 17 0 90279770 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354717706976 140355808294613 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
[pid=7736/tid=7799] ppid=7733 vsize=14200644 CPUtime=0.77 cores=0,2,4,6
/proc/7736/task/7799/stat : 7799 (java) S 7733 7736 4821 0 -1 1077944384 1353 12767 0 0 31 38 5 3 20 0 17 0 90279773 14541459456 107350 18446744073709551615 4194304 4196468 140737094553632 140354716654256 140355808295554 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 13 0 0 6293624 6294260 11386880 140737094555600 140737094558385 140737094558385 140737094561743 0
Current children cumulated CPU time (s) 2520.62
Current children cumulated vsize (KiB) 14200644

Child status: 143
Real time (s): 2502.94
CPU time (s): 2520.68
CPU user time (s): 2519.29
CPU system time (s): 1.38633
CPU usage (%): 100.709
Max. virtual memory (cumulated for all children) (KiB): 14200644

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 2519.29
system time used= 1.38633
maximum resident set size= 538872
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 244489
page faults= 0
swaps= 0
block input operations= 0
block output operations= 3048
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 98894
involuntary context switches= 5846

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 10.1064 second user time and 15.7908 second system time

The end

Launcher Data

Begin job on node133 at 2017-08-11 05:56:38
IDJOB=4262361
IDBENCH=120665
IDSOLVER=2650
FILE ID=node133/4262361-1502424645
RUNJOBID= node133-1502411423-4884
PBS_JOBID= 
Free space on /tmp= 62004 MiB

SOLVER NAME= Concrete 3.4
BENCH NAME= XCSP17/Knights/Knights-m1-s1/Knights-100-05.xml
COMMAND LINE= bin/concrete BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4262361-1502424645/watcher-4262361-1502424645 -o /tmp/evaluation-result-4262361-1502424645/solver-4262361-1502424645 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node133-1502411423-4884 --watchdog 2580  bin/concrete HOME/instance-4262361-1502424645.xml

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

MD5SUM BENCH= 49715548d1d786de52e060044cf6008a
RANDOM SEED=1414386139

node133.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.17
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.17
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.17
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.17
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:        27043964 kB
MemAvailable:   27898240 kB
Buffers:          285632 kB
Cached:           863984 kB
SwapCached:            0 kB
Active:          4831192 kB
Inactive:         458376 kB
Active(anon):    4140724 kB
Inactive(anon):    33112 kB
Active(file):     690468 kB
Inactive(file):   425264 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             24048 kB
Writeback:             4 kB
AnonPages:       4139956 kB
Mapped:            63424 kB
Shmem:             33468 kB
Slab:             136084 kB
SReclaimable:     108756 kB
SUnreclaim:        27328 kB
KernelStack:        3536 kB
PageTables:        13140 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    5043956 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      354332 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   3889152 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      132480 kB
DirectMap2M:    33413120 kB

Free space on /tmp at the end= 61984 MiB
End job on node133 at 2017-08-11 06:38:21