Trace number 4305188

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.9.2-SuperNG? (TO) 2520.09 2481.54

General information on the benchmark

NameFrb/
frb-59-26-1-mgd_c18.xml
MD5SUMeb7f3f1c65ad30d4418b69bfa000eb45
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 variables59
Number of constraints556
Number of domains1
Minimum domain size26
Maximum domain size26
Distribution of domain sizes[{"size":26,"count":59}]
Minimum variable degree10
Maximum variable degree29
Distribution of variable degrees[{"degree":10,"count":1},{"degree":11,"count":1},{"degree":13,"count":2},{"degree":14,"count":3},{"degree":15,"count":3},{"degree":16,"count":4},{"degree":17,"count":6},{"degree":18,"count":8},{"degree":19,"count":6},{"degree":20,"count":6},{"degree":21,"count":9},{"degree":22,"count":2},{"degree":23,"count":2},{"degree":24,"count":1},{"degree":25,"count":2},{"degree":26,"count":2},{"degree":29,"count":1}]
Minimum constraint arity2
Maximum constraint arity2
Distribution of constraint arities[{"arity":2,"count":556}]
Number of extensional constraints556
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":556}]
Optimization problemNO
Type of objective

Solver Data

1.00/0.75	c Concrete v3.9.2.1532736233296 running
2520.04/2481.51	Exception in thread "main" java.util.concurrent.TimeoutException
2520.04/2481.51		at concrete.MAC.mac(MAC.scala:188)
2520.04/2481.51		at concrete.MAC.$anonfun$oneRun$1(MAC.scala:252)
2520.04/2481.51		at scala.util.Try$.apply(Try.scala:209)
2520.04/2481.51		at cspom.StatisticsManager$.$anonfun$measure$1(StatisticsManager.scala:194)
2520.04/2481.51		at cspom.StatisticsManager$.$anonfun$measureTry$1(StatisticsManager.scala:182)
2520.04/2481.51		at scala.runtime.java8.JFunction0$mcZ$sp.apply(JFunction0$mcZ$sp.java:12)
2520.04/2481.51		at org.scalameter.MeasureBuilder.$anonfun$measure$1(MeasureBuilder.scala:61)
2520.04/2481.51		at org.scalameter.Measurer$Default.measure(Measurer.scala:133)
2520.04/2481.51		at org.scalameter.MeasureBuilder.measureWith(MeasureBuilder.scala:51)
2520.04/2481.51		at org.scalameter.MeasureBuilder.measure(MeasureBuilder.scala:61)
2520.04/2481.51		at cspom.StatisticsManager$.measureTry(StatisticsManager.scala:181)
2520.04/2481.51		at cspom.StatisticsManager$.measure(StatisticsManager.scala:194)
2520.04/2481.51		at concrete.MAC.oneRun(MAC.scala:253)
2520.04/2481.51		at concrete.MAC.nextSolution(MAC.scala:272)
2520.04/2481.51		at concrete.MAC.$anonfun$nextSolution$5(MAC.scala:336)
2520.04/2481.51		at concrete.ProblemState.map(ProblemState.scala:221)
2520.04/2481.51		at concrete.ProblemState.map(ProblemState.scala:204)
2520.04/2481.51		at concrete.MAC.nextSolution(MAC.scala:334)
2520.04/2481.51		at concrete.Solver.hasNext(Solver.scala:166)
2520.04/2481.51		at scala.collection.Iterator.toStream(Iterator.scala:1418)
2520.04/2481.51		at scala.collection.Iterator.toStream$(Iterator.scala:1417)
2520.04/2481.51		at concrete.Solver.toStream(Solver.scala:68)
2520.04/2481.51		at scala.collection.TraversableOnce.toIterable(TraversableOnce.scala:296)
2520.04/2481.51		at scala.collection.TraversableOnce.toIterable$(TraversableOnce.scala:296)
2520.04/2481.51		at concrete.Solver.toIterable(Solver.scala:68)
2520.04/2481.51		at concrete.runner.ConcreteRunner.$anonfun$run$2(ConcreteRunner.scala:78)
2520.04/2481.51		at scala.util.Success.$anonfun$map$1(Try.scala:251)
2520.04/2481.51		at scala.util.Success.map(Try.scala:209)
2520.04/2481.51		at concrete.runner.ConcreteRunner.run(ConcreteRunner.scala:68)
2520.04/2481.51		at concrete.runner.ConcreteRunner.run$(ConcreteRunner.scala:33)
2520.04/2481.51		at concrete.runner.XCSP3Concrete$.run(XCSP3Concrete.scala:18)
2520.04/2481.51		at concrete.runner.XCSP3Concrete$.delayedEndpoint$concrete$runner$XCSP3Concrete$1(XCSP3Concrete.scala:121)
2520.04/2481.51		at concrete.runner.XCSP3Concrete$delayedInit$body.apply(XCSP3Concrete.scala:18)
2520.04/2481.51		at scala.Function0.apply$mcV$sp(Function0.scala:34)
2520.04/2481.51		at scala.Function0.apply$mcV$sp$(Function0.scala:34)
2520.04/2481.51		at scala.runtime.AbstractFunction0.apply$mcV$sp(AbstractFunction0.scala:12)
2520.04/2481.51		at scala.App.$anonfun$main$1$adapted(App.scala:76)
2520.04/2481.51		at scala.collection.immutable.List.foreach(List.scala:389)
2520.04/2481.51		at scala.App.main(App.scala:76)
2520.04/2481.51		at scala.App.main$(App.scala:74)
2520.04/2481.51		at concrete.runner.XCSP3Concrete$.main(XCSP3Concrete.scala:18)
2520.04/2481.51		at concrete.runner.XCSP3Concrete.main(XCSP3Concrete.scala)
2520.04/2481.51	s UNKNOWN

Verifier Data


Watcher Data

runsolver version 3.4.0 (svn: 3012) Copyright (C) 2010-2013 Olivier ROUSSEL

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.

NUMA information:
  number of nodes: 2
  memory of node 0: 16374 MiB (9054 MiB free)
  memory of node 1: 16384 MiB (7421 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4305188-1534140308/watcher-4305188-1534140308 -o /tmp/evaluation-result-4305188-1534140308/solver-4305188-1534140308 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node135-1534137835-2125 --watchdog 2580 bin/xcsp-3-concrete -J-Xss64M -randomseed=422338769 -superng HOME/instance-4305188-1534140308.xml 

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
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
Current StackSize limit: 8192 KiB

solver pid=2613, runsolver pid=2610

[startup+0.100855 s]*
/proc/loadavg: 1.63 1.45 1.47 3/209 2670
/proc/meminfo: memFree=16865908/32770624 swapFree=67108852/67108860
[pid=2613] ppid=2610 vsize=10005480 memory=14912 CPUtime=0.1 cores=0,2,4,6
/proc/2613/stat : 2613 (java) S 2610 2613 1500 0 -1 1077944320 4420 13145 0 0 1 1 5 3 20 0 6 0 231593994 10245611520 3728 33554432000 4194304 4196468 140732347111152 140732347093696 139873895575287 0 0 0 16784584 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
/proc/2613/statm: 2501370 3728 1934 1 0 2489808 0
[pid=2613/tid=2666] ppid=2610 vsize=10005480 memory=-8960322420946026437 CPUtime=0.09 cores=0,2,4,6
/proc/2613/task/2666/stat : 2666 (java) R 2610 2613 1500 0 -1 4202560 2267 13145 0 0 1 0 5 3 20 0 6 0 231594003 10245611520 3794 33554432000 4194304 4196468 140732347111152 139873867412048 139873879655774 0 4 0 16784584 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2667] ppid=2610 vsize=10005480 memory=8257237230052613020 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2667/stat : 2667 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 6 0 231594004 10245611520 3794 33554432000 4194304 4196468 140732347111152 139873899817488 139873895585493 0 4 0 16784584 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2668] ppid=2610 vsize=10005480 memory=139632157111936 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2668/stat : 2668 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 6 0 231594004 10245611520 3794 33554432000 4194304 4196468 140732347111152 139873434864272 139873895585493 0 4 0 16784584 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2669] ppid=2610 vsize=10005480 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2669/stat : 2669 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 6 0 231594004 10245611520 3794 33554432000 4194304 4196468 140732347111152 139873433811216 139873895585493 0 4 0 16784584 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2670] ppid=2610 vsize=10005480 memory=-1 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2670/stat : 2670 (java) S 2610 2613 1500 0 -1 1077944384 2 13145 0 0 0 0 5 3 20 0 6 0 231594004 10245611520 3794 33554432000 4194304 4196468 140732347111152 139873432758672 139873895585493 0 4 0 16784584 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
Current children cumulated CPU time: 0.1 s
Current children cumulated vsize: 10005480 KiB
Current children cumulated memory: 14912 KiB

[startup+0.210333 s]*
/proc/loadavg: 1.63 1.45 1.47 5/218 2679
/proc/meminfo: memFree=16841948/32770624 swapFree=67108852/67108860
[pid=2613] ppid=2610 vsize=10982744 memory=41916 CPUtime=0.26 cores=0,2,4,6
/proc/2613/stat : 2613 (java) S 2610 2613 1500 0 -1 1077944320 7653 13145 0 0 17 1 5 3 20 0 15 0 231593994 11246329856 10479 33554432000 4194304 4196468 140732347111152 140732347093696 139873895575287 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
/proc/2613/statm: 2745686 10479 2990 1 0 2708109 0
[pid=2613/tid=2666] ppid=2610 vsize=10982744 memory=8514701219931451533 CPUtime=0.19 cores=0,2,4,6
/proc/2613/task/2666/stat : 2666 (java) R 2610 2613 1500 0 -1 4202560 4365 13145 0 0 11 0 5 3 20 0 15 0 231594003 11246329856 10743 33554432000 4194304 4196468 140732347111152 139873867380368 139873875852112 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2667] ppid=2610 vsize=10982744 memory=-7025452035940392864 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2667/stat : 2667 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594004 11246329856 10743 33554432000 4194304 4196468 140732347111152 139873899817488 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2668] ppid=2610 vsize=10982744 memory=139632157111936 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2668/stat : 2668 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594004 11246329856 10743 33554432000 4194304 4196468 140732347111152 139873434864272 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2669] ppid=2610 vsize=10982744 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2669/stat : 2669 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594004 11246329856 10743 33554432000 4194304 4196468 140732347111152 139873433811216 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2670] ppid=2610 vsize=10982744 memory=-1 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2670/stat : 2670 (java) S 2610 2613 1500 0 -1 1077944384 2 13145 0 0 0 0 5 3 20 0 15 0 231594004 11246329856 10743 33554432000 4194304 4196468 140732347111152 139873432758672 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2671] ppid=2610 vsize=10982744 memory=139632157111936 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2671/stat : 2671 (java) S 2610 2613 1500 0 -1 1077944384 2 13145 0 0 0 0 5 3 20 0 15 0 231594005 11246329856 10743 33554432000 4194304 4196468 140732347111152 139873321192176 139873895586434 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2672] ppid=2610 vsize=10982744 memory=-1 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2672/stat : 2672 (java) S 2610 2613 1500 0 -1 1077944384 13 13145 0 0 0 0 5 3 20 0 15 0 231594006 11246329856 10743 33554432000 4194304 4196468 140732347111152 139872670049952 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2673] ppid=2610 vsize=10982744 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2673/stat : 2673 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594006 11246329856 10743 33554432000 4194304 4196468 140732347111152 139872522200304 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2674] ppid=2610 vsize=10982744 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2674/stat : 2674 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11246329856 10743 33554432000 4194304 4196468 140732347111152 139872214800848 139873895593883 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2675] ppid=2610 vsize=10982744 memory=0 CPUtime=0.09 cores=0,2,4,6
/proc/2613/task/2675/stat : 2675 (java) S 2610 2613 1500 0 -1 1077944384 548 13145 0 0 1 0 5 3 20 0 15 0 231594009 11246329856 10743 33554432000 4194304 4196468 140732347111152 139873320138992 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2676] ppid=2610 vsize=10982744 memory=-1 CPUtime=0.09 cores=0,2,4,6
/proc/2613/task/2676/stat : 2676 (java) S 2610 2613 1500 0 -1 1077944384 75 13145 0 0 1 0 5 3 20 0 15 0 231594009 11246329856 10743 33554432000 4194304 4196468 140732347111152 139873319086448 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2677] ppid=2610 vsize=10982744 memory=139632157111936 CPUtime=0.11 cores=0,2,4,6
/proc/2613/task/2677/stat : 2677 (java) S 2610 2613 1500 0 -1 1077944384 673 13145 0 0 3 0 5 3 20 0 15 0 231594009 11246329856 10809 33554432000 4194304 4196468 140732347111152 139873318033392 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2678] ppid=2610 vsize=10982744 memory=-1 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2678/stat : 2678 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11246329856 10809 33554432000 4194304 4196468 140732347111152 139871784003936 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2679] ppid=2610 vsize=10982744 memory=139632157111936 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2679/stat : 2679 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594009 11246329856 10809 33554432000 4194304 4196468 140732347111152 139873316981808 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
Current children cumulated CPU time: 0.26 s
Current children cumulated vsize: 10982744 KiB
Current children cumulated memory: 41916 KiB

[startup+0.310496 s]*
/proc/loadavg: 1.63 1.45 1.47 4/218 2679
/proc/meminfo: memFree=16827560/32770624 swapFree=67108852/67108860
[pid=2613] ppid=2610 vsize=10983192 memory=55368 CPUtime=0.38 cores=0,2,4,6
/proc/2613/stat : 2613 (java) S 2610 2613 1500 0 -1 1077944320 10892 13145 0 0 28 2 5 3 20 0 15 0 231593994 11246788608 13842 33554432000 4194304 4196468 140732347111152 140732347093696 139873895575287 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
/proc/2613/statm: 2745798 13842 3109 1 0 2708109 0
[pid=2613/tid=2666] ppid=2610 vsize=10983192 memory=8112282956445269571 CPUtime=0.29 cores=0,2,4,6
/proc/2613/task/2666/stat : 2666 (java) R 2610 2613 1500 0 -1 4202560 7348 13145 0 0 20 1 5 3 20 0 15 0 231594003 11246788608 13842 33554432000 4194304 4196468 140732347111152 139873867387296 139873875851115 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2667] ppid=2610 vsize=10983192 memory=7662137351800508496 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2667/stat : 2667 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594004 11246788608 13842 33554432000 4194304 4196468 140732347111152 139873899817488 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2668] ppid=2610 vsize=10983192 memory=2080 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2668/stat : 2668 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594004 11246788608 13842 33554432000 4194304 4196468 140732347111152 139873434864272 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2669] ppid=2610 vsize=10983192 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2669/stat : 2669 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594004 11246788608 13842 33554432000 4194304 4196468 140732347111152 139873433811216 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2670] ppid=2610 vsize=10983192 memory=4126316290023845779 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2670/stat : 2670 (java) S 2610 2613 1500 0 -1 1077944384 2 13145 0 0 0 0 5 3 20 0 15 0 231594004 11246788608 13842 33554432000 4194304 4196468 140732347111152 139873432758672 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2671] ppid=2610 vsize=10983192 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2671/stat : 2671 (java) S 2610 2613 1500 0 -1 1077944384 2 13145 0 0 0 0 5 3 20 0 15 0 231594005 11246788608 13842 33554432000 4194304 4196468 140732347111152 139873321192176 139873895586434 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2672] ppid=2610 vsize=10983192 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2672/stat : 2672 (java) S 2610 2613 1500 0 -1 1077944384 13 13145 0 0 0 0 5 3 20 0 15 0 231594006 11246788608 13842 33554432000 4194304 4196468 140732347111152 139872670049952 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2673] ppid=2610 vsize=10983192 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2673/stat : 2673 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594006 11246788608 13842 33554432000 4194304 4196468 140732347111152 139872522200304 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2674] ppid=2610 vsize=10983192 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2674/stat : 2674 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11246788608 13842 33554432000 4194304 4196468 140732347111152 139872214800848 139873895593883 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2675] ppid=2610 vsize=10983192 memory=0 CPUtime=0.09 cores=0,2,4,6
/proc/2613/task/2675/stat : 2675 (java) S 2610 2613 1500 0 -1 1077944384 549 13145 0 0 1 0 5 3 20 0 15 0 231594009 11246788608 13884 33554432000 4194304 4196468 140732347111152 139873320138992 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2676] ppid=2610 vsize=10983192 memory=0 CPUtime=0.09 cores=0,2,4,6
/proc/2613/task/2676/stat : 2676 (java) S 2610 2613 1500 0 -1 1077944384 85 13145 0 0 1 0 5 3 20 0 15 0 231594009 11246788608 13884 33554432000 4194304 4196468 140732347111152 139873319086448 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2677] ppid=2610 vsize=10983192 memory=0 CPUtime=0.13 cores=0,2,4,6
/proc/2613/task/2677/stat : 2677 (java) S 2610 2613 1500 0 -1 1077944384 702 13145 0 0 5 0 5 3 20 0 15 0 231594009 11246788608 13884 33554432000 4194304 4196468 140732347111152 139873318033392 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2678] ppid=2610 vsize=10983192 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2678/stat : 2678 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11246788608 13884 33554432000 4194304 4196468 140732347111152 139871784003936 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2679] ppid=2610 vsize=10983192 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2679/stat : 2679 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594009 11246788608 13884 33554432000 4194304 4196468 140732347111152 139873316981808 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
Current children cumulated CPU time: 0.38 s
Current children cumulated vsize: 10983192 KiB
Current children cumulated memory: 55368 KiB

[startup+0.700817 s]
/proc/loadavg: 1.63 1.45 1.47 4/218 2679
/proc/meminfo: memFree=16808456/32770624 swapFree=67108852/67108860
[pid=2613] ppid=2610 vsize=10983192 memory=88236 CPUtime=1 cores=0,2,4,6
/proc/2613/stat : 2613 (java) S 2610 2613 1500 0 -1 1077944320 17141 13145 0 0 88 4 5 3 20 0 15 0 231593994 11246788608 22059 33554432000 4194304 4196468 140732347111152 140732347093696 139873895575287 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
/proc/2613/statm: 2745798 22059 3247 1 0 2708109 0
[pid=2613/tid=2666] ppid=2610 vsize=10983192 memory=0 CPUtime=0.67 cores=0,2,4,6
/proc/2613/task/2666/stat : 2666 (java) R 2610 2613 1500 0 -1 4202560 12425 13145 0 0 56 3 5 3 20 0 15 0 231594003 11246788608 22059 33554432000 4194304 4196468 140732347111152 139873867388408 139873877140265 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2667] ppid=2610 vsize=10983192 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2667/stat : 2667 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594004 11246788608 22059 33554432000 4194304 4196468 140732347111152 139873899817488 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2668] ppid=2610 vsize=10983192 memory=3560 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2668/stat : 2668 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594004 11246788608 22059 33554432000 4194304 4196468 140732347111152 139873434864272 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2669] ppid=2610 vsize=10983192 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2669/stat : 2669 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594004 11246788608 22059 33554432000 4194304 4196468 140732347111152 139873433811216 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2670] ppid=2610 vsize=10983192 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2670/stat : 2670 (java) S 2610 2613 1500 0 -1 1077944384 2 13145 0 0 0 0 5 3 20 0 15 0 231594004 11246788608 22059 33554432000 4194304 4196468 140732347111152 139873432758672 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2671] ppid=2610 vsize=10983192 memory=4420 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2671/stat : 2671 (java) S 2610 2613 1500 0 -1 1077944384 5 13145 0 0 0 0 5 3 20 0 15 0 231594005 11246788608 22059 33554432000 4194304 4196468 140732347111152 139873321192176 139873895586434 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2672] ppid=2610 vsize=10983192 memory=6628 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2672/stat : 2672 (java) S 2610 2613 1500 0 -1 1077944384 13 13145 0 0 0 0 5 3 20 0 15 0 231594006 11246788608 22059 33554432000 4194304 4196468 140732347111152 139872670049952 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2673] ppid=2610 vsize=10983192 memory=8836 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2673/stat : 2673 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594006 11246788608 22059 33554432000 4194304 4196468 140732347111152 139872522200304 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2674] ppid=2610 vsize=10983192 memory=11044 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2674/stat : 2674 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11246788608 22059 33554432000 4194304 4196468 140732347111152 139872214800848 139873895593883 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2675] ppid=2610 vsize=10983192 memory=13252 CPUtime=0.15 cores=0,2,4,6
/proc/2613/task/2675/stat : 2675 (java) S 2610 2613 1500 0 -1 1077944384 926 13145 0 0 7 0 5 3 20 0 15 0 231594009 11246788608 22059 33554432000 4194304 4196468 140732347111152 139873320138992 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2676] ppid=2610 vsize=10983192 memory=15460 CPUtime=0.18 cores=0,2,4,6
/proc/2613/task/2676/stat : 2676 (java) S 2610 2613 1500 0 -1 1077944384 698 13145 0 0 10 0 5 3 20 0 15 0 231594009 11246788608 22059 33554432000 4194304 4196468 140732347111152 139873319086448 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2677] ppid=2610 vsize=10983192 memory=17668 CPUtime=0.21 cores=0,2,4,6
/proc/2613/task/2677/stat : 2677 (java) S 2610 2613 1500 0 -1 1077944384 869 13145 0 0 13 0 5 3 20 0 15 0 231594009 11246788608 22059 33554432000 4194304 4196468 140732347111152 139873318033392 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2678] ppid=2610 vsize=10983192 memory=19876 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2678/stat : 2678 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11246788608 22059 33554432000 4194304 4196468 140732347111152 139871784003936 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2679] ppid=2610 vsize=10983192 memory=22084 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2679/stat : 2679 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594009 11246788608 22059 33554432000 4194304 4196468 140732347111152 139873316981808 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
Current children cumulated CPU time: 1 s
Current children cumulated vsize: 10983192 KiB
Current children cumulated memory: 88236 KiB

[startup+1.5008 s]
/proc/loadavg: 1.63 1.45 1.47 8/218 2679
/proc/meminfo: memFree=16722744/32770624 swapFree=67108852/67108860
[pid=2613] ppid=2610 vsize=10993996 memory=230572 CPUtime=3.05 cores=0,2,4,6
/proc/2613/stat : 2613 (java) S 2610 2613 1500 0 -1 1077944320 23189 13145 0 0 287 10 5 3 20 0 15 0 231593994 11257851904 57643 33554432000 4194304 4196468 140732347111152 140732347093696 139873895575287 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
/proc/2613/statm: 2748499 57643 3460 1 0 2710157 0
[pid=2613/tid=2666] ppid=2610 vsize=10993996 memory=0 CPUtime=1.45 cores=0,2,4,6
/proc/2613/task/2666/stat : 2666 (java) R 2610 2613 1500 0 -1 4202560 15399 13145 0 0 131 6 5 3 20 0 15 0 231594003 11257851904 57643 33554432000 4194304 4196468 140732347111152 139873867407872 139873895587222 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2667] ppid=2610 vsize=10993996 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2667/stat : 2667 (java) S 2610 2613 1500 0 -1 1077944384 4 13145 0 0 0 0 5 3 20 0 15 0 231594004 11257851904 57643 33554432000 4194304 4196468 140732347111152 139873899817488 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2668] ppid=2610 vsize=10993996 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2668/stat : 2668 (java) S 2610 2613 1500 0 -1 1077944384 2 13145 0 0 0 0 5 3 20 0 15 0 231594004 11257851904 57643 33554432000 4194304 4196468 140732347111152 139873434864272 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2669] ppid=2610 vsize=10993996 memory=3683998604062831409 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2669/stat : 2669 (java) S 2610 2613 1500 0 -1 1077944384 220 13145 0 0 0 0 5 3 20 0 15 0 231594004 11257851904 57643 33554432000 4194304 4196468 140732347111152 139873433811216 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2670] ppid=2610 vsize=10993996 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2670/stat : 2670 (java) S 2610 2613 1500 0 -1 1077944384 101 13145 0 0 0 0 5 3 20 0 15 0 231594004 11257851904 57643 33554432000 4194304 4196468 140732347111152 139873432758672 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2671] ppid=2610 vsize=10993996 memory=-7965959130280075168 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2671/stat : 2671 (java) S 2610 2613 1500 0 -1 1077944384 32 13145 0 0 0 0 5 3 20 0 15 0 231594005 11257851904 57643 33554432000 4194304 4196468 140732347111152 139873321192176 139873895586434 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2672] ppid=2610 vsize=10993996 memory=279264008153344 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2672/stat : 2672 (java) S 2610 2613 1500 0 -1 1077944384 13 13145 0 0 0 0 5 3 20 0 15 0 231594006 11257851904 57643 33554432000 4194304 4196468 140732347111152 139872670049952 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2673] ppid=2610 vsize=10993996 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2673/stat : 2673 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594006 11257851904 57643 33554432000 4194304 4196468 140732347111152 139872522200304 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2674] ppid=2610 vsize=10993996 memory=1944 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2674/stat : 2674 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11257851904 57643 33554432000 4194304 4196468 140732347111152 139872214800848 139873895593883 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2675] ppid=2610 vsize=10993996 memory=5772 CPUtime=0.62 cores=0,2,4,6
/proc/2613/task/2675/stat : 2675 (java) S 2610 2613 1500 0 -1 1077944384 2089 13145 0 0 54 0 5 3 20 0 15 0 231594009 11257851904 57643 33554432000 4194304 4196468 140732347111152 139873320138992 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2676] ppid=2610 vsize=10993996 memory=1444 CPUtime=0.61 cores=0,2,4,6
/proc/2613/task/2676/stat : 2676 (java) S 2610 2613 1500 0 -1 1077944384 1429 13145 0 0 53 0 5 3 20 0 15 0 231594009 11257851904 57643 33554432000 4194304 4196468 140732347111152 139873319086448 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2677] ppid=2610 vsize=10993996 memory=1160 CPUtime=0.53 cores=0,2,4,6
/proc/2613/task/2677/stat : 2677 (java) R 2610 2613 1500 0 -1 4202560 1702 13145 0 0 45 0 5 3 20 0 15 0 231594009 11257851904 57643 33554432000 4194304 4196468 140732347111152 139873318033392 139873895596634 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2678] ppid=2610 vsize=10993996 memory=968 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2678/stat : 2678 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11257851904 57643 33554432000 4194304 4196468 140732347111152 139871784003936 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2679] ppid=2610 vsize=10993996 memory=12144 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2679/stat : 2679 (java) S 2610 2613 1500 0 -1 1077944384 1 13145 0 0 0 0 5 3 20 0 15 0 231594009 11257851904 57643 33554432000 4194304 4196468 140732347111152 139873316981808 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
Current children cumulated CPU time: 3.05 s
Current children cumulated vsize: 10993996 KiB

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

/proc/2613/task/2666/stat : 2666 (java) R 2610 2613 1500 0 -1 4202560 95591 13145 0 0 236193 47 5 3 20 0 15 0 231594003 11343855616 285361 33554432000 4194304 4196468 140732347111152 139873867409584 139873471608336 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2667] ppid=2610 vsize=11077984 memory=1139396 CPUtime=8.9 cores=0,2,4,6
/proc/2613/task/2667/stat : 2667 (java) S 2610 2613 1500 0 -1 1077944384 12353 13145 0 0 838 44 5 3 20 0 15 0 231594004 11343855616 285361 33554432000 4194304 4196468 140732347111152 139873899817488 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2668] ppid=2610 vsize=11077984 memory=1141444 CPUtime=8.93 cores=0,2,4,6
/proc/2613/task/2668/stat : 2668 (java) S 2610 2613 1500 0 -1 1077944384 8873 13145 0 0 837 48 5 3 20 0 15 0 231594004 11343855616 285361 33554432000 4194304 4196468 140732347111152 139873434864272 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2669] ppid=2610 vsize=11077984 memory=1139384 CPUtime=8.92 cores=0,2,4,6
/proc/2613/task/2669/stat : 2669 (java) S 2610 2613 1500 0 -1 1077944384 13363 13145 0 0 842 42 5 3 20 0 15 0 231594004 11343855616 285361 33554432000 4194304 4196468 140732347111152 139873433811216 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2670] ppid=2610 vsize=11077984 memory=1141444 CPUtime=8.89 cores=0,2,4,6
/proc/2613/task/2670/stat : 2670 (java) S 2610 2613 1500 0 -1 1077944384 11782 13145 0 0 838 43 5 3 20 0 15 0 231594004 11343855616 285361 33554432000 4194304 4196468 140732347111152 139873432758672 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2671] ppid=2610 vsize=11077984 memory=8 CPUtime=8.16 cores=0,2,4,6
/proc/2613/task/2671/stat : 2671 (java) S 2610 2613 1500 0 -1 1077944384 16680 13145 0 0 766 42 5 3 20 0 15 0 231594005 11343855616 285361 33554432000 4194304 4196468 140732347111152 139873321192176 139873895586434 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2672] ppid=2610 vsize=11077984 memory=792 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2672/stat : 2672 (java) S 2610 2613 1500 0 -1 1077944384 27 13145 0 0 0 0 5 3 20 0 15 0 231594006 11343855616 285361 33554432000 4194304 4196468 140732347111152 139872670050016 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2673] ppid=2610 vsize=11077984 memory=1224 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2673/stat : 2673 (java) S 2610 2613 1500 0 -1 1077944384 15 13145 0 0 0 0 5 3 20 0 15 0 231594006 11343855616 285361 33554432000 4194304 4196468 140732347111152 139872522200320 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2674] ppid=2610 vsize=11077984 memory=279264010195840 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2674/stat : 2674 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11343855616 285361 33554432000 4194304 4196468 140732347111152 139872214800848 139873895593883 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2675] ppid=2610 vsize=11077984 memory=8514701219781441950 CPUtime=4.87 cores=0,2,4,6
/proc/2613/task/2675/stat : 2675 (java) S 2610 2613 1500 0 -1 1077944384 25357 13145 0 0 476 3 5 3 20 0 15 0 231594009 11343855616 285361 33554432000 4194304 4196468 140732347111152 139873320138992 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2676] ppid=2610 vsize=11077984 memory=828 CPUtime=5.64 cores=0,2,4,6
/proc/2613/task/2676/stat : 2676 (java) S 2610 2613 1500 0 -1 1077944384 27849 13145 0 0 552 4 5 3 20 0 15 0 231594009 11343855616 285361 33554432000 4194304 4196468 140732347111152 139873319086448 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2677] ppid=2610 vsize=11077984 memory=1408 CPUtime=2.14 cores=0,2,4,6
/proc/2613/task/2677/stat : 2677 (java) S 2610 2613 1500 0 -1 1077944384 22794 13145 0 0 201 5 5 3 20 0 15 0 231594009 11343855616 285361 33554432000 4194304 4196468 140732347111152 139873318033392 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2678] ppid=2610 vsize=11077984 memory=62992 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2678/stat : 2678 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11343855616 285361 33554432000 4194304 4196468 140732347111152 139871784003936 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2679] ppid=2610 vsize=11077984 memory=1228 CPUtime=1.46 cores=0,2,4,6
/proc/2613/task/2679/stat : 2679 (java) S 2610 2613 1500 0 -1 1077944384 1460 13145 0 0 70 68 5 3 20 0 15 0 231594009 11343855616 285361 33554432000 4194304 4196468 140732347111152 139873316981808 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
Current children cumulated CPU time: 2419.78 s
Current children cumulated vsize: 11077984 KiB
Current children cumulated memory: 1141444 KiB

[startup+2442.3 s]
/proc/loadavg: 1.31 1.26 1.31 3/218 2886
/proc/meminfo: memFree=14755636/32770624 swapFree=67108852/67108860
[pid=2613] ppid=2610 vsize=11077984 memory=1141512 CPUtime=2480.43 cores=0,2,4,6
/proc/2613/stat : 2613 (java) S 2610 2613 1500 0 -1 1077944320 239726 13145 0 0 247732 303 5 3 20 0 15 0 231593994 11343855616 285378 33554432000 4194304 4196468 140732347111152 140732347093696 139873895575287 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
/proc/2613/statm: 2769496 285378 3524 1 0 2731149 0
[pid=2613/tid=2666] ppid=2610 vsize=11077984 memory=968 CPUtime=2422.01 cores=0,2,4,6
/proc/2613/task/2666/stat : 2666 (java) R 2610 2613 1500 0 -1 4202560 96358 13145 0 0 242146 47 5 3 20 0 15 0 231594003 11343855616 285378 33554432000 4194304 4196468 140732347111152 139873867409264 139873471607681 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2667] ppid=2610 vsize=11077984 memory=1141512 CPUtime=9.12 cores=0,2,4,6
/proc/2613/task/2667/stat : 2667 (java) S 2610 2613 1500 0 -1 1077944384 12422 13145 0 0 860 44 5 3 20 0 15 0 231594004 11343855616 285378 33554432000 4194304 4196468 140732347111152 139873899817488 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2668] ppid=2610 vsize=11077984 memory=1141512 CPUtime=9.14 cores=0,2,4,6
/proc/2613/task/2668/stat : 2668 (java) S 2610 2613 1500 0 -1 1077944384 8883 13145 0 0 857 49 5 3 20 0 15 0 231594004 11343855616 285378 33554432000 4194304 4196468 140732347111152 139873434864272 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2669] ppid=2610 vsize=11077984 memory=1141512 CPUtime=9.15 cores=0,2,4,6
/proc/2613/task/2669/stat : 2669 (java) S 2610 2613 1500 0 -1 1077944384 13619 13145 0 0 863 44 5 3 20 0 15 0 231594004 11343855616 285378 33554432000 4194304 4196468 140732347111152 139873433811216 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2670] ppid=2610 vsize=11077984 memory=1141512 CPUtime=9.11 cores=0,2,4,6
/proc/2613/task/2670/stat : 2670 (java) S 2610 2613 1500 0 -1 1077944384 11845 13145 0 0 859 44 5 3 20 0 15 0 231594004 11343855616 285378 33554432000 4194304 4196468 140732347111152 139873432758672 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2671] ppid=2610 vsize=11077984 memory=1141512 CPUtime=8.36 cores=0,2,4,6
/proc/2613/task/2671/stat : 2671 (java) S 2610 2613 1500 0 -1 1077944384 16875 13145 0 0 785 43 5 3 20 0 15 0 231594005 11343855616 285378 33554432000 4194304 4196468 140732347111152 139873321192176 139873895586434 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2672] ppid=2610 vsize=11077984 memory=1141512 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2672/stat : 2672 (java) S 2610 2613 1500 0 -1 1077944384 27 13145 0 0 0 0 5 3 20 0 15 0 231594006 11343855616 285378 33554432000 4194304 4196468 140732347111152 139872670050016 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2673] ppid=2610 vsize=11077984 memory=1141468 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2673/stat : 2673 (java) S 2610 2613 1500 0 -1 1077944384 15 13145 0 0 0 0 5 3 20 0 15 0 231594006 11343855616 285378 33554432000 4194304 4196468 140732347111152 139872522200320 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2674] ppid=2610 vsize=11077984 memory=1141512 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2674/stat : 2674 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11343855616 285378 33554432000 4194304 4196468 140732347111152 139872214800848 139873895593883 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2675] ppid=2610 vsize=11077984 memory=3560 CPUtime=4.88 cores=0,2,4,6
/proc/2613/task/2675/stat : 2675 (java) S 2610 2613 1500 0 -1 1077944384 25359 13145 0 0 476 4 5 3 20 0 15 0 231594009 11343855616 285378 33554432000 4194304 4196468 140732347111152 139873320138992 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2676] ppid=2610 vsize=11077984 memory=912 CPUtime=5.64 cores=0,2,4,6
/proc/2613/task/2676/stat : 2676 (java) S 2610 2613 1500 0 -1 1077944384 27851 13145 0 0 552 4 5 3 20 0 15 0 231594009 11343855616 285378 33554432000 4194304 4196468 140732347111152 139873319086448 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2677] ppid=2610 vsize=11077984 memory=3848 CPUtime=2.14 cores=0,2,4,6
/proc/2613/task/2677/stat : 2677 (java) S 2610 2613 1500 0 -1 1077944384 22796 13145 0 0 201 5 5 3 20 0 15 0 231594009 11343855616 285378 33554432000 4194304 4196468 140732347111152 139873318033392 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2678] ppid=2610 vsize=11077984 memory=1141512 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2678/stat : 2678 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11343855616 285378 33554432000 4194304 4196468 140732347111152 139871784003936 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2679] ppid=2610 vsize=11077984 memory=1141512 CPUtime=1.49 cores=0,2,4,6
/proc/2613/task/2679/stat : 2679 (java) S 2610 2613 1500 0 -1 1077944384 1478 13145 0 0 71 70 5 3 20 0 15 0 231594009 11343855616 285378 33554432000 4194304 4196468 140732347111152 139873316981808 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
Current children cumulated CPU time: 2480.43 s
Current children cumulated vsize: 11077984 KiB
Current children cumulated memory: 1141512 KiB



Maximum CPU time exceeded: sending SIGTERM then SIGKILL

[startup+2481.5 s]
/proc/loadavg: 1.53 1.33 1.33 3/218 2887
/proc/meminfo: memFree=14755404/32770624 swapFree=67108852/67108860
[pid=2613] ppid=2610 vsize=11077984 memory=1141568 CPUtime=2520.04 cores=0,2,4,6
/proc/2613/stat : 2613 (java) S 2610 2613 1500 0 -1 1077944320 240771 13145 0 0 251690 306 5 3 20 0 15 0 231593994 11343855616 285392 33554432000 4194304 4196468 140732347111152 140732347093696 139873895575287 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
/proc/2613/statm: 2769496 285392 3524 1 0 2731149 0
[pid=2613/tid=2666] ppid=2610 vsize=11077984 memory=1141568 CPUtime=2460.92 cores=0,2,4,6
/proc/2613/task/2666/stat : 2666 (java) R 2610 2613 1500 0 -1 4202560 96787 13145 0 0 246036 48 5 3 20 0 15 0 231594003 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873867409504 139873481367097 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2667] ppid=2610 vsize=11077984 memory=1141568 CPUtime=9.26 cores=0,2,4,6
/proc/2613/task/2667/stat : 2667 (java) S 2610 2613 1500 0 -1 1077944384 12435 13145 0 0 873 45 5 3 20 0 15 0 231594004 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873899817488 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2668] ppid=2610 vsize=11077984 memory=1141568 CPUtime=9.28 cores=0,2,4,6
/proc/2613/task/2668/stat : 2668 (java) S 2610 2613 1500 0 -1 1077944384 8923 13145 0 0 870 50 5 3 20 0 15 0 231594004 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873434864272 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2669] ppid=2610 vsize=11077984 memory=1141568 CPUtime=9.29 cores=0,2,4,6
/proc/2613/task/2669/stat : 2669 (java) S 2610 2613 1500 0 -1 1077944384 13894 13145 0 0 877 44 5 3 20 0 15 0 231594004 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873433811216 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2670] ppid=2610 vsize=11077984 memory=36084 CPUtime=9.25 cores=0,2,4,6
/proc/2613/task/2670/stat : 2670 (java) S 2610 2613 1500 0 -1 1077944384 11916 13145 0 0 873 44 5 3 20 0 15 0 231594004 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873432758672 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2671] ppid=2610 vsize=11077984 memory=1141568 CPUtime=8.5 cores=0,2,4,6
/proc/2613/task/2671/stat : 2671 (java) S 2610 2613 1500 0 -1 1077944384 17070 13145 0 0 798 44 5 3 20 0 15 0 231594005 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873321192176 139873895586434 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2672] ppid=2610 vsize=11077984 memory=1141524 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2672/stat : 2672 (java) S 2610 2613 1500 0 -1 1077944384 27 13145 0 0 0 0 5 3 20 0 15 0 231594006 11343855616 285392 33554432000 4194304 4196468 140732347111152 139872670050016 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2673] ppid=2610 vsize=11077984 memory=1141524 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2673/stat : 2673 (java) S 2610 2613 1500 0 -1 1077944384 15 13145 0 0 0 0 5 3 20 0 15 0 231594006 11343855616 285392 33554432000 4194304 4196468 140732347111152 139872522200320 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2674] ppid=2610 vsize=11077984 memory=1141568 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2674/stat : 2674 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11343855616 285392 33554432000 4194304 4196468 140732347111152 139872214800848 139873895593883 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2675] ppid=2610 vsize=11077984 memory=3236 CPUtime=4.88 cores=0,2,4,6
/proc/2613/task/2675/stat : 2675 (java) S 2610 2613 1500 0 -1 1077944384 25361 13145 0 0 476 4 5 3 20 0 15 0 231594009 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873320138992 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2676] ppid=2610 vsize=11077984 memory=4872558044660077418 CPUtime=5.64 cores=0,2,4,6
/proc/2613/task/2676/stat : 2676 (java) S 2610 2613 1500 0 -1 1077944384 27853 13145 0 0 552 4 5 3 20 0 15 0 231594009 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873319086448 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2677] ppid=2610 vsize=11077984 memory=7528 CPUtime=2.14 cores=0,2,4,6
/proc/2613/task/2677/stat : 2677 (java) S 2610 2613 1500 0 -1 1077944384 22798 13145 0 0 201 5 5 3 20 0 15 0 231594009 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873318033392 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2678] ppid=2610 vsize=11077984 memory=1141468 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2678/stat : 2678 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11343855616 285392 33554432000 4194304 4196468 140732347111152 139871784003936 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2679] ppid=2610 vsize=11077984 memory=62992 CPUtime=1.51 cores=0,2,4,6
/proc/2613/task/2679/stat : 2679 (java) S 2610 2613 1500 0 -1 1077944384 1494 13145 0 0 73 70 5 3 20 0 15 0 231594009 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873316981808 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
Current children cumulated CPU time: 2520.04 s
Current children cumulated vsize: 11077984 KiB
Current children cumulated memory: 1141568 KiB

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

[startup+2481.54 s]
# the end of solver process 2613 was just reported to runsolver
# cumulated CPU time of all completed processes:  user=2516.98 s, system=3.10494 s

Solver just ended.
??? end of watcher thread
Dumping a history of the last processes samples

[startup+2481.5 s]
/proc/loadavg: 1.53 1.33 1.33 3/218 2887
/proc/meminfo: memFree=14755404/32770624 swapFree=67108852/67108860
[pid=2613] ppid=2610 vsize=11077984 memory=1141568 CPUtime=2520.04 cores=0,2,4,6
/proc/2613/stat : 2613 (java) S 2610 2613 1500 0 -1 1077944320 240771 13145 0 0 251690 306 5 3 20 0 15 0 231593994 11343855616 285392 33554432000 4194304 4196468 140732347111152 140732347093696 139873895575287 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
/proc/2613/statm: 2769496 285392 3524 1 0 2731149 0
[pid=2613/tid=2666] ppid=2610 vsize=11077984 memory=1141568 CPUtime=2460.92 cores=0,2,4,6
/proc/2613/task/2666/stat : 2666 (java) R 2610 2613 1500 0 -1 4202560 96787 13145 0 0 246036 48 5 3 20 0 15 0 231594003 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873867409504 139873481367097 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2667] ppid=2610 vsize=11077984 memory=1141568 CPUtime=9.26 cores=0,2,4,6
/proc/2613/task/2667/stat : 2667 (java) S 2610 2613 1500 0 -1 1077944384 12435 13145 0 0 873 45 5 3 20 0 15 0 231594004 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873899817488 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2668] ppid=2610 vsize=11077984 memory=1141568 CPUtime=9.28 cores=0,2,4,6
/proc/2613/task/2668/stat : 2668 (java) S 2610 2613 1500 0 -1 1077944384 8923 13145 0 0 870 50 5 3 20 0 15 0 231594004 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873434864272 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2669] ppid=2610 vsize=11077984 memory=1141568 CPUtime=9.29 cores=0,2,4,6
/proc/2613/task/2669/stat : 2669 (java) S 2610 2613 1500 0 -1 1077944384 13894 13145 0 0 877 44 5 3 20 0 15 0 231594004 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873433811216 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2670] ppid=2610 vsize=11077984 memory=36084 CPUtime=9.25 cores=0,2,4,6
/proc/2613/task/2670/stat : 2670 (java) S 2610 2613 1500 0 -1 1077944384 11916 13145 0 0 873 44 5 3 20 0 15 0 231594004 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873432758672 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2671] ppid=2610 vsize=11077984 memory=1141568 CPUtime=8.5 cores=0,2,4,6
/proc/2613/task/2671/stat : 2671 (java) S 2610 2613 1500 0 -1 1077944384 17070 13145 0 0 798 44 5 3 20 0 15 0 231594005 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873321192176 139873895586434 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2672] ppid=2610 vsize=11077984 memory=1141524 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2672/stat : 2672 (java) S 2610 2613 1500 0 -1 1077944384 27 13145 0 0 0 0 5 3 20 0 15 0 231594006 11343855616 285392 33554432000 4194304 4196468 140732347111152 139872670050016 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2673] ppid=2610 vsize=11077984 memory=1141524 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2673/stat : 2673 (java) S 2610 2613 1500 0 -1 1077944384 15 13145 0 0 0 0 5 3 20 0 15 0 231594006 11343855616 285392 33554432000 4194304 4196468 140732347111152 139872522200320 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2674] ppid=2610 vsize=11077984 memory=1141568 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2674/stat : 2674 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11343855616 285392 33554432000 4194304 4196468 140732347111152 139872214800848 139873895593883 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2675] ppid=2610 vsize=11077984 memory=3236 CPUtime=4.88 cores=0,2,4,6
/proc/2613/task/2675/stat : 2675 (java) S 2610 2613 1500 0 -1 1077944384 25361 13145 0 0 476 4 5 3 20 0 15 0 231594009 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873320138992 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2676] ppid=2610 vsize=11077984 memory=4872558044660077418 CPUtime=5.64 cores=0,2,4,6
/proc/2613/task/2676/stat : 2676 (java) S 2610 2613 1500 0 -1 1077944384 27853 13145 0 0 552 4 5 3 20 0 15 0 231594009 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873319086448 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2677] ppid=2610 vsize=11077984 memory=7528 CPUtime=2.14 cores=0,2,4,6
/proc/2613/task/2677/stat : 2677 (java) S 2610 2613 1500 0 -1 1077944384 22798 13145 0 0 201 5 5 3 20 0 15 0 231594009 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873318033392 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2678] ppid=2610 vsize=11077984 memory=1141468 CPUtime=0.08 cores=0,2,4,6
/proc/2613/task/2678/stat : 2678 (java) S 2610 2613 1500 0 -1 1077944384 3 13145 0 0 0 0 5 3 20 0 15 0 231594009 11343855616 285392 33554432000 4194304 4196468 140732347111152 139871784003936 139873895585493 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
[pid=2613/tid=2679] ppid=2610 vsize=11077984 memory=62992 CPUtime=1.51 cores=0,2,4,6
/proc/2613/task/2679/stat : 2679 (java) S 2610 2613 1500 0 -1 1077944384 1494 13145 0 0 73 70 5 3 20 0 15 0 231594009 11343855616 285392 33554432000 4194304 4196468 140732347111152 139873316981808 139873895586434 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30085120 140732347116132 140732347118940 140732347118940 140732347121615 0
Current children cumulated CPU time: 2520.04 s
Current children cumulated vsize: 11077984 KiB
Current children cumulated memory: 1141568 KiB

Child status: 143
Real time (s): 2481.54
CPU time (s): 2520.09
CPU user time (s): 2516.98
CPU system time (s): 3.10494
CPU usage (%): 101.553
Max. virtual memory (cumulated for all children) (KiB): 11080812
Max. memory (cumulated for all children) (KiB): 1186484

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 2516.98
system time used= 3.10494
maximum resident set size= 1188532
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 255459
page faults= 0
swaps= 0
block input operations= 0
block output operations= 2960
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 234031
involuntary context switches= 8084


# summary of solver processes directly reported to runsolver:
#   pid: 2613
#   total CPU time (s): 2520.09
#   total CPU user time (s): 2516.98
#   total CPU system time (s): 3.10494

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 19.1264 second user time and 19.5891 second system time

The end

Launcher Data

Begin job on node135 at 2018-08-13 08:05:08
IDJOB=4305188
IDBENCH=141578
IDSOLVER=2781
FILE ID=node135/4305188-1534140308
RUNJOBID= node135-1534137835-2125
PBS_JOBID= 21037020
Free space on /tmp= 42692 MiB

SOLVER NAME= Concrete 3.9.2-SuperNG
BENCH NAME= XCSP18/Frb/frb-59-26-1-mgd_c18.xml
COMMAND LINE= bin/xcsp-3-concrete -J-Xss64M -randomseed=RANDOMSEED -superng BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4305188-1534140308/watcher-4305188-1534140308 -o /tmp/evaluation-result-4305188-1534140308/solver-4305188-1534140308 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node135-1534137835-2125 --watchdog 2580  bin/xcsp-3-concrete -J-Xss64M -randomseed=422338769 -superng HOME/instance-4305188-1534140308.xml

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

MD5SUM BENCH= eb7f3f1c65ad30d4418b69bfa000eb45
RANDOM SEED=422338769

node135.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.50
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.50
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.50
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.50
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:        16872392 kB
MemAvailable:   31735488 kB
Buffers:          253584 kB
Cached:         14704600 kB
SwapCached:            8 kB
Active:          7610720 kB
Inactive:        7570776 kB
Active(anon):     172372 kB
Inactive(anon):   103288 kB
Active(file):    7438348 kB
Inactive(file):  7467488 kB
Unevictable:        7244 kB
Mlocked:            7244 kB
SwapTotal:      67108860 kB
SwapFree:       67108852 kB
Dirty:             53820 kB
Writeback:             0 kB
AnonPages:        230904 kB
Mapped:            75652 kB
Shmem:             49816 kB
Slab:             414032 kB
SReclaimable:     385720 kB
SUnreclaim:        28312 kB
KernelStack:        3584 kB
PageTables:         5804 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1436308 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    102400 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:       93568 kB
DirectMap2M:    33452032 kB

Free space on /tmp at the end= 42664 MiB
End job on node135 at 2018-08-13 08:46:30