Trace number 4296176

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.8 2018-06-13? (TO) 2520.11 2486.23

General information on the benchmark

NameEternity/
Eternity-08-08_c18.xml
MD5SUM631cb3d235a52ad054110af2866c45e9
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 variables208
Number of constraints97
Number of domains2
Minimum domain size12
Maximum domain size64
Distribution of domain sizes[{"size":12,"count":144},{"size":64,"count":64}]
Minimum variable degree1
Maximum variable degree9
Distribution of variable degrees[{"degree":1,"count":7},{"degree":2,"count":200},{"degree":9,"count":1}]
Minimum constraint arity1
Maximum constraint arity64
Distribution of constraint arities[{"arity":1,"count":32},{"arity":5,"count":64},{"arity":64,"count":1}]
Number of extensional constraints64
Number of intensional constraints32
Distribution of constraint types[{"type":"extension","count":64},{"type":"intension","count":32},{"type":"allDifferent","count":1}]
Optimization problemNO
Type of objective

Solver Data

0.98/0.75	c Concrete v3.8.1528841891564 running
2520.06/2486.21	Exception in thread "main" java.util.concurrent.TimeoutException
2520.06/2486.21		at concrete.MAC.mac(MAC.scala:188)
2520.06/2486.21		at concrete.MAC.$anonfun$oneRun$1(MAC.scala:252)
2520.06/2486.21		at scala.util.Try$.apply(Try.scala:209)
2520.06/2486.21		at cspom.StatisticsManager$.$anonfun$measure$1(StatisticsManager.scala:194)
2520.06/2486.21		at cspom.StatisticsManager$.$anonfun$measureTry$1(StatisticsManager.scala:182)
2520.06/2486.21		at scala.runtime.java8.JFunction0$mcZ$sp.apply(JFunction0$mcZ$sp.java:12)
2520.06/2486.21		at org.scalameter.MeasureBuilder.$anonfun$measure$1(MeasureBuilder.scala:61)
2520.06/2486.21		at org.scalameter.Measurer$Default.measure(Measurer.scala:133)
2520.06/2486.21		at org.scalameter.MeasureBuilder.measureWith(MeasureBuilder.scala:51)
2520.06/2486.21		at org.scalameter.MeasureBuilder.measure(MeasureBuilder.scala:61)
2520.06/2486.21		at cspom.StatisticsManager$.measureTry(StatisticsManager.scala:181)
2520.06/2486.21		at cspom.StatisticsManager$.measure(StatisticsManager.scala:194)
2520.06/2486.21		at concrete.MAC.oneRun(MAC.scala:253)
2520.06/2486.21		at concrete.MAC.nextSolution(MAC.scala:272)
2520.06/2486.21		at concrete.MAC.$anonfun$nextSolution$5(MAC.scala:336)
2520.06/2486.21		at concrete.ProblemState.map(ProblemState.scala:221)
2520.06/2486.21		at concrete.ProblemState.map(ProblemState.scala:204)
2520.06/2486.21		at concrete.MAC.nextSolution(MAC.scala:334)
2520.06/2486.21		at concrete.Solver.hasNext(Solver.scala:166)
2520.06/2486.21		at scala.collection.Iterator.toStream(Iterator.scala:1418)
2520.06/2486.21		at scala.collection.Iterator.toStream$(Iterator.scala:1417)
2520.06/2486.21		at concrete.Solver.toStream(Solver.scala:68)
2520.06/2486.21		at scala.collection.TraversableOnce.toIterable(TraversableOnce.scala:296)
2520.06/2486.21		at scala.collection.TraversableOnce.toIterable$(TraversableOnce.scala:296)
2520.06/2486.21		at concrete.Solver.toIterable(Solver.scala:68)
2520.06/2486.21		at concrete.runner.ConcreteRunner.$anonfun$run$2(ConcreteRunner.scala:78)
2520.06/2486.21		at scala.util.Success.$anonfun$map$1(Try.scala:251)
2520.06/2486.21		at scala.util.Success.map(Try.scala:209)
2520.06/2486.21		at concrete.runner.ConcreteRunner.run(ConcreteRunner.scala:68)
2520.06/2486.21		at concrete.runner.ConcreteRunner.run$(ConcreteRunner.scala:33)
2520.06/2486.21		at concrete.runner.XCSP3Concrete$.run(XCSP3Concrete.scala:18)
2520.06/2486.21		at concrete.runner.XCSP3Concrete$.delayedEndpoint$concrete$runner$XCSP3Concrete$1(XCSP3Concrete.scala:121)
2520.06/2486.21		at concrete.runner.XCSP3Concrete$delayedInit$body.apply(XCSP3Concrete.scala:18)
2520.06/2486.21		at scala.Function0.apply$mcV$sp(Function0.scala:34)
2520.06/2486.21		at scala.Function0.apply$mcV$sp$(Function0.scala:34)
2520.06/2486.21		at scala.runtime.AbstractFunction0.apply$mcV$sp(AbstractFunction0.scala:12)
2520.06/2486.21		at scala.App.$anonfun$main$1$adapted(App.scala:76)
2520.06/2486.21		at scala.collection.immutable.List.foreach(List.scala:389)
2520.06/2486.21		at scala.App.main(App.scala:76)
2520.06/2486.21		at scala.App.main$(App.scala:74)
2520.06/2486.21		at concrete.runner.XCSP3Concrete$.main(XCSP3Concrete.scala:18)
2520.06/2486.21		at concrete.runner.XCSP3Concrete.main(XCSP3Concrete.scala)
2520.06/2486.21	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 (8140 MiB free)
  memory of node 1: 16384 MiB (14907 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4296176-1532616814/watcher-4296176-1532616814 -o /tmp/evaluation-result-4296176-1532616814/solver-4296176-1532616814 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node102-1532616809-10960 --watchdog 2580 bin/xcsp-3-concrete -J-Xss32M -randomseed=1679542655 HOME/instance-4296176-1532616814.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=11185, runsolver pid=11182

[startup+0.100057 s]*
/proc/loadavg: 1.41 0.89 0.96 3/206 11242
/proc/meminfo: memFree=23594936/32770624 swapFree=67077028/67108860
[pid=11185] ppid=11182 vsize=9972712 memory=17072 CPUtime=0.09 cores=0,2,4,6
/proc/11185/stat : 11185 (java) S 11182 11185 10929 0 -1 1077944320 4387 12914 0 0 1 1 5 2 20 0 6 0 79244598 10212057088 4268 33554432000 4194304 4196468 140727611512064 140727611494608 140355943341815 0 0 0 16784584 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
/proc/11185/statm: 2493178 4268 1934 1 0 2481616 0
[pid=11185/tid=11238] ppid=11182 vsize=9972712 memory=4279135703946853774 CPUtime=0.08 cores=0,2,4,6
/proc/11185/task/11238/stat : 11238 (java) R 11182 11185 10929 0 -1 4202560 2221 12914 0 0 1 0 5 2 20 0 6 0 79244607 10212057088 4268 33554432000 4194304 4196468 140727611512064 140355915178576 140355927422332 0 4 0 16784584 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11239] ppid=11182 vsize=9972712 memory=8257237230052613020 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11239/stat : 11239 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 6 0 79244608 10212057088 4268 33554432000 4194304 4196468 140727611512064 140355947584528 140355943352021 0 4 0 16784584 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11240] ppid=11182 vsize=9972712 memory=139637046621824 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11240/stat : 11240 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 6 0 79244608 10212057088 4268 33554432000 4194304 4196468 140727611512064 140355846474896 140355943352021 0 4 0 16784584 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11241] ppid=11182 vsize=9972712 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11241/stat : 11241 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 6 0 79244608 10212057088 4268 33554432000 4194304 4196468 140727611512064 140355845421840 140355943352021 0 4 0 16784584 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11242] ppid=11182 vsize=9972712 memory=-1 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11242/stat : 11242 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 6 0 79244608 10212057088 4268 33554432000 4194304 4196468 140727611512064 140355844369296 140355943352021 0 4 0 16784584 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
Current children cumulated CPU time: 0.09 s
Current children cumulated vsize: 9972712 KiB
Current children cumulated memory: 17072 KiB

[startup+0.210042 s]*
/proc/loadavg: 1.41 0.89 0.96 6/215 11251
/proc/meminfo: memFree=23570996/32770624 swapFree=67077028/67108860
[pid=11185] ppid=11182 vsize=10818904 memory=44700 CPUtime=0.25 cores=0,2,4,6
/proc/11185/stat : 11185 (java) S 11182 11185 10929 0 -1 1077944320 7879 12914 0 0 16 2 5 2 20 0 15 0 79244598 11078557696 11175 33554432000 4194304 4196468 140727611512064 140727611494608 140355943341815 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
/proc/11185/statm: 2704726 11175 2944 1 0 2667149 0
[pid=11185/tid=11238] ppid=11182 vsize=10818904 memory=7022364594140610616 CPUtime=0.18 cores=0,2,4,6
/proc/11185/task/11238/stat : 11238 (java) R 11182 11185 10929 0 -1 4202560 4565 12914 0 0 10 1 5 2 20 0 15 0 79244607 11078557696 11307 33554432000 4194304 4196468 140727611512064 140355915138736 140355923617522 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11239] ppid=11182 vsize=10818904 memory=342 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11239/stat : 11239 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244608 11078557696 11307 33554432000 4194304 4196468 140727611512064 140355947584528 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11240] ppid=11182 vsize=10818904 memory=139637046633042 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11240/stat : 11240 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244608 11078557696 11307 33554432000 4194304 4196468 140727611512064 140355846474896 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11241] ppid=11182 vsize=10818904 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11241/stat : 11241 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244608 11078557696 11307 33554432000 4194304 4196468 140727611512064 140355845421840 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11242] ppid=11182 vsize=10818904 memory=-1 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11242/stat : 11242 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244608 11078557696 11307 33554432000 4194304 4196468 140727611512064 140355844369296 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11243] ppid=11182 vsize=10818904 memory=139637046621824 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11243/stat : 11243 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244610 11078557696 11307 33554432000 4194304 4196468 140727611512064 140354945583344 140355943352962 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11244] ppid=11182 vsize=10818904 memory=-1 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11244/stat : 11244 (java) S 11182 11185 10929 0 -1 1077944384 33 12914 0 0 0 0 5 2 20 0 15 0 79244610 11078557696 11307 33554432000 4194304 4196468 140727611512064 140354944529568 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11245] ppid=11182 vsize=10818904 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11245/stat : 11245 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244610 11078557696 11307 33554432000 4194304 4196468 140727611512064 140354833605360 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11246] ppid=11182 vsize=10818904 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11246/stat : 11246 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244613 11078557696 11307 33554432000 4194304 4196468 140727611512064 140354498062288 140355943360411 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11247] ppid=11182 vsize=10818904 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/11185/task/11247/stat : 11247 (java) S 11182 11185 10929 0 -1 1077944384 490 12914 0 0 1 0 5 2 20 0 15 0 79244613 11078557696 11307 33554432000 4194304 4196468 140727611512064 140354910972656 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11248] ppid=11182 vsize=10818904 memory=-1 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11248/stat : 11248 (java) S 11182 11185 10929 0 -1 1077944384 121 12914 0 0 0 0 5 2 20 0 15 0 79244613 11078557696 11307 33554432000 4194304 4196468 140727611512064 140354909920112 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11249] ppid=11182 vsize=10818904 memory=139637046621824 CPUtime=0.1 cores=0,2,4,6
/proc/11185/task/11249/stat : 11249 (java) S 11182 11185 10929 0 -1 1077944384 612 12914 0 0 3 0 5 2 20 0 15 0 79244613 11078557696 11307 33554432000 4194304 4196468 140727611512064 140354908867056 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11250] ppid=11182 vsize=10818904 memory=-1 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11250/stat : 11250 (java) S 11182 11185 10929 0 -1 1077944384 3 12914 0 0 0 0 5 2 20 0 15 0 79244613 11078557696 11307 33554432000 4194304 4196468 140727611512064 140354229627744 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11251] ppid=11182 vsize=10818904 memory=139637046621824 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11251/stat : 11251 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244614 11078557696 11307 33554432000 4194304 4196468 140727611512064 140354907814448 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
Current children cumulated CPU time: 0.25 s
Current children cumulated vsize: 10818904 KiB
Current children cumulated memory: 44700 KiB

[startup+0.310153 s]*
/proc/loadavg: 1.41 0.89 0.96 3/215 11251
/proc/meminfo: memFree=23530728/32770624 swapFree=67077028/67108860
[pid=11185] ppid=11182 vsize=10819352 memory=55932 CPUtime=0.38 cores=0,2,4,6
/proc/11185/stat : 11185 (java) S 11182 11185 10929 0 -1 1077944320 10550 12914 0 0 28 3 5 2 20 0 15 0 79244598 11079016448 13983 33554432000 4194304 4196468 140727611512064 140727611494608 140355943341815 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
/proc/11185/statm: 2704838 13983 3063 1 0 2667149 0
[pid=11185/tid=11238] ppid=11182 vsize=10819352 memory=6791534058613427641 CPUtime=0.28 cores=0,2,4,6
/proc/11185/task/11238/stat : 11238 (java) R 11182 11185 10929 0 -1 4202560 7086 12914 0 0 19 2 5 2 20 0 15 0 79244607 11079016448 13983 33554432000 4194304 4196468 140727611512064 140355915153824 140355927422302 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11239] ppid=11182 vsize=10819352 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11239/stat : 11239 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244608 11079016448 13983 33554432000 4194304 4196468 140727611512064 140355947584528 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11240] ppid=11182 vsize=10819352 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11240/stat : 11240 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244608 11079016448 13983 33554432000 4194304 4196468 140727611512064 140355846474896 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11241] ppid=11182 vsize=10819352 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11241/stat : 11241 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244608 11079016448 13983 33554432000 4194304 4196468 140727611512064 140355845421840 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11242] ppid=11182 vsize=10819352 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11242/stat : 11242 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244608 11079016448 13983 33554432000 4194304 4196468 140727611512064 140355844369296 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11243] ppid=11182 vsize=10819352 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11243/stat : 11243 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244610 11079016448 13983 33554432000 4194304 4196468 140727611512064 140354945583344 140355943352962 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11244] ppid=11182 vsize=10819352 memory=-1 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11244/stat : 11244 (java) S 11182 11185 10929 0 -1 1077944384 33 12914 0 0 0 0 5 2 20 0 15 0 79244610 11079016448 13983 33554432000 4194304 4196468 140727611512064 140354944529568 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11245] ppid=11182 vsize=10819352 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11245/stat : 11245 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244610 11079016448 13983 33554432000 4194304 4196468 140727611512064 140354833605360 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11246] ppid=11182 vsize=10819352 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11246/stat : 11246 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244613 11079016448 13983 33554432000 4194304 4196468 140727611512064 140354498062288 140355943360411 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11247] ppid=11182 vsize=10819352 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/11185/task/11247/stat : 11247 (java) S 11182 11185 10929 0 -1 1077944384 491 12914 0 0 1 0 5 2 20 0 15 0 79244613 11079016448 13983 33554432000 4194304 4196468 140727611512064 140354910972656 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11248] ppid=11182 vsize=10819352 memory=-1 CPUtime=0.08 cores=0,2,4,6
/proc/11185/task/11248/stat : 11248 (java) S 11182 11185 10929 0 -1 1077944384 121 12914 0 0 1 0 5 2 20 0 15 0 79244613 11079016448 13983 33554432000 4194304 4196468 140727611512064 140354909920112 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11249] ppid=11182 vsize=10819352 memory=139637046621824 CPUtime=0.12 cores=0,2,4,6
/proc/11185/task/11249/stat : 11249 (java) S 11182 11185 10929 0 -1 1077944384 622 12914 0 0 5 0 5 2 20 0 15 0 79244613 11079016448 13983 33554432000 4194304 4196468 140727611512064 140354908867056 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11250] ppid=11182 vsize=10819352 memory=-1 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11250/stat : 11250 (java) S 11182 11185 10929 0 -1 1077944384 3 12914 0 0 0 0 5 2 20 0 15 0 79244613 11079016448 13983 33554432000 4194304 4196468 140727611512064 140354229627744 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11251] ppid=11182 vsize=10819352 memory=139637046621824 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11251/stat : 11251 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244614 11079016448 13983 33554432000 4194304 4196468 140727611512064 140354907814448 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
Current children cumulated CPU time: 0.38 s
Current children cumulated vsize: 10819352 KiB
Current children cumulated memory: 55932 KiB

[startup+0.700731 s]
/proc/loadavg: 1.41 0.89 0.96 5/215 11251
/proc/meminfo: memFree=23514788/32770624 swapFree=67077028/67108860
[pid=11185] ppid=11182 vsize=10819352 memory=88488 CPUtime=0.98 cores=0,2,4,6
/proc/11185/stat : 11185 (java) S 11182 11185 10929 0 -1 1077944320 16757 12914 0 0 86 5 5 2 20 0 15 0 79244598 11079016448 22122 33554432000 4194304 4196468 140727611512064 140727611494608 140355943341815 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
/proc/11185/statm: 2704838 22122 3240 1 0 2667149 0
[pid=11185/tid=11238] ppid=11182 vsize=10819352 memory=0 CPUtime=0.65 cores=0,2,4,6
/proc/11185/task/11238/stat : 11238 (java) R 11182 11185 10929 0 -1 4202560 12192 12914 0 0 55 3 5 2 20 0 15 0 79244607 11079016448 22122 33554432000 4194304 4196468 140727611512064 140355915155712 140355927422302 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11239] ppid=11182 vsize=10819352 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11239/stat : 11239 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244608 11079016448 22122 33554432000 4194304 4196468 140727611512064 140355947584528 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11240] ppid=11182 vsize=10819352 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11240/stat : 11240 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244608 11079016448 22122 33554432000 4194304 4196468 140727611512064 140355846474896 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11241] ppid=11182 vsize=10819352 memory=139636903129872 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11241/stat : 11241 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244608 11079016448 22122 33554432000 4194304 4196468 140727611512064 140355845421840 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11242] ppid=11182 vsize=10819352 memory=139637976728137 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11242/stat : 11242 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244608 11079016448 22122 33554432000 4194304 4196468 140727611512064 140355844369296 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11243] ppid=11182 vsize=10819352 memory=796 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11243/stat : 11243 (java) S 11182 11185 10929 0 -1 1077944384 5 12914 0 0 0 0 5 2 20 0 15 0 79244610 11079016448 22122 33554432000 4194304 4196468 140727611512064 140354945583344 140355943352962 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11244] ppid=11182 vsize=10819352 memory=7014751519650764113 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11244/stat : 11244 (java) S 11182 11185 10929 0 -1 1077944384 33 12914 0 0 0 0 5 2 20 0 15 0 79244610 11079016448 22122 33554432000 4194304 4196468 140727611512064 140354944529568 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11245] ppid=11182 vsize=10819352 memory=7597123233646858610 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11245/stat : 11245 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244610 11079016448 22122 33554432000 4194304 4196468 140727611512064 140354833605360 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11246] ppid=11182 vsize=10819352 memory=3604 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11246/stat : 11246 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244613 11079016448 22122 33554432000 4194304 4196468 140727611512064 140354498062288 140355943360411 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11247] ppid=11182 vsize=10819352 memory=10980 CPUtime=0.17 cores=0,2,4,6
/proc/11185/task/11247/stat : 11247 (java) S 11182 11185 10929 0 -1 1077944384 1125 12914 0 0 10 0 5 2 20 0 15 0 79244613 11079016448 22122 33554432000 4194304 4196468 140727611512064 140354910972656 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11248] ppid=11182 vsize=10819352 memory=15128 CPUtime=0.13 cores=0,2,4,6
/proc/11185/task/11248/stat : 11248 (java) S 11182 11185 10929 0 -1 1077944384 498 12914 0 0 6 0 5 2 20 0 15 0 79244613 11079016448 22122 33554432000 4194304 4196468 140727611512064 140354909920112 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11249] ppid=11182 vsize=10819352 memory=640 CPUtime=0.2 cores=0,2,4,6
/proc/11185/task/11249/stat : 11249 (java) S 11182 11185 10929 0 -1 1077944384 704 12914 0 0 13 0 5 2 20 0 15 0 79244613 11079016448 22122 33554432000 4194304 4196468 140727611512064 140354908867056 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11250] ppid=11182 vsize=10819352 memory=1760 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11250/stat : 11250 (java) S 11182 11185 10929 0 -1 1077944384 3 12914 0 0 0 0 5 2 20 0 15 0 79244613 11079016448 22122 33554432000 4194304 4196468 140727611512064 140354229627744 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11251] ppid=11182 vsize=10819352 memory=960 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11251/stat : 11251 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244614 11079016448 22122 33554432000 4194304 4196468 140727611512064 140354907814448 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
Current children cumulated CPU time: 0.98 s
Current children cumulated vsize: 10819352 KiB
Current children cumulated memory: 88488 KiB

[startup+1.5007 s]
/proc/loadavg: 1.41 0.89 0.96 3/215 11251
/proc/meminfo: memFree=23468180/32770624 swapFree=67077028/67108860
[pid=11185] ppid=11182 vsize=10834252 memory=201424 CPUtime=2.7 cores=0,2,4,6
/proc/11185/stat : 11185 (java) S 11182 11185 10929 0 -1 1077944320 25429 12914 0 0 253 10 5 2 20 0 15 0 79244598 11094274048 50356 33554432000 4194304 4196468 140727611512064 140727611494608 140355943341815 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
/proc/11185/statm: 2708563 50356 3472 1 0 2670221 0
[pid=11185/tid=11238] ppid=11182 vsize=10834252 memory=65280 CPUtime=1.42 cores=0,2,4,6
/proc/11185/task/11238/stat : 11238 (java) R 11182 11185 10929 0 -1 4202560 17414 12914 0 0 130 5 5 2 20 0 15 0 79244607 11094274048 50356 33554432000 4194304 4196468 140727611512064 140355915158160 140355929022000 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11239] ppid=11182 vsize=10834252 memory=6791534058613427641 CPUtime=0.08 cores=0,2,4,6
/proc/11185/task/11239/stat : 11239 (java) S 11182 11185 10929 0 -1 1077944384 209 12914 0 0 1 0 5 2 20 0 15 0 79244608 11094274048 50356 33554432000 4194304 4196468 140727611512064 140355947584528 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11240] ppid=11182 vsize=10834252 memory=279273806291104 CPUtime=0.08 cores=0,2,4,6
/proc/11185/task/11240/stat : 11240 (java) S 11182 11185 10929 0 -1 1077944384 27 12914 0 0 1 0 5 2 20 0 15 0 79244608 11094274048 50356 33554432000 4194304 4196468 140727611512064 140355846474896 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11241] ppid=11182 vsize=10834252 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/11185/task/11241/stat : 11241 (java) S 11182 11185 10929 0 -1 1077944384 57 12914 0 0 1 0 5 2 20 0 15 0 79244608 11094274048 50356 33554432000 4194304 4196468 140727611512064 140355845421840 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11242] ppid=11182 vsize=10834252 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/11185/task/11242/stat : 11242 (java) S 11182 11185 10929 0 -1 1077944384 28 12914 0 0 1 0 5 2 20 0 15 0 79244608 11094274048 50356 33554432000 4194304 4196468 140727611512064 140355844369296 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11243] ppid=11182 vsize=10834252 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/11185/task/11243/stat : 11243 (java) S 11182 11185 10929 0 -1 1077944384 851 12914 0 0 1 0 5 2 20 0 15 0 79244610 11094274048 50356 33554432000 4194304 4196468 140727611512064 140354945583344 140355943352962 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11244] ppid=11182 vsize=10834252 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11244/stat : 11244 (java) S 11182 11185 10929 0 -1 1077944384 34 12914 0 0 0 0 5 2 20 0 15 0 79244610 11094274048 50356 33554432000 4194304 4196468 140727611512064 140354944529632 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11245] ppid=11182 vsize=10834252 memory=0 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11245/stat : 11245 (java) S 11182 11185 10929 0 -1 1077944384 1 12914 0 0 0 0 5 2 20 0 15 0 79244610 11094274048 50356 33554432000 4194304 4196468 140727611512064 140354833605376 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11246] ppid=11182 vsize=10834252 memory=-2746958450906831424 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11246/stat : 11246 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244613 11094274048 50356 33554432000 4194304 4196468 140727611512064 140354498062288 140355943360411 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11247] ppid=11182 vsize=10834252 memory=0 CPUtime=0.48 cores=0,2,4,6
/proc/11185/task/11247/stat : 11247 (java) S 11182 11185 10929 0 -1 1077944384 1815 12914 0 0 40 1 5 2 20 0 15 0 79244613 11094274048 50356 33554432000 4194304 4196468 140727611512064 140354910972656 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11248] ppid=11182 vsize=10834252 memory=0 CPUtime=0.45 cores=0,2,4,6
/proc/11185/task/11248/stat : 11248 (java) S 11182 11185 10929 0 -1 1077944384 1229 12914 0 0 38 0 5 2 20 0 15 0 79244613 11094274048 50356 33554432000 4194304 4196468 140727611512064 140354909920112 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11249] ppid=11182 vsize=10834252 memory=6791534058613427641 CPUtime=0.44 cores=0,2,4,6
/proc/11185/task/11249/stat : 11249 (java) S 11182 11185 10929 0 -1 1077944384 1567 12914 0 0 37 0 5 2 20 0 15 0 79244613 11094274048 50356 33554432000 4194304 4196468 140727611512064 140354908867056 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11250] ppid=11182 vsize=10834252 memory=4638778398332698720 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11250/stat : 11250 (java) S 11182 11185 10929 0 -1 1077944384 3 12914 0 0 0 0 5 2 20 0 15 0 79244613 11094274048 50356 33554432000 4194304 4196468 140727611512064 140354229627744 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11251] ppid=11182 vsize=10834252 memory=279273806535552 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11251/stat : 11251 (java) S 11182 11185 10929 0 -1 1077944384 3 12914 0 0 0 0 5 2 20 0 15 0 79244614 11094274048 50356 33554432000 4194304 4196468 140727611512064 140354907814448 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
Current children cumulated CPU time: 2.7 s
Current children cumulated vsize: 10834252 KiB

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

/proc/11185/task/11238/stat : 11238 (java) R 11182 11185 10929 0 -1 4202560 78667 12914 0 0 230264 37 5 2 20 0 15 0 79244607 11176083456 191683 33554432000 4194304 4196468 140727611512064 140355915175600 140355535597638 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11239] ppid=11182 vsize=10914144 memory=766732 CPUtime=8.02 cores=0,2,4,6
/proc/11185/task/11239/stat : 11239 (java) S 11182 11185 10929 0 -1 1077944384 12997 12914 0 0 750 45 5 2 20 0 15 0 79244608 11176083456 191683 33554432000 4194304 4196468 140727611512064 140355947584528 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11240] ppid=11182 vsize=10914144 memory=766576 CPUtime=8.04 cores=0,2,4,6
/proc/11185/task/11240/stat : 11240 (java) S 11182 11185 10929 0 -1 1077944384 10556 12914 0 0 753 44 5 2 20 0 15 0 79244608 11176083456 191683 33554432000 4194304 4196468 140727611512064 140355846474896 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11241] ppid=11182 vsize=10914144 memory=762936 CPUtime=8.01 cores=0,2,4,6
/proc/11185/task/11241/stat : 11241 (java) S 11182 11185 10929 0 -1 1077944384 12587 12914 0 0 752 42 5 2 20 0 15 0 79244608 11176083456 191683 33554432000 4194304 4196468 140727611512064 140355845421840 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11242] ppid=11182 vsize=10914144 memory=762936 CPUtime=8.05 cores=0,2,4,6
/proc/11185/task/11242/stat : 11242 (java) S 11182 11185 10929 0 -1 1077944384 11477 12914 0 0 753 45 5 2 20 0 15 0 79244608 11176083456 191683 33554432000 4194304 4196468 140727611512064 140355844369296 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11243] ppid=11182 vsize=10914144 memory=279273806547744 CPUtime=7.73 cores=0,2,4,6
/proc/11185/task/11243/stat : 11243 (java) S 11182 11185 10929 0 -1 1077944384 12016 12914 0 0 725 41 5 2 20 0 15 0 79244610 11176083456 191683 33554432000 4194304 4196468 140727611512064 140354945583344 140355943352962 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11244] ppid=11182 vsize=10914144 memory=762936 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11244/stat : 11244 (java) S 11182 11185 10929 0 -1 1077944384 37 12914 0 0 0 0 5 2 20 0 15 0 79244610 11176083456 191683 33554432000 4194304 4196468 140727611512064 140354944529632 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11245] ppid=11182 vsize=10914144 memory=766704 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11245/stat : 11245 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244610 11176083456 191683 33554432000 4194304 4196468 140727611512064 140354833605376 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11246] ppid=11182 vsize=10914144 memory=766704 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11246/stat : 11246 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244613 11176083456 191683 33554432000 4194304 4196468 140727611512064 140354498062288 140355943360411 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11247] ppid=11182 vsize=10914144 memory=766704 CPUtime=4.38 cores=0,2,4,6
/proc/11185/task/11247/stat : 11247 (java) S 11182 11185 10929 0 -1 1077944384 21273 12914 0 0 425 6 5 2 20 0 15 0 79244613 11176083456 191683 33554432000 4194304 4196468 140727611512064 140354910972656 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11248] ppid=11182 vsize=10914144 memory=766732 CPUtime=4.39 cores=0,2,4,6
/proc/11185/task/11248/stat : 11248 (java) S 11182 11185 10929 0 -1 1077944384 20586 12914 0 0 429 3 5 2 20 0 15 0 79244613 11176083456 191683 33554432000 4194304 4196468 140727611512064 140354909920112 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11249] ppid=11182 vsize=10914144 memory=766732 CPUtime=1.89 cores=0,2,4,6
/proc/11185/task/11249/stat : 11249 (java) S 11182 11185 10929 0 -1 1077944384 19318 12914 0 0 178 4 5 2 20 0 15 0 79244613 11176083456 191683 33554432000 4194304 4196468 140727611512064 140354908867056 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11250] ppid=11182 vsize=10914144 memory=766732 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11250/stat : 11250 (java) S 11182 11185 10929 0 -1 1077944384 3 12914 0 0 0 0 5 2 20 0 15 0 79244613 11176083456 191683 33554432000 4194304 4196468 140727611512064 140354229627744 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11251] ppid=11182 vsize=10914144 memory=766576 CPUtime=1.57 cores=0,2,4,6
/proc/11185/task/11251/stat : 11251 (java) S 11182 11185 10929 0 -1 1077944384 1116 12914 0 0 79 71 5 2 20 0 15 0 79244614 11176083456 191683 33554432000 4194304 4196468 140727611512064 140354907814448 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
Current children cumulated CPU time: 2354.65 s
Current children cumulated vsize: 10914144 KiB
Current children cumulated memory: 766732 KiB

[startup+2382.3 s]
/proc/loadavg: 1.33 1.33 1.28 3/216 11349
/proc/meminfo: memFree=21623844/32770624 swapFree=67077056/67108860
[pid=11185] ppid=11182 vsize=10914144 memory=769260 CPUtime=2415.22 cores=0,2,4,6
/proc/11185/stat : 11185 (java) S 11182 11185 10929 0 -1 1077944320 204031 12914 0 0 241236 279 5 2 20 0 15 0 79244598 11176083456 192315 33554432000 4194304 4196468 140727611512064 140727611494608 140355943341815 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
/proc/11185/statm: 2728536 192315 3522 1 0 2690189 0
[pid=11185/tid=11238] ppid=11182 vsize=10914144 memory=769260 CPUtime=2362.61 cores=0,2,4,6
/proc/11185/task/11238/stat : 11238 (java) R 11182 11185 10929 0 -1 4202560 79092 12914 0 0 236217 37 5 2 20 0 15 0 79244607 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355915176048 140355536964674 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11239] ppid=11182 vsize=10914144 memory=769260 CPUtime=8.22 cores=0,2,4,6
/proc/11185/task/11239/stat : 11239 (java) S 11182 11185 10929 0 -1 1077944384 13011 12914 0 0 769 46 5 2 20 0 15 0 79244608 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355947584528 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11240] ppid=11182 vsize=10914144 memory=279273806547744 CPUtime=8.24 cores=0,2,4,6
/proc/11185/task/11240/stat : 11240 (java) S 11182 11185 10929 0 -1 1077944384 10605 12914 0 0 773 44 5 2 20 0 15 0 79244608 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355846474896 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11241] ppid=11182 vsize=10914144 memory=769260 CPUtime=8.22 cores=0,2,4,6
/proc/11185/task/11241/stat : 11241 (java) S 11182 11185 10929 0 -1 1077944384 12892 12914 0 0 771 44 5 2 20 0 15 0 79244608 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355845421840 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11242] ppid=11182 vsize=10914144 memory=769260 CPUtime=8.25 cores=0,2,4,6
/proc/11185/task/11242/stat : 11242 (java) S 11182 11185 10929 0 -1 1077944384 11487 12914 0 0 772 46 5 2 20 0 15 0 79244608 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355844369296 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11243] ppid=11182 vsize=10914144 memory=164 CPUtime=7.91 cores=0,2,4,6
/proc/11185/task/11243/stat : 11243 (java) S 11182 11185 10929 0 -1 1077944384 12045 12914 0 0 743 41 5 2 20 0 15 0 79244610 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354945583344 140355943352962 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11244] ppid=11182 vsize=10914144 memory=769260 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11244/stat : 11244 (java) S 11182 11185 10929 0 -1 1077944384 37 12914 0 0 0 0 5 2 20 0 15 0 79244610 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354944529632 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11245] ppid=11182 vsize=10914144 memory=769260 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11245/stat : 11245 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244610 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354833605376 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11246] ppid=11182 vsize=10914144 memory=3544 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11246/stat : 11246 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354498062288 140355943360411 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11247] ppid=11182 vsize=10914144 memory=769260 CPUtime=4.38 cores=0,2,4,6
/proc/11185/task/11247/stat : 11247 (java) S 11182 11185 10929 0 -1 1077944384 21275 12914 0 0 425 6 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354910972656 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11248] ppid=11182 vsize=10914144 memory=769260 CPUtime=4.39 cores=0,2,4,6
/proc/11185/task/11248/stat : 11248 (java) S 11182 11185 10929 0 -1 1077944384 20949 12914 0 0 429 3 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354909920112 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11249] ppid=11182 vsize=10914144 memory=139636903179320 CPUtime=1.89 cores=0,2,4,6
/proc/11185/task/11249/stat : 11249 (java) S 11182 11185 10929 0 -1 1077944384 19320 12914 0 0 178 4 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354908867056 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11250] ppid=11182 vsize=10914144 memory=3700 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11250/stat : 11250 (java) S 11182 11185 10929 0 -1 1077944384 3 12914 0 0 0 0 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354229627744 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11251] ppid=11182 vsize=10914144 memory=844 CPUtime=1.6 cores=0,2,4,6
/proc/11185/task/11251/stat : 11251 (java) S 11182 11185 10929 0 -1 1077944384 1122 12914 0 0 81 72 5 2 20 0 15 0 79244614 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354907814448 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
Current children cumulated CPU time: 2415.22 s
Current children cumulated vsize: 10914144 KiB
Current children cumulated memory: 769260 KiB

[startup+2442.3 s]
/proc/loadavg: 1.33 1.33 1.28 3/216 11350
/proc/meminfo: memFree=21623720/32770624 swapFree=67077056/67108860
[pid=11185] ppid=11182 vsize=10914144 memory=769260 CPUtime=2475.75 cores=0,2,4,6
/proc/11185/stat : 11185 (java) S 11182 11185 10929 0 -1 1077944320 204755 12914 0 0 247284 284 5 2 20 0 15 0 79244598 11176083456 192315 33554432000 4194304 4196468 140727611512064 140727611494608 140355943341815 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
/proc/11185/statm: 2728536 192315 3522 1 0 2690189 0
[pid=11185/tid=11238] ppid=11182 vsize=10914144 memory=769260 CPUtime=2422.13 cores=0,2,4,6
/proc/11185/task/11238/stat : 11238 (java) R 11182 11185 10929 0 -1 4202560 79520 12914 0 0 242168 38 5 2 20 0 15 0 79244607 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355915175408 140355536701409 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11239] ppid=11182 vsize=10914144 memory=769260 CPUtime=8.42 cores=0,2,4,6
/proc/11185/task/11239/stat : 11239 (java) S 11182 11185 10929 0 -1 1077944384 13043 12914 0 0 788 47 5 2 20 0 15 0 79244608 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355947584528 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11240] ppid=11182 vsize=10914144 memory=769260 CPUtime=8.44 cores=0,2,4,6
/proc/11185/task/11240/stat : 11240 (java) S 11182 11185 10929 0 -1 1077944384 10616 12914 0 0 791 46 5 2 20 0 15 0 79244608 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355846474896 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11241] ppid=11182 vsize=10914144 memory=769260 CPUtime=8.41 cores=0,2,4,6
/proc/11185/task/11241/stat : 11241 (java) S 11182 11185 10929 0 -1 1077944384 12944 12914 0 0 790 44 5 2 20 0 15 0 79244608 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355845421840 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11242] ppid=11182 vsize=10914144 memory=769260 CPUtime=8.45 cores=0,2,4,6
/proc/11185/task/11242/stat : 11242 (java) S 11182 11185 10929 0 -1 1077944384 11501 12914 0 0 791 47 5 2 20 0 15 0 79244608 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355844369296 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11243] ppid=11182 vsize=10914144 memory=769260 CPUtime=8.1 cores=0,2,4,6
/proc/11185/task/11243/stat : 11243 (java) S 11182 11185 10929 0 -1 1077944384 12227 12914 0 0 761 42 5 2 20 0 15 0 79244610 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354945583344 140355943352962 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11244] ppid=11182 vsize=10914144 memory=769260 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11244/stat : 11244 (java) S 11182 11185 10929 0 -1 1077944384 37 12914 0 0 0 0 5 2 20 0 15 0 79244610 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354944529632 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11245] ppid=11182 vsize=10914144 memory=769260 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11245/stat : 11245 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244610 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354833605376 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11246] ppid=11182 vsize=10914144 memory=769260 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11246/stat : 11246 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354498062288 140355943360411 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11247] ppid=11182 vsize=10914144 memory=769260 CPUtime=4.38 cores=0,2,4,6
/proc/11185/task/11247/stat : 11247 (java) S 11182 11185 10929 0 -1 1077944384 21275 12914 0 0 425 6 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354910972656 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11248] ppid=11182 vsize=10914144 memory=769260 CPUtime=4.39 cores=0,2,4,6
/proc/11185/task/11248/stat : 11248 (java) S 11182 11185 10929 0 -1 1077944384 20949 12914 0 0 429 3 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354909920112 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11249] ppid=11182 vsize=10914144 memory=769260 CPUtime=1.89 cores=0,2,4,6
/proc/11185/task/11249/stat : 11249 (java) S 11182 11185 10929 0 -1 1077944384 19320 12914 0 0 178 4 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354908867056 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11250] ppid=11182 vsize=10914144 memory=769260 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11250/stat : 11250 (java) S 11182 11185 10929 0 -1 1077944384 3 12914 0 0 0 0 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354229627744 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11251] ppid=11182 vsize=10914144 memory=6791534058613427641 CPUtime=1.65 cores=0,2,4,6
/proc/11185/task/11251/stat : 11251 (java) S 11182 11185 10929 0 -1 1077944384 1127 12914 0 0 85 73 5 2 20 0 15 0 79244614 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354907814448 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
Current children cumulated CPU time: 2475.75 s
Current children cumulated vsize: 10914144 KiB
Current children cumulated memory: 769260 KiB



Maximum CPU time exceeded: sending SIGTERM then SIGKILL

[startup+2486.2 s]
/proc/loadavg: 1.34 1.33 1.29 4/215 11382
/proc/meminfo: memFree=23426720/32770624 swapFree=67077056/67108860
[pid=11185] ppid=11182 vsize=10914144 memory=769260 CPUtime=2520.06 cores=0,2,4,6
/proc/11185/stat : 11185 (java) S 11182 11185 10929 0 -1 1077944320 205833 12914 0 0 251711 288 5 2 20 0 15 0 79244598 11176083456 192315 33554432000 4194304 4196468 140727611512064 140727611494608 140355943341815 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
/proc/11185/statm: 2728536 192315 3522 1 0 2690189 0
[pid=11185/tid=11238] ppid=11182 vsize=10914144 memory=0 CPUtime=2465.69 cores=0,2,4,6
/proc/11185/task/11238/stat : 11238 (java) R 11182 11185 10929 0 -1 4202560 79958 12914 0 0 246524 38 5 2 20 0 15 0 79244607 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355915176432 140355535508256 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11239] ppid=11182 vsize=10914144 memory=769260 CPUtime=8.56 cores=0,2,4,6
/proc/11185/task/11239/stat : 11239 (java) S 11182 11185 10929 0 -1 1077944384 13328 12914 0 0 801 48 5 2 20 0 15 0 79244608 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355947584528 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11240] ppid=11182 vsize=10914144 memory=769260 CPUtime=8.58 cores=0,2,4,6
/proc/11185/task/11240/stat : 11240 (java) S 11182 11185 10929 0 -1 1077944384 10693 12914 0 0 805 46 5 2 20 0 15 0 79244608 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355846474896 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11241] ppid=11182 vsize=10914144 memory=4427205132082312746 CPUtime=8.56 cores=0,2,4,6
/proc/11185/task/11241/stat : 11241 (java) S 11182 11185 10929 0 -1 1077944384 13004 12914 0 0 804 45 5 2 20 0 15 0 79244608 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355845421840 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11242] ppid=11182 vsize=10914144 memory=-7023579799431922829 CPUtime=8.59 cores=0,2,4,6
/proc/11185/task/11242/stat : 11242 (java) S 11182 11185 10929 0 -1 1077944384 11514 12914 0 0 805 47 5 2 20 0 15 0 79244608 11176083456 192315 33554432000 4194304 4196468 140727611512064 140355844369296 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11243] ppid=11182 vsize=10914144 memory=-8412652152092201843 CPUtime=8.24 cores=0,2,4,6
/proc/11185/task/11243/stat : 11243 (java) S 11182 11185 10929 0 -1 1077944384 12408 12914 0 0 774 43 5 2 20 0 15 0 79244610 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354945583344 140355943352962 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11244] ppid=11182 vsize=10914144 memory=5860987870741031273 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11244/stat : 11244 (java) S 11182 11185 10929 0 -1 1077944384 37 12914 0 0 0 0 5 2 20 0 15 0 79244610 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354944529632 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11245] ppid=11182 vsize=10914144 memory=7516884263814587497 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11245/stat : 11245 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244610 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354833605376 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11246] ppid=11182 vsize=10914144 memory=7516884263814587497 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11246/stat : 11246 (java) S 11182 11185 10929 0 -1 1077944384 2 12914 0 0 0 0 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354498062288 140355943360411 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11247] ppid=11182 vsize=10914144 memory=303430223234596890 CPUtime=4.38 cores=0,2,4,6
/proc/11185/task/11247/stat : 11247 (java) S 11182 11185 10929 0 -1 1077944384 21277 12914 0 0 425 6 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354910972656 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11248] ppid=11182 vsize=10914144 memory=288230621803970871 CPUtime=4.39 cores=0,2,4,6
/proc/11185/task/11248/stat : 11248 (java) S 11182 11185 10929 0 -1 1077944384 20951 12914 0 0 429 3 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354909920112 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11249] ppid=11182 vsize=10914144 memory=15258134151170438 CPUtime=1.89 cores=0,2,4,6
/proc/11185/task/11249/stat : 11249 (java) S 11182 11185 10929 0 -1 1077944384 19322 12914 0 0 178 4 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354908867056 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11250] ppid=11182 vsize=10914144 memory=15316 CPUtime=0.07 cores=0,2,4,6
/proc/11185/task/11250/stat : 11250 (java) S 11182 11185 10929 0 -1 1077944384 3 12914 0 0 0 0 5 2 20 0 15 0 79244613 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354229627744 140355943352021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
[pid=11185/tid=11251] ppid=11182 vsize=10914144 memory=3604 CPUtime=1.67 cores=0,2,4,6
/proc/11185/task/11251/stat : 11251 (java) S 11182 11185 10929 0 -1 1077944384 1145 12914 0 0 86 74 5 2 20 0 15 0 79244614 11176083456 192315 33554432000 4194304 4196468 140727611512064 140354907814448 140355943352962 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17002496 140727611513454 140727611516252 140727611516252 140727611518927 0
Current children cumulated CPU time: 2520.06 s
Current children cumulated vsize: 10914144 KiB
Current children cumulated memory: 769260 KiB

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

[startup+2486.23 s]
# the end of solver process 11185 was just reported to runsolver
# cumulated CPU time of all completed processes:  user=2517.19 s, system=2.91742 s

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

Child status: 143
Real time (s): 2486.23
CPU time (s): 2520.11
CPU user time (s): 2517.19
CPU system time (s): 2.91742
CPU usage (%): 101.363
Max. virtual memory (cumulated for all children) (KiB): 10916780
Max. memory (cumulated for all children) (KiB): 776136

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 2517.19
system time used= 2.91742
maximum resident set size= 776136
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 219800
page faults= 0
swaps= 0
block input operations= 0
block output operations= 2904
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 232031
involuntary context switches= 9363


# summary of solver processes directly reported to runsolver:
#   pid: 11185
#   total CPU time (s): 2520.11
#   total CPU user time (s): 2517.19
#   total CPU system time (s): 2.91742

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 18.2155 second user time and 19.8799 second system time

The end

Launcher Data

Begin job on node102 at 2018-07-26 16:53:34
IDJOB=4296176
IDBENCH=141661
IDSOLVER=2750
FILE ID=node102/4296176-1532616814
RUNJOBID= node102-1532616809-10960
PBS_JOBID= 21021979
Free space on /tmp= 52720 MiB

SOLVER NAME= Concrete 3.8 2018-06-13
BENCH NAME= XCSP18/Eternity/Eternity-08-08_c18.xml
COMMAND LINE= bin/xcsp-3-concrete -J-Xss32M -randomseed=RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4296176-1532616814/watcher-4296176-1532616814 -o /tmp/evaluation-result-4296176-1532616814/solver-4296176-1532616814 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node102-1532616809-10960 --watchdog 2580  bin/xcsp-3-concrete -J-Xss32M -randomseed=1679542655 HOME/instance-4296176-1532616814.xml

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

MD5SUM BENCH= 631cb3d235a52ad054110af2866c45e9
RANDOM SEED=1679542655

node102.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.51
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.51
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.51
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.51
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:        23601704 kB
MemAvailable:   31356804 kB
Buffers:          194752 kB
Cached:          7797140 kB
SwapCached:         5268 kB
Active:          1963104 kB
Inactive:        6665076 kB
Active(anon):     608212 kB
Inactive(anon):    53648 kB
Active(file):    1354892 kB
Inactive(file):  6611428 kB
Unevictable:        6616 kB
Mlocked:            6616 kB
SwapTotal:      67108860 kB
SwapFree:       67077028 kB
Dirty:             27704 kB
Writeback:             0 kB
AnonPages:        620316 kB
Mapped:            46904 kB
Shmem:             21960 kB
Slab:             237000 kB
SReclaimable:     209232 kB
SUnreclaim:        27768 kB
KernelStack:        3536 kB
PageTables:         6124 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1729708 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    460800 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      105856 kB
DirectMap2M:    33439744 kB

Free space on /tmp at the end= 52716 MiB
End job on node102 at 2018-07-26 17:35:01