Trace number 4302800

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 NameAnswerobjective functionCPU timeWall clock time
Concrete 3.9.2-SuperNG? (TO) 252.128 211.752

General information on the benchmark

NameSteelMillSlab/
SteelMillSlab-m2-4-0_c18.xml
MD5SUM04f92f5fbe642378aecc464c78b62b37
Bench CategoryCOP (optimization 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 variables22422
Number of constraints24998
Number of domains4
Minimum domain size2
Maximum domain size111
Distribution of domain sizes[{"size":2,"count":22089},{"size":10,"count":111},{"size":37,"count":111},{"size":111,"count":111}]
Minimum variable degree2
Maximum variable degree224
Distribution of variable degrees[{"degree":2,"count":20313},{"degree":3,"count":1443},{"degree":4,"count":333},{"degree":5,"count":222},{"degree":222,"count":78},{"degree":223,"count":24},{"degree":224,"count":9}]
Minimum constraint arity2
Maximum constraint arity112
Distribution of constraint arities[{"arity":2,"count":24774},{"arity":88,"count":111},{"arity":111,"count":2},{"arity":112,"count":111}]
Number of extensional constraints111
Number of intensional constraints24663
Distribution of constraint types[{"type":"extension","count":111},{"type":"intension","count":24663},{"type":"ordered","count":1},{"type":"sum","count":223}]
Optimization problemYES
Type of objectivemin SUM

Solver Data

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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4302800-1532899033/watcher-4302800-1532899033 -o /tmp/evaluation-result-4302800-1532899033/solver-4302800-1532899033 -C 252 -W 252 -M 15500 --bin-var /tmp/runsolver-exch-node103-1532895438-9922 --watchdog 312 bin/xcsp-3-concrete -J-Xss64M -randomseed=1345345970 -superng HOME/instance-4302800-1532899033.xml 

running on 4 cores: 1,3,5,7

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 252 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 282 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 252 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
solver pid=15282, runsolver pid=15279
Current StackSize limit: 8192 KiB


[startup+0.101508 s]*
/proc/loadavg: 1.96 1.87 1.81 2/206 15339
/proc/meminfo: memFree=17077840/32770624 swapFree=67108860/67108860
[pid=15282] ppid=15279 vsize=10005480 memory=16688 CPUtime=0.08 cores=1,3,5,7
/proc/15282/stat : 15282 (java) S 15279 15282 8396 0 -1 1077944320 4360 13158 0 0 1 0 5 2 20 0 6 0 107466550 10245611520 4172 33554432000 4194304 4196468 140735932165104 140735932147648 140253204295415 0 0 0 16784584 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
/proc/15282/statm: 2501370 4172 1933 1 0 2489808 0
[pid=15282/tid=15335] ppid=15279 vsize=10005480 memory=4279135704047584141 CPUtime=0.08 cores=1,3,5,7
/proc/15282/task/15335/stat : 15335 (java) R 15279 15282 8396 0 -1 4202560 2187 13158 0 0 1 0 5 2 20 0 6 0 107466559 10245611520 4238 33554432000 4194304 4196468 140735932165104 140253176132176 140253188375902 0 4 0 16784584 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15336] ppid=15279 vsize=10005480 memory=8257237230052613020 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15336/stat : 15336 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 6 0 107466560 10245611520 4238 33554432000 4194304 4196468 140735932165104 140253208538000 140253204305621 0 4 0 16784584 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15337] ppid=15279 vsize=10005480 memory=140004433610368 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15337/stat : 15337 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 6 0 107466560 10245611520 4238 33554432000 4194304 4196468 140735932165104 140253098142480 140253204305621 0 4 0 16784584 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15338] ppid=15279 vsize=10005480 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15338/stat : 15338 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 6 0 107466560 10245611520 4238 33554432000 4194304 4196468 140735932165104 140252742917264 140253204305621 0 4 0 16784584 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15339] ppid=15279 vsize=10005480 memory=-1 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15339/stat : 15339 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 6 0 107466560 10245611520 4238 33554432000 4194304 4196468 140735932165104 140252741864464 140253204305621 0 4 0 16784584 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
Current children cumulated CPU time: 0.08 s
Current children cumulated vsize: 10005480 KiB
Current children cumulated memory: 16688 KiB

[startup+0.210081 s]*
/proc/loadavg: 1.96 1.87 1.81 4/215 15348
/proc/meminfo: memFree=17053836/32770624 swapFree=67108860/67108860
[pid=15282] ppid=15279 vsize=10982744 memory=45632 CPUtime=0.25 cores=1,3,5,7
/proc/15282/stat : 15282 (java) S 15279 15282 8396 0 -1 1077944320 7093 13158 0 0 16 2 5 2 20 0 15 0 107466550 11246329856 11408 33554432000 4194304 4196468 140735932165104 140735932147648 140253204295415 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
/proc/15282/statm: 2745686 11408 2952 1 0 2708109 0
[pid=15282/tid=15335] ppid=15279 vsize=10982744 memory=-6517102902069810590 CPUtime=0.18 cores=1,3,5,7
/proc/15282/task/15335/stat : 15335 (java) R 15279 15282 8396 0 -1 4202560 3651 13158 0 0 10 1 5 2 20 0 15 0 107466559 11246329856 11408 33554432000 4194304 4196468 140735932165104 140253176108424 140253185858971 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15336] ppid=15279 vsize=10982744 memory=-7025452035940392864 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15336/stat : 15336 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466560 11246329856 11408 33554432000 4194304 4196468 140735932165104 140253208538000 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15337] ppid=15279 vsize=10982744 memory=140004433610368 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15337/stat : 15337 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466560 11246329856 11408 33554432000 4194304 4196468 140735932165104 140253098142480 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15338] ppid=15279 vsize=10982744 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15338/stat : 15338 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466560 11246329856 11408 33554432000 4194304 4196468 140735932165104 140252742917264 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15339] ppid=15279 vsize=10982744 memory=-1 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15339/stat : 15339 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 15 0 107466560 11246329856 11408 33554432000 4194304 4196468 140735932165104 140252741864464 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15340] ppid=15279 vsize=10982744 memory=140004433610368 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15340/stat : 15340 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 15 0 107466562 11246329856 11408 33554432000 4194304 4196468 140735932165104 140252697421936 140253204306562 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15341] ppid=15279 vsize=10982744 memory=-1 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15341/stat : 15341 (java) S 15279 15282 8396 0 -1 1077944384 13 13158 0 0 0 0 5 2 20 0 15 0 107466562 11246329856 11408 33554432000 4194304 4196468 140735932165104 140252089934624 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15342] ppid=15279 vsize=10982744 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15342/stat : 15342 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466562 11246329856 11408 33554432000 4194304 4196468 140735932165104 140251888608368 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15343] ppid=15279 vsize=10982744 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15343/stat : 15343 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 15 0 107466565 11246329856 11408 33554432000 4194304 4196468 140735932165104 140251620173904 140253204314011 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15344] ppid=15279 vsize=10982744 memory=0 CPUtime=0.08 cores=1,3,5,7
/proc/15282/task/15344/stat : 15344 (java) S 15279 15282 8396 0 -1 1077944384 426 13158 0 0 1 0 5 2 20 0 15 0 107466565 11246329856 11408 33554432000 4194304 4196468 140735932165104 140252696369776 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15345] ppid=15279 vsize=10982744 memory=-1 CPUtime=0.08 cores=1,3,5,7
/proc/15282/task/15345/stat : 15345 (java) S 15279 15282 8396 0 -1 1077944384 186 13158 0 0 1 0 5 2 20 0 15 0 107466565 11246329856 11408 33554432000 4194304 4196468 140735932165104 140252695316976 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15346] ppid=15279 vsize=10982744 memory=140004433610368 CPUtime=0.1 cores=1,3,5,7
/proc/15282/task/15346/stat : 15346 (java) S 15279 15282 8396 0 -1 1077944384 608 13158 0 0 3 0 5 2 20 0 15 0 107466565 11246329856 11408 33554432000 4194304 4196468 140735932165104 140252170677104 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15347] ppid=15279 vsize=10982744 memory=-1 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15347/stat : 15347 (java) S 15279 15282 8396 0 -1 1077944384 3 13158 0 0 0 0 5 2 20 0 15 0 107466565 11246329856 11408 33554432000 4194304 4196468 140735932165104 140251150412768 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15348] ppid=15279 vsize=10982744 memory=140004433610368 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15348/stat : 15348 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466566 11246329856 11408 33554432000 4194304 4196468 140735932165104 140252169623984 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
Current children cumulated CPU time: 0.25 s
Current children cumulated vsize: 10982744 KiB
Current children cumulated memory: 45632 KiB

[startup+0.31036 s]*
/proc/loadavg: 1.96 1.87 1.81 3/215 15348
/proc/meminfo: memFree=17040936/32770624 swapFree=67108860/67108860
[pid=15282] ppid=15279 vsize=10983192 memory=58104 CPUtime=0.37 cores=1,3,5,7
/proc/15282/stat : 15282 (java) S 15279 15282 8396 0 -1 1077944320 10045 13158 0 0 28 2 5 2 20 0 15 0 107466550 11246788608 14460 33554432000 4194304 4196468 140735932165104 140735932147648 140253204295415 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
/proc/15282/statm: 2745798 14460 3071 1 0 2708109 0
[pid=15282/tid=15335] ppid=15279 vsize=10983192 memory=6791534058613427641 CPUtime=0.28 cores=1,3,5,7
/proc/15282/task/15335/stat : 15335 (java) R 15279 15282 8396 0 -1 4202560 6714 13158 0 0 19 2 5 2 20 0 15 0 107466559 11246788608 14592 33554432000 4194304 4196468 140735932165104 140253176107424 140253184571243 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15336] ppid=15279 vsize=10983192 memory=6081918200710189137 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15336/stat : 15336 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466560 11246788608 14592 33554432000 4194304 4196468 140735932165104 140253208538000 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15337] ppid=15279 vsize=10983192 memory=2072 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15337/stat : 15337 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466560 11246788608 14592 33554432000 4194304 4196468 140735932165104 140253098142480 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15338] ppid=15279 vsize=10983192 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15338/stat : 15338 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466560 11246788608 14658 33554432000 4194304 4196468 140735932165104 140252742917264 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15339] ppid=15279 vsize=10983192 memory=4126316290023845779 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15339/stat : 15339 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 15 0 107466560 11246788608 14658 33554432000 4194304 4196468 140735932165104 140252741864464 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15340] ppid=15279 vsize=10983192 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15340/stat : 15340 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 15 0 107466562 11246788608 14658 33554432000 4194304 4196468 140735932165104 140252697421936 140253204306562 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15341] ppid=15279 vsize=10983192 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15341/stat : 15341 (java) S 15279 15282 8396 0 -1 1077944384 13 13158 0 0 0 0 5 2 20 0 15 0 107466562 11246788608 14658 33554432000 4194304 4196468 140735932165104 140252089934624 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15342] ppid=15279 vsize=10983192 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15342/stat : 15342 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466562 11246788608 14658 33554432000 4194304 4196468 140735932165104 140251888608368 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15343] ppid=15279 vsize=10983192 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15343/stat : 15343 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 15 0 107466565 11246788608 14658 33554432000 4194304 4196468 140735932165104 140251620173904 140253204314011 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15344] ppid=15279 vsize=10983192 memory=0 CPUtime=0.08 cores=1,3,5,7
/proc/15282/task/15344/stat : 15344 (java) S 15279 15282 8396 0 -1 1077944384 429 13158 0 0 1 0 5 2 20 0 15 0 107466565 11246788608 14658 33554432000 4194304 4196468 140735932165104 140252696369776 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15345] ppid=15279 vsize=10983192 memory=0 CPUtime=0.08 cores=1,3,5,7
/proc/15282/task/15345/stat : 15345 (java) S 15279 15282 8396 0 -1 1077944384 189 13158 0 0 1 0 5 2 20 0 15 0 107466565 11246788608 14658 33554432000 4194304 4196468 140735932165104 140252695316976 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15346] ppid=15279 vsize=10983192 memory=0 CPUtime=0.11 cores=1,3,5,7
/proc/15282/task/15346/stat : 15346 (java) S 15279 15282 8396 0 -1 1077944384 617 13158 0 0 4 0 5 2 20 0 15 0 107466565 11246788608 14658 33554432000 4194304 4196468 140735932165104 140252170677104 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15347] ppid=15279 vsize=10983192 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15347/stat : 15347 (java) S 15279 15282 8396 0 -1 1077944384 3 13158 0 0 0 0 5 2 20 0 15 0 107466565 11246788608 14658 33554432000 4194304 4196468 140735932165104 140251150412768 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15348] ppid=15279 vsize=10983192 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15348/stat : 15348 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466566 11246788608 14658 33554432000 4194304 4196468 140735932165104 140252169623984 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
Current children cumulated CPU time: 0.37 s
Current children cumulated vsize: 10983192 KiB
Current children cumulated memory: 58104 KiB

[startup+0.700777 s]
/proc/loadavg: 1.96 1.87 1.81 3/215 15348
/proc/meminfo: memFree=17029524/32770624 swapFree=67108860/67108860
[pid=15282] ppid=15279 vsize=10983192 memory=92348 CPUtime=0.98 cores=1,3,5,7
/proc/15282/stat : 15282 (java) S 15279 15282 8396 0 -1 1077944320 16767 13158 0 0 87 4 5 2 20 0 15 0 107466550 11246788608 23087 33554432000 4194304 4196468 140735932165104 140735932147648 140253204295415 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
/proc/15282/statm: 2745798 23087 3238 1 0 2708109 0
[pid=15282/tid=15335] ppid=15279 vsize=10983192 memory=0 CPUtime=0.65 cores=1,3,5,7
/proc/15282/task/15335/stat : 15335 (java) R 15279 15282 8396 0 -1 4202560 12227 13158 0 0 55 3 5 2 20 0 15 0 107466559 11246788608 23087 33554432000 4194304 4196468 140735932165104 140253176117456 140253188375902 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15336] ppid=15279 vsize=10983192 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15336/stat : 15336 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466560 11246788608 23087 33554432000 4194304 4196468 140735932165104 140253208538000 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15337] ppid=15279 vsize=10983192 memory=4140 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15337/stat : 15337 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466560 11246788608 23087 33554432000 4194304 4196468 140735932165104 140253098142480 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15338] ppid=15279 vsize=10983192 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15338/stat : 15338 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466560 11246788608 23087 33554432000 4194304 4196468 140735932165104 140252742917264 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15339] ppid=15279 vsize=10983192 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15339/stat : 15339 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 15 0 107466560 11246788608 23087 33554432000 4194304 4196468 140735932165104 140252741864464 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15340] ppid=15279 vsize=10983192 memory=4420 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15340/stat : 15340 (java) S 15279 15282 8396 0 -1 1077944384 5 13158 0 0 0 0 5 2 20 0 15 0 107466562 11246788608 23087 33554432000 4194304 4196468 140735932165104 140252697421936 140253204306562 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15341] ppid=15279 vsize=10983192 memory=6628 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15341/stat : 15341 (java) S 15279 15282 8396 0 -1 1077944384 13 13158 0 0 0 0 5 2 20 0 15 0 107466562 11246788608 23087 33554432000 4194304 4196468 140735932165104 140252089934624 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15342] ppid=15279 vsize=10983192 memory=8836 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15342/stat : 15342 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466562 11246788608 23087 33554432000 4194304 4196468 140735932165104 140251888608368 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15343] ppid=15279 vsize=10983192 memory=11044 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15343/stat : 15343 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 15 0 107466565 11246788608 23087 33554432000 4194304 4196468 140735932165104 140251620173904 140253204314011 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15344] ppid=15279 vsize=10983192 memory=13252 CPUtime=0.16 cores=1,3,5,7
/proc/15282/task/15344/stat : 15344 (java) S 15279 15282 8396 0 -1 1077944384 1089 13158 0 0 9 0 5 2 20 0 15 0 107466565 11246788608 23087 33554432000 4194304 4196468 140735932165104 140252696369776 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15345] ppid=15279 vsize=10983192 memory=15460 CPUtime=0.14 cores=1,3,5,7
/proc/15282/task/15345/stat : 15345 (java) S 15279 15282 8396 0 -1 1077944384 526 13158 0 0 7 0 5 2 20 0 15 0 107466565 11246788608 23087 33554432000 4194304 4196468 140735932165104 140252695316976 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15346] ppid=15279 vsize=10983192 memory=17668 CPUtime=0.2 cores=1,3,5,7
/proc/15282/task/15346/stat : 15346 (java) S 15279 15282 8396 0 -1 1077944384 701 13158 0 0 13 0 5 2 20 0 15 0 107466565 11246788608 23087 33554432000 4194304 4196468 140735932165104 140252170677104 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15347] ppid=15279 vsize=10983192 memory=19876 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15347/stat : 15347 (java) S 15279 15282 8396 0 -1 1077944384 3 13158 0 0 0 0 5 2 20 0 15 0 107466565 11246788608 23087 33554432000 4194304 4196468 140735932165104 140251150412768 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15348] ppid=15279 vsize=10983192 memory=22084 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15348/stat : 15348 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466566 11246788608 23087 33554432000 4194304 4196468 140735932165104 140252169623984 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
Current children cumulated CPU time: 0.98 s
Current children cumulated vsize: 10983192 KiB
Current children cumulated memory: 92348 KiB

[startup+1.50073 s]
/proc/loadavg: 1.96 1.87 1.81 3/215 15348
/proc/meminfo: memFree=16985364/32770624 swapFree=67108860/67108860
[pid=15282] ppid=15279 vsize=10991948 memory=248480 CPUtime=3.13 cores=1,3,5,7
/proc/15282/stat : 15282 (java) S 15279 15282 8396 0 -1 1077944320 24150 13158 0 0 295 11 5 2 20 0 15 0 107466550 11255754752 62102 33554432000 4194304 4196468 140735932165104 140735932147648 140253204295415 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
/proc/15282/statm: 2747987 62120 3475 1 0 2709645 0
[pid=15282/tid=15335] ppid=15279 vsize=10991948 memory=0 CPUtime=1.43 cores=1,3,5,7
/proc/15282/task/15335/stat : 15335 (java) R 15279 15282 8396 0 -1 4202560 14993 13158 0 0 129 7 5 2 20 0 15 0 107466559 11255754752 62120 33554432000 4194304 4196468 140735932165104 140253176127088 140252778103356 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15336] ppid=15279 vsize=10991948 memory=0 CPUtime=0.08 cores=1,3,5,7
/proc/15282/task/15336/stat : 15336 (java) S 15279 15282 8396 0 -1 1077944384 205 13158 0 0 1 0 5 2 20 0 15 0 107466560 11255754752 62120 33554432000 4194304 4196468 140735932165104 140253208538000 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15337] ppid=15279 vsize=10991948 memory=0 CPUtime=0.08 cores=1,3,5,7
/proc/15282/task/15337/stat : 15337 (java) R 15279 15282 8396 0 -1 1077944384 10 13158 0 0 1 0 5 2 20 0 15 0 107466560 11255754752 62120 33554432000 4194304 4196468 140735932165104 140253098142480 140253204305621 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15338] ppid=15279 vsize=10991948 memory=4051323354130624818 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15338/stat : 15338 (java) S 15279 15282 8396 0 -1 1077944384 79 13158 0 0 0 0 5 2 20 0 15 0 107466560 11255754752 62120 33554432000 4194304 4196468 140735932165104 140252742917264 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15339] ppid=15279 vsize=10991948 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15339/stat : 15339 (java) S 15279 15282 8396 0 -1 1077944384 15 13158 0 0 0 0 5 2 20 0 15 0 107466560 11255754752 62120 33554432000 4194304 4196468 140735932165104 140252741864464 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15340] ppid=15279 vsize=10991948 memory=-7965959130280075168 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15340/stat : 15340 (java) S 15279 15282 8396 0 -1 1077944384 86 13158 0 0 0 0 5 2 20 0 15 0 107466562 11255754752 62120 33554432000 4194304 4196468 140735932165104 140252697421936 140253204306562 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15341] ppid=15279 vsize=10991948 memory=280008648108288 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15341/stat : 15341 (java) S 15279 15282 8396 0 -1 1077944384 13 13158 0 0 0 0 5 2 20 0 15 0 107466562 11255754752 62120 33554432000 4194304 4196468 140735932165104 140252089934624 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15342] ppid=15279 vsize=10991948 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15342/stat : 15342 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 15 0 107466562 11255754752 62120 33554432000 4194304 4196468 140735932165104 140251888608368 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15343] ppid=15279 vsize=10991948 memory=1196 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15343/stat : 15343 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 15 0 107466565 11255754752 62120 33554432000 4194304 4196468 140735932165104 140251620173904 140253204314011 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15344] ppid=15279 vsize=10991948 memory=5788 CPUtime=0.64 cores=1,3,5,7
/proc/15282/task/15344/stat : 15344 (java) R 15279 15282 8396 0 -1 4202560 2485 13158 0 0 57 0 5 2 20 0 15 0 107466565 11255754752 62120 33554432000 4194304 4196468 140735932165104 140252696354768 140253197395115 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15345] ppid=15279 vsize=10991948 memory=4616 CPUtime=0.66 cores=1,3,5,7
/proc/15282/task/15345/stat : 15345 (java) R 15279 15282 8396 0 -1 4202560 2662 13158 0 0 59 0 5 2 20 0 15 0 107466565 11255754752 62120 33554432000 4194304 4196468 140735932165104 140252695303000 140253185818194 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15346] ppid=15279 vsize=10991948 memory=12032 CPUtime=0.5 cores=1,3,5,7
/proc/15282/task/15346/stat : 15346 (java) R 15279 15282 8396 0 -1 1077944384 1419 13158 0 0 43 0 5 2 20 0 15 0 107466565 11255754752 62120 33554432000 4194304 4196468 140735932165104 140252170677104 140253204306562 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15347] ppid=15279 vsize=10991948 memory=1008 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15347/stat : 15347 (java) S 15279 15282 8396 0 -1 1077944384 3 13158 0 0 0 0 5 2 20 0 15 0 107466565 11255754752 62120 33554432000 4194304 4196468 140735932165104 140251150412768 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15348] ppid=15279 vsize=10991948 memory=792 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15348/stat : 15348 (java) S 15279 15282 8396 0 -1 1077944384 1 13158 0 0 0 0 5 2 20 0 15 0 107466566 11255754752 62120 33554432000 4194304 4196468 140735932165104 140252169623984 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
Current children cumulated CPU time: 3.13 s
Current children cumulated vsize: 10991948 KiB

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

/proc/15282/task/15335/stat : 15335 (java) R 15279 15282 8396 0 -1 4202560 62362 13158 0 0 9973 49 5 2 20 0 15 0 107466559 11280941056 771554 33554432000 4194304 4196468 140735932165104 140253176128528 140252796134420 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15336] ppid=15279 vsize=11016544 memory=3071872 CPUtime=1.81 cores=1,3,5,7
/proc/15282/task/15336/stat : 15336 (java) S 15279 15282 8396 0 -1 1077944384 1690 13158 0 0 153 21 5 2 20 0 15 0 107466560 11280941056 771554 33554432000 4194304 4196468 140735932165104 140253208538000 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15337] ppid=15279 vsize=11016544 memory=3071872 CPUtime=1.79 cores=1,3,5,7
/proc/15282/task/15337/stat : 15337 (java) S 15279 15282 8396 0 -1 1077944384 1083 13158 0 0 152 20 5 2 20 0 15 0 107466560 11280941056 771554 33554432000 4194304 4196468 140735932165104 140253098142480 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15338] ppid=15279 vsize=11016544 memory=3018524 CPUtime=1.79 cores=1,3,5,7
/proc/15282/task/15338/stat : 15338 (java) S 15279 15282 8396 0 -1 1077944384 2200 13158 0 0 150 22 5 2 20 0 15 0 107466560 11280941056 771554 33554432000 4194304 4196468 140735932165104 140252742917264 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15339] ppid=15279 vsize=11016544 memory=280008648573504 CPUtime=1.79 cores=1,3,5,7
/proc/15282/task/15339/stat : 15339 (java) S 15279 15282 8396 0 -1 1077944384 2942 13158 0 0 152 20 5 2 20 0 15 0 107466560 11280941056 771554 33554432000 4194304 4196468 140735932165104 140252741864464 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15340] ppid=15279 vsize=11016544 memory=140004324092304 CPUtime=0.22 cores=1,3,5,7
/proc/15282/task/15340/stat : 15340 (java) S 15279 15282 8396 0 -1 1077944384 9474 13158 0 0 14 1 5 2 20 0 15 0 107466562 11280941056 771554 33554432000 4194304 4196468 140735932165104 140252697421936 140253204306562 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15341] ppid=15279 vsize=11016544 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15341/stat : 15341 (java) S 15279 15282 8396 0 -1 1077944384 19 13158 0 0 0 0 5 2 20 0 15 0 107466562 11280941056 771554 33554432000 4194304 4196468 140735932165104 140252089934688 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15342] ppid=15279 vsize=11016544 memory=3071872 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15342/stat : 15342 (java) S 15279 15282 8396 0 -1 1077944384 4 13158 0 0 0 0 5 2 20 0 15 0 107466562 11280941056 771554 33554432000 4194304 4196468 140735932165104 140251888608384 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15343] ppid=15279 vsize=11016544 memory=3071872 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15343/stat : 15343 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 15 0 107466565 11280941056 771554 33554432000 4194304 4196468 140735932165104 140251620173904 140253204314011 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15344] ppid=15279 vsize=11016544 memory=2412 CPUtime=13.1 cores=1,3,5,7
/proc/15282/task/15344/stat : 15344 (java) S 15279 15282 8396 0 -1 1077944384 24040 13158 0 0 1298 5 5 2 20 0 15 0 107466565 11280941056 771554 33554432000 4194304 4196468 140735932165104 140252696369776 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15345] ppid=15279 vsize=11016544 memory=1724 CPUtime=14.02 cores=1,3,5,7
/proc/15282/task/15345/stat : 15345 (java) S 15279 15282 8396 0 -1 1077944384 20721 13158 0 0 1392 3 5 2 20 0 15 0 107466565 11280941056 771554 33554432000 4194304 4196468 140735932165104 140252695316976 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15346] ppid=15279 vsize=11016544 memory=1228 CPUtime=3.65 cores=1,3,5,7
/proc/15282/task/15346/stat : 15346 (java) S 15279 15282 8396 0 -1 1077944384 15841 13158 0 0 353 5 5 2 20 0 15 0 107466565 11280941056 771554 33554432000 4194304 4196468 140735932165104 140252170677104 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15347] ppid=15279 vsize=11016544 memory=4140 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15347/stat : 15347 (java) S 15279 15282 8396 0 -1 1077944384 3 13158 0 0 0 0 5 2 20 0 15 0 107466565 11280941056 771554 33554432000 4194304 4196468 140735932165104 140251150412768 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15348] ppid=15279 vsize=11016544 memory=30496 CPUtime=0.12 cores=1,3,5,7
/proc/15282/task/15348/stat : 15348 (java) S 15279 15282 8396 0 -1 1077944384 320 13158 0 0 2 3 5 2 20 0 15 0 107466566 11280941056 771554 33554432000 4194304 4196468 140735932165104 140252169623984 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
Current children cumulated CPU time: 138.07 s
Current children cumulated vsize: 11016544 KiB
Current children cumulated memory: 3086216 KiB

[startup+162.301 s]
/proc/loadavg: 2.10 2.03 1.89 3/214 15478
/proc/meminfo: memFree=15712284/32770624 swapFree=67108860/67108860
[pid=15282] ppid=15279 vsize=11016544 memory=3158332 CPUtime=200.87 cores=1,3,5,7
/proc/15282/stat : 15282 (java) S 15279 15282 8396 0 -1 1077944320 164443 13158 0 0 19912 168 5 2 20 0 15 0 107466550 11280941056 789583 33554432000 4194304 4196468 140735932165104 140735932147648 140253204295415 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
/proc/15282/statm: 2754136 789583 3538 1 0 2715789 0
[pid=15282/tid=15335] ppid=15279 vsize=11016544 memory=3158332 CPUtime=159.89 cores=1,3,5,7
/proc/15282/task/15335/stat : 15335 (java) R 15279 15282 8396 0 -1 4202560 68207 13158 0 0 15932 50 5 2 20 0 15 0 107466559 11280941056 789583 33554432000 4194304 4196468 140735932165104 140253176128968 140252778940627 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15336] ppid=15279 vsize=11016544 memory=3158296 CPUtime=2.2 cores=1,3,5,7
/proc/15282/task/15336/stat : 15336 (java) S 15279 15282 8396 0 -1 1077944384 1941 13158 0 0 190 23 5 2 20 0 15 0 107466560 11280941056 789583 33554432000 4194304 4196468 140735932165104 140253208538000 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15337] ppid=15279 vsize=11016544 memory=12496 CPUtime=2.18 cores=1,3,5,7
/proc/15282/task/15337/stat : 15337 (java) S 15279 15282 8396 0 -1 1077944384 1194 13158 0 0 189 22 5 2 20 0 15 0 107466560 11280941056 789583 33554432000 4194304 4196468 140735932165104 140253098142480 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15338] ppid=15279 vsize=11016544 memory=3158288 CPUtime=2.18 cores=1,3,5,7
/proc/15282/task/15338/stat : 15338 (java) S 15279 15282 8396 0 -1 1077944384 4071 13158 0 0 187 24 5 2 20 0 15 0 107466560 11280941056 789583 33554432000 4194304 4196468 140735932165104 140252742917264 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15339] ppid=15279 vsize=11016544 memory=3158296 CPUtime=2.17 cores=1,3,5,7
/proc/15282/task/15339/stat : 15339 (java) S 15279 15282 8396 0 -1 1077944384 3120 13158 0 0 188 22 5 2 20 0 15 0 107466560 11280941056 789583 33554432000 4194304 4196468 140735932165104 140252741864464 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15340] ppid=15279 vsize=11016544 memory=3158332 CPUtime=0.23 cores=1,3,5,7
/proc/15282/task/15340/stat : 15340 (java) S 15279 15282 8396 0 -1 1077944384 9764 13158 0 0 15 1 5 2 20 0 15 0 107466562 11280941056 789583 33554432000 4194304 4196468 140735932165104 140252697421936 140253204306562 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15341] ppid=15279 vsize=11016544 memory=3158332 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15341/stat : 15341 (java) S 15279 15282 8396 0 -1 1077944384 19 13158 0 0 0 0 5 2 20 0 15 0 107466562 11280941056 789583 33554432000 4194304 4196468 140735932165104 140252089934688 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15342] ppid=15279 vsize=11016544 memory=3158332 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15342/stat : 15342 (java) S 15279 15282 8396 0 -1 1077944384 4 13158 0 0 0 0 5 2 20 0 15 0 107466562 11280941056 789583 33554432000 4194304 4196468 140735932165104 140251888608384 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15343] ppid=15279 vsize=11016544 memory=3158332 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15343/stat : 15343 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 15 0 107466565 11280941056 789583 33554432000 4194304 4196468 140735932165104 140251620173904 140253204314011 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15344] ppid=15279 vsize=11016544 memory=3158332 CPUtime=13.71 cores=1,3,5,7
/proc/15282/task/15344/stat : 15344 (java) S 15279 15282 8396 0 -1 1077944384 29096 13158 0 0 1358 6 5 2 20 0 15 0 107466565 11280941056 789583 33554432000 4194304 4196468 140735932165104 140252696369776 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15345] ppid=15279 vsize=11016544 memory=3158332 CPUtime=14.86 cores=1,3,5,7
/proc/15282/task/15345/stat : 15345 (java) S 15279 15282 8396 0 -1 1077944384 26061 13158 0 0 1474 5 5 2 20 0 15 0 107466565 11280941056 789583 33554432000 4194304 4196468 140735932165104 140252695316976 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15346] ppid=15279 vsize=11016544 memory=3158332 CPUtime=3.81 cores=1,3,5,7
/proc/15282/task/15346/stat : 15346 (java) S 15279 15282 8396 0 -1 1077944384 18414 13158 0 0 369 5 5 2 20 0 15 0 107466565 11280941056 789583 33554432000 4194304 4196468 140735932165104 140252170677104 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15347] ppid=15279 vsize=11016544 memory=3158332 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15347/stat : 15347 (java) S 15279 15282 8396 0 -1 1077944384 3 13158 0 0 0 0 5 2 20 0 15 0 107466565 11280941056 789583 33554432000 4194304 4196468 140735932165104 140251150412768 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15348] ppid=15279 vsize=11016544 memory=644 CPUtime=0.16 cores=1,3,5,7
/proc/15282/task/15348/stat : 15348 (java) S 15279 15282 8396 0 -1 1077944384 352 13158 0 0 4 5 5 2 20 0 15 0 107466566 11280941056 789583 33554432000 4194304 4196468 140735932165104 140252169623984 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
Current children cumulated CPU time: 200.87 s
Current children cumulated vsize: 11016544 KiB
Current children cumulated memory: 3158332 KiB



Maximum CPU time exceeded: sending SIGTERM then SIGKILL

[startup+211.701 s]
/proc/loadavg: 1.70 1.94 1.86 6/215 15487
/proc/meminfo: memFree=15853260/32770624 swapFree=67108860/67108860
[pid=15282] ppid=15279 vsize=11016544 memory=3187332 CPUtime=252.06 cores=1,3,5,7
/proc/15282/stat : 15282 (java) S 15279 15282 8396 0 -1 1077944320 175227 13158 0 0 25026 173 5 2 20 0 15 0 107466550 11280941056 796833 33554432000 4194304 4196468 140735932165104 140735932147648 140253204295415 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
/proc/15282/statm: 2754136 796833 3538 1 0 2715789 0
[pid=15282/tid=15335] ppid=15279 vsize=11016544 memory=3848 CPUtime=208.87 cores=1,3,5,7
/proc/15282/task/15335/stat : 15335 (java) R 15279 15282 8396 0 -1 4202560 71650 13158 0 0 20828 52 5 2 20 0 15 0 107466559 11280941056 796833 33554432000 4194304 4196468 140735932165104 140253176128968 140252774516220 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15336] ppid=15279 vsize=11016544 memory=3170820 CPUtime=2.61 cores=1,3,5,7
/proc/15282/task/15336/stat : 15336 (java) S 15279 15282 8396 0 -1 1077944384 3169 13158 0 0 231 23 5 2 20 0 15 0 107466560 11280941056 796833 33554432000 4194304 4196468 140735932165104 140253208538000 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15337] ppid=15279 vsize=11016544 memory=3168764 CPUtime=2.58 cores=1,3,5,7
/proc/15282/task/15337/stat : 15337 (java) S 15279 15282 8396 0 -1 1077944384 1957 13158 0 0 229 22 5 2 20 0 15 0 107466560 11280941056 796833 33554432000 4194304 4196468 140735932165104 140253098142480 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15338] ppid=15279 vsize=11016544 memory=3168764 CPUtime=2.59 cores=1,3,5,7
/proc/15282/task/15338/stat : 15338 (java) S 15279 15282 8396 0 -1 1077944384 4380 13158 0 0 228 24 5 2 20 0 15 0 107466560 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252742917264 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15339] ppid=15279 vsize=11016544 memory=1296 CPUtime=2.59 cores=1,3,5,7
/proc/15282/task/15339/stat : 15339 (java) S 15279 15282 8396 0 -1 1077944384 3256 13158 0 0 229 23 5 2 20 0 15 0 107466560 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252741864464 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15340] ppid=15279 vsize=11016544 memory=3187332 CPUtime=0.24 cores=1,3,5,7
/proc/15282/task/15340/stat : 15340 (java) S 15279 15282 8396 0 -1 1077944384 10059 13158 0 0 16 1 5 2 20 0 15 0 107466562 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252697421936 140253204306562 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15341] ppid=15279 vsize=11016544 memory=3168700 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15341/stat : 15341 (java) S 15279 15282 8396 0 -1 1077944384 19 13158 0 0 0 0 5 2 20 0 15 0 107466562 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252089934688 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15342] ppid=15279 vsize=11016544 memory=3170820 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15342/stat : 15342 (java) S 15279 15282 8396 0 -1 1077944384 4 13158 0 0 0 0 5 2 20 0 15 0 107466562 11280941056 796833 33554432000 4194304 4196468 140735932165104 140251888608384 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15343] ppid=15279 vsize=11016544 memory=3170820 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15343/stat : 15343 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 15 0 107466565 11280941056 796833 33554432000 4194304 4196468 140735932165104 140251620173904 140253204314011 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15344] ppid=15279 vsize=11016544 memory=3158332 CPUtime=13.96 cores=1,3,5,7
/proc/15282/task/15344/stat : 15344 (java) S 15279 15282 8396 0 -1 1077944384 30885 13158 0 0 1382 7 5 2 20 0 15 0 107466565 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252696369776 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15345] ppid=15279 vsize=11016544 memory=3168764 CPUtime=15.07 cores=1,3,5,7
/proc/15282/task/15345/stat : 15345 (java) S 15279 15282 8396 0 -1 1077944384 27486 13158 0 0 1495 5 5 2 20 0 15 0 107466565 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252695316976 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15346] ppid=15279 vsize=11016544 memory=3168764 CPUtime=3.88 cores=1,3,5,7
/proc/15282/task/15346/stat : 15346 (java) S 15279 15282 8396 0 -1 1077944384 19772 13158 0 0 375 6 5 2 20 0 15 0 107466565 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252170677104 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15347] ppid=15279 vsize=11016544 memory=3170820 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15347/stat : 15347 (java) S 15279 15282 8396 0 -1 1077944384 3 13158 0 0 0 0 5 2 20 0 15 0 107466565 11280941056 796833 33554432000 4194304 4196468 140735932165104 140251150412768 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15348] ppid=15279 vsize=11016544 memory=4140 CPUtime=0.18 cores=1,3,5,7
/proc/15282/task/15348/stat : 15348 (java) S 15279 15282 8396 0 -1 1077944384 390 13158 0 0 5 6 5 2 20 0 15 0 107466566 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252169623984 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
Current children cumulated CPU time: 252.06 s
Current children cumulated vsize: 11016544 KiB
Current children cumulated memory: 3187332 KiB

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

[startup+211.752 s]
# the end of solver process 15282 was just reported to runsolver
# cumulated CPU time of all completed processes:  user=250.339 s, system=1.78876 s

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

[startup+211.701 s]
/proc/loadavg: 1.70 1.94 1.86 6/215 15487
/proc/meminfo: memFree=15853260/32770624 swapFree=67108860/67108860
[pid=15282] ppid=15279 vsize=11016544 memory=3187332 CPUtime=252.06 cores=1,3,5,7
/proc/15282/stat : 15282 (java) S 15279 15282 8396 0 -1 1077944320 175227 13158 0 0 25026 173 5 2 20 0 15 0 107466550 11280941056 796833 33554432000 4194304 4196468 140735932165104 140735932147648 140253204295415 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
/proc/15282/statm: 2754136 796833 3538 1 0 2715789 0
[pid=15282/tid=15335] ppid=15279 vsize=11016544 memory=3848 CPUtime=208.87 cores=1,3,5,7
/proc/15282/task/15335/stat : 15335 (java) R 15279 15282 8396 0 -1 4202560 71650 13158 0 0 20828 52 5 2 20 0 15 0 107466559 11280941056 796833 33554432000 4194304 4196468 140735932165104 140253176128968 140252774516220 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15336] ppid=15279 vsize=11016544 memory=3170820 CPUtime=2.61 cores=1,3,5,7
/proc/15282/task/15336/stat : 15336 (java) S 15279 15282 8396 0 -1 1077944384 3169 13158 0 0 231 23 5 2 20 0 15 0 107466560 11280941056 796833 33554432000 4194304 4196468 140735932165104 140253208538000 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15337] ppid=15279 vsize=11016544 memory=3168764 CPUtime=2.58 cores=1,3,5,7
/proc/15282/task/15337/stat : 15337 (java) S 15279 15282 8396 0 -1 1077944384 1957 13158 0 0 229 22 5 2 20 0 15 0 107466560 11280941056 796833 33554432000 4194304 4196468 140735932165104 140253098142480 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15338] ppid=15279 vsize=11016544 memory=3168764 CPUtime=2.59 cores=1,3,5,7
/proc/15282/task/15338/stat : 15338 (java) S 15279 15282 8396 0 -1 1077944384 4380 13158 0 0 228 24 5 2 20 0 15 0 107466560 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252742917264 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15339] ppid=15279 vsize=11016544 memory=1296 CPUtime=2.59 cores=1,3,5,7
/proc/15282/task/15339/stat : 15339 (java) S 15279 15282 8396 0 -1 1077944384 3256 13158 0 0 229 23 5 2 20 0 15 0 107466560 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252741864464 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15340] ppid=15279 vsize=11016544 memory=3187332 CPUtime=0.24 cores=1,3,5,7
/proc/15282/task/15340/stat : 15340 (java) S 15279 15282 8396 0 -1 1077944384 10059 13158 0 0 16 1 5 2 20 0 15 0 107466562 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252697421936 140253204306562 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15341] ppid=15279 vsize=11016544 memory=3168700 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15341/stat : 15341 (java) S 15279 15282 8396 0 -1 1077944384 19 13158 0 0 0 0 5 2 20 0 15 0 107466562 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252089934688 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15342] ppid=15279 vsize=11016544 memory=3170820 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15342/stat : 15342 (java) S 15279 15282 8396 0 -1 1077944384 4 13158 0 0 0 0 5 2 20 0 15 0 107466562 11280941056 796833 33554432000 4194304 4196468 140735932165104 140251888608384 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15343] ppid=15279 vsize=11016544 memory=3170820 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15343/stat : 15343 (java) S 15279 15282 8396 0 -1 1077944384 2 13158 0 0 0 0 5 2 20 0 15 0 107466565 11280941056 796833 33554432000 4194304 4196468 140735932165104 140251620173904 140253204314011 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15344] ppid=15279 vsize=11016544 memory=3158332 CPUtime=13.96 cores=1,3,5,7
/proc/15282/task/15344/stat : 15344 (java) S 15279 15282 8396 0 -1 1077944384 30885 13158 0 0 1382 7 5 2 20 0 15 0 107466565 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252696369776 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15345] ppid=15279 vsize=11016544 memory=3168764 CPUtime=15.07 cores=1,3,5,7
/proc/15282/task/15345/stat : 15345 (java) S 15279 15282 8396 0 -1 1077944384 27486 13158 0 0 1495 5 5 2 20 0 15 0 107466565 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252695316976 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15346] ppid=15279 vsize=11016544 memory=3168764 CPUtime=3.88 cores=1,3,5,7
/proc/15282/task/15346/stat : 15346 (java) S 15279 15282 8396 0 -1 1077944384 19772 13158 0 0 375 6 5 2 20 0 15 0 107466565 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252170677104 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15347] ppid=15279 vsize=11016544 memory=3170820 CPUtime=0.07 cores=1,3,5,7
/proc/15282/task/15347/stat : 15347 (java) S 15279 15282 8396 0 -1 1077944384 3 13158 0 0 0 0 5 2 20 0 15 0 107466565 11280941056 796833 33554432000 4194304 4196468 140735932165104 140251150412768 140253204305621 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
[pid=15282/tid=15348] ppid=15279 vsize=11016544 memory=4140 CPUtime=0.18 cores=1,3,5,7
/proc/15282/task/15348/stat : 15348 (java) S 15279 15282 8396 0 -1 1077944384 390 13158 0 0 5 6 5 2 20 0 15 0 107466566 11280941056 796833 33554432000 4194304 4196468 140735932165104 140252169623984 140253204306562 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 22290432 140735932168808 140735932171617 140735932171617 140735932174287 0
Current children cumulated CPU time: 252.06 s
Current children cumulated vsize: 11016544 KiB
Current children cumulated memory: 3187332 KiB

Child status: 143
Real time (s): 211.752
CPU time (s): 252.128
CPU user time (s): 250.339
CPU system time (s): 1.78876
CPU usage (%): 119.067
Max. virtual memory (cumulated for all children) (KiB): 11016544
Max. memory (cumulated for all children) (KiB): 3187332

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 250.339
system time used= 1.78876
maximum resident set size= 3191476
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 189437
page faults= 0
swaps= 0
block input operations= 0
block output operations= 424
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 18964
involuntary context switches= 354


# summary of solver processes directly reported to runsolver:
#   pid: 15282
#   total CPU time (s): 252.128
#   total CPU user time (s): 250.339
#   total CPU system time (s): 1.78876

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 1.06778 second user time and 2.23132 second system time

The end

Launcher Data

Begin job on node103 at 2018-07-29 23:17:14
IDJOB=4302800
IDBENCH=141644
IDSOLVER=2777
FILE ID=node103/4302800-1532899033
RUNJOBID= node103-1532895438-9922
PBS_JOBID= 21022525
Free space on /tmp= 56760 MiB

SOLVER NAME= Concrete 3.9.2-SuperNG
BENCH NAME= XCSP18/SteelMillSlab/SteelMillSlab-m2-4-0_c18.xml
COMMAND LINE= bin/xcsp-3-concrete -J-Xss64M -randomseed=RANDOMSEED -superng BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4302800-1532899033/watcher-4302800-1532899033 -o /tmp/evaluation-result-4302800-1532899033/solver-4302800-1532899033 -C 252 -W 252 -M 15500 --bin-var /tmp/runsolver-exch-node103-1532895438-9922 --watchdog 312  bin/xcsp-3-concrete -J-Xss64M -randomseed=1345345970 -superng HOME/instance-4302800-1532899033.xml

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

MD5SUM BENCH= 04f92f5fbe642378aecc464c78b62b37
RANDOM SEED=1345345970

node103.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.48
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.48
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.48
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.48
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:        17085680 kB
MemAvailable:   28680708 kB
Buffers:          312120 kB
Cached:         11470744 kB
SwapCached:            0 kB
Active:          7123608 kB
Inactive:        7957872 kB
Active(anon):    3301304 kB
Inactive(anon):    25184 kB
Active(file):    3822304 kB
Inactive(file):  7932688 kB
Unevictable:        7120 kB
Mlocked:            7120 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             27620 kB
Writeback:             0 kB
AnonPages:       3373624 kB
Mapped:            58036 kB
Shmem:             25228 kB
Slab:             296996 kB
SReclaimable:     268496 kB
SUnreclaim:        28500 kB
KernelStack:        3840 kB
PageTables:        11716 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    4380412 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   3129344 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      124288 kB
DirectMap2M:    33421312 kB

Free space on /tmp at the end= 56732 MiB
End job on node103 at 2018-07-29 23:20:46