Trace number 4296035

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.8-SuperNG 2018-06-13? (TO) 2520.1 2467.25

General information on the benchmark

NameSteelMillSlab/
SteelMillSlab-m1-3-2_c18.xml
MD5SUMcf06b96073d81f03e6b89e8a6528df72
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 variables333
Number of constraints356
Number of domains3
Minimum domain size20
Maximum domain size111
Distribution of domain sizes[{"size":20,"count":111},{"size":43,"count":111},{"size":111,"count":111}]
Minimum variable degree2
Maximum variable degree224
Distribution of variable degrees[{"degree":2,"count":111},{"degree":4,"count":111},{"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":132},{"arity":111,"count":113},{"arity":112,"count":111}]
Number of extensional constraints111
Number of intensional constraints21
Distribution of constraint types[{"type":"extension","count":111},{"type":"intension","count":21},{"type":"ordered","count":1},{"type":"sum","count":223}]
Optimization problemYES
Type of objectivemin SUM

Solver Data

0.99/0.75	c Concrete v3.8.1528841891564 running
2520.03/2467.22	Exception in thread "main" java.util.concurrent.TimeoutException: Timeout while computing best cost
2520.03/2467.22		at concrete.heuristic.value.BestCost.checkValue$1(BestCost.scala:24)
2520.03/2467.22		at concrete.heuristic.value.BestCost.$anonfun$select$2(BestCost.scala:53)
2520.03/2467.22		at concrete.BitVectorDomain.$anonfun$filter$1(BitVectorDomain.scala:126)
2520.03/2467.22		at bitvectors.SmallBitVector.filter(SmallBitVector.scala:142)
2520.03/2467.22		at bitvectors.SmallBitVector.filter(SmallBitVector.scala:5)
2520.03/2467.22		at concrete.BitVectorDomain.filter(BitVectorDomain.scala:126)
2520.03/2467.22		at concrete.BitVectorDomain.filter(BitVectorDomain.scala:8)
2520.03/2467.22		at concrete.heuristic.value.BestCost.select(BestCost.scala:53)
2520.03/2467.22		at concrete.heuristic.value.ValueHeuristic.selectOne$1(ValueHeuristic.scala:102)
2520.03/2467.22		at concrete.heuristic.value.ValueHeuristic.$anonfun$branch$1(ValueHeuristic.scala:102)
2520.03/2467.22		at scala.Function2.$anonfun$tupled$1(Function2.scala:48)
2520.03/2467.22		at concrete.heuristic.value.ValueHeuristic.selectOne$1(ValueHeuristic.scala:102)
2520.03/2467.22		at concrete.heuristic.value.ValueHeuristic.$anonfun$branch$1(ValueHeuristic.scala:102)
2520.03/2467.22		at scala.Function2.$anonfun$tupled$1(Function2.scala:48)
2520.03/2467.22		at concrete.heuristic.value.ValueHeuristic.selectOne$1(ValueHeuristic.scala:102)
2520.03/2467.22		at concrete.heuristic.value.ValueHeuristic.branch(ValueHeuristic.scala:108)
2520.03/2467.22		at concrete.heuristic.CrossHeuristic.$anonfun$branch$1(CrossHeuristic.scala:42)
2520.03/2467.22		at scala.Option.map(Option.scala:146)
2520.03/2467.22		at concrete.heuristic.CrossHeuristic.branch(CrossHeuristic.scala:40)
2520.03/2467.22		at concrete.MAC.mac(MAC.scala:203)
2520.03/2467.22		at concrete.MAC.$anonfun$oneRun$1(MAC.scala:252)
2520.03/2467.22		at scala.util.Try$.apply(Try.scala:209)
2520.03/2467.22		at cspom.StatisticsManager$.$anonfun$measure$1(StatisticsManager.scala:194)
2520.03/2467.22		at cspom.StatisticsManager$.$anonfun$measureTry$1(StatisticsManager.scala:182)
2520.03/2467.22		at scala.runtime.java8.JFunction0$mcZ$sp.apply(JFunction0$mcZ$sp.java:12)
2520.03/2467.22		at org.scalameter.MeasureBuilder.$anonfun$measure$1(MeasureBuilder.scala:61)
2520.03/2467.22		at org.scalameter.Measurer$Default.measure(Measurer.scala:133)
2520.03/2467.22		at org.scalameter.MeasureBuilder.measureWith(MeasureBuilder.scala:51)
2520.03/2467.22		at org.scalameter.MeasureBuilder.measure(MeasureBuilder.scala:61)
2520.03/2467.22		at cspom.StatisticsManager$.measureTry(StatisticsManager.scala:181)
2520.03/2467.22		at cspom.StatisticsManager$.measure(StatisticsManager.scala:194)
2520.03/2467.22		at concrete.MAC.oneRun(MAC.scala:253)
2520.03/2467.22		at concrete.MAC.nextSolution(MAC.scala:272)
2520.03/2467.22		at concrete.MAC.$anonfun$nextSolution$5(MAC.scala:336)
2520.03/2467.22		at concrete.ProblemState.map(ProblemState.scala:221)
2520.03/2467.22		at concrete.ProblemState.map(ProblemState.scala:204)
2520.03/2467.22		at concrete.MAC.nextSolution(MAC.scala:334)
2520.03/2467.22		at concrete.Solver.hasNext(Solver.scala:166)
2520.03/2467.22		at scala.collection.Iterator.foreach(Iterator.scala:944)
2520.03/2467.22		at scala.collection.Iterator.foreach$(Iterator.scala:944)
2520.03/2467.22		at concrete.Solver.foreach(Solver.scala:68)
2520.03/2467.22		at concrete.runner.ConcreteRunner.$anonfun$run$2(ConcreteRunner.scala:73)
2520.03/2467.22		at scala.util.Success.$anonfun$map$1(Try.scala:251)
2520.03/2467.22		at scala.util.Success.map(Try.scala:209)
2520.03/2467.22		at concrete.runner.ConcreteRunner.run(ConcreteRunner.scala:68)
2520.03/2467.22		at concrete.runner.ConcreteRunner.run$(ConcreteRunner.scala:33)
2520.03/2467.22		at concrete.runner.XCSP3Concrete$.run(XCSP3Concrete.scala:18)
2520.03/2467.22		at concrete.runner.XCSP3Concrete$.delayedEndpoint$concrete$runner$XCSP3Concrete$1(XCSP3Concrete.scala:121)
2520.03/2467.22		at concrete.runner.XCSP3Concrete$delayedInit$body.apply(XCSP3Concrete.scala:18)
2520.03/2467.22		at scala.Function0.apply$mcV$sp(Function0.scala:34)
2520.03/2467.22		at scala.Function0.apply$mcV$sp$(Function0.scala:34)
2520.03/2467.22		at scala.runtime.AbstractFunction0.apply$mcV$sp(AbstractFunction0.scala:12)
2520.03/2467.22		at scala.App.$anonfun$main$1$adapted(App.scala:76)
2520.03/2467.22		at scala.collection.immutable.List.foreach(List.scala:389)
2520.03/2467.22		at scala.App.main(App.scala:76)
2520.03/2467.22		at scala.App.main$(App.scala:74)
2520.03/2467.22		at concrete.runner.XCSP3Concrete$.main(XCSP3Concrete.scala:18)
2520.03/2467.22		at concrete.runner.XCSP3Concrete.main(XCSP3Concrete.scala)
2520.03/2467.23	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 (6676 MiB free)
  memory of node 1: 16384 MiB (5139 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4296035-1532607455/watcher-4296035-1532607455 -o /tmp/evaluation-result-4296035-1532607455/solver-4296035-1532607455 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node138-1532582651-32591 --watchdog 2580 concrete-3.8/bin/xcsp-3-concrete -J-Xss32M -randomseed=125244002 -superng HOME/instance-4296035-1532607455.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=4579, runsolver pid=4576

[startup+0.10006 s]*
/proc/loadavg: 1.85 1.84 1.78 3/206 4636
/proc/meminfo: memFree=12095720/32770624 swapFree=67108796/67108860
[pid=4579] ppid=4576 vsize=9972712 memory=14912 CPUtime=0.09 cores=0,2,4,6
/proc/4579/stat : 4579 (java) S 4576 4579 32560 0 -1 1077944320 4368 12883 0 0 1 0 5 3 20 0 6 0 78308716 10212057088 3728 33554432000 4194304 4196468 140726100256016 140726100238560 140458181127927 0 0 0 16784584 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
/proc/4579/statm: 2493178 3728 1934 1 0 2481616 0
[pid=4579/tid=4632] ppid=4576 vsize=9972712 memory=-8171376296011865461 CPUtime=0.09 cores=0,2,4,6
/proc/4579/task/4632/stat : 4632 (java) R 4576 4579 32560 0 -1 4202560 2234 12883 0 0 1 0 5 3 20 0 6 0 78308725 10212057088 3794 33554432000 4194304 4196468 140726100256016 140458152964688 140458166810453 0 4 0 16784584 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4633] ppid=4576 vsize=9972712 memory=-1 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4633/stat : 4633 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 6 0 78308726 10212057088 3794 33554432000 4194304 4196468 140726100256016 140458185370384 140458181138133 0 4 0 16784584 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4634] ppid=4576 vsize=9972712 memory=140548095817344 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4634/stat : 4634 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 6 0 78308726 10212057088 3794 33554432000 4194304 4196468 140726100256016 140457753897872 140458181138133 0 4 0 16784584 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4635] ppid=4576 vsize=9972712 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4635/stat : 4635 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 6 0 78308726 10212057088 3794 33554432000 4194304 4196468 140726100256016 140457752845328 140458181138133 0 4 0 16784584 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4636] ppid=4576 vsize=9972712 memory=-1 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4636/stat : 4636 (java) S 4576 4579 32560 0 -1 1077944384 2 12883 0 0 0 0 5 3 20 0 6 0 78308726 10212057088 3794 33554432000 4194304 4196468 140726100256016 140457751792784 140458181138133 0 4 0 16784584 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
Current children cumulated CPU time: 0.09 s
Current children cumulated vsize: 9972712 KiB
Current children cumulated memory: 14912 KiB

[startup+0.209918 s]*
/proc/loadavg: 1.85 1.84 1.78 3/215 4645
/proc/meminfo: memFree=12074736/32770624 swapFree=67108796/67108860
[pid=4579] ppid=4576 vsize=10818904 memory=40556 CPUtime=0.27 cores=0,2,4,6
/proc/4579/stat : 4579 (java) S 4576 4579 32560 0 -1 1077944320 8402 12883 0 0 18 1 5 3 20 0 15 0 78308716 11078557696 10139 33554432000 4194304 4196468 140726100256016 140726100238560 140458181127927 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
/proc/4579/statm: 2704726 10139 2971 1 0 2667149 0
[pid=4579/tid=4632] ppid=4576 vsize=10819896 memory=-8171376296011865461 CPUtime=0.19 cores=0,2,4,6
/proc/4579/task/4632/stat : 4632 (java) R 4576 4579 32560 0 -1 4202560 5616 12883 0 0 11 0 5 3 20 0 15 0 78308725 11079573504 10198 33554432000 4194304 4196468 140726100256016 140458152952736 140458173845031 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4633] ppid=4576 vsize=10818904 memory=-1 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4633/stat : 4633 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308726 11078557696 10190 33554432000 4194304 4196468 140726100256016 140458185370384 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4634] ppid=4576 vsize=10818904 memory=140548095817344 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4634/stat : 4634 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308726 11078557696 10190 33554432000 4194304 4196468 140726100256016 140457753897872 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4635] ppid=4576 vsize=10818904 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4635/stat : 4635 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308726 11078557696 10190 33554432000 4194304 4196468 140726100256016 140457752845328 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4636] ppid=4576 vsize=10818904 memory=-1 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4636/stat : 4636 (java) S 4576 4579 32560 0 -1 1077944384 2 12883 0 0 0 0 5 3 20 0 15 0 78308726 11078557696 10190 33554432000 4194304 4196468 140726100256016 140457751792784 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4637] ppid=4576 vsize=10818904 memory=140548095817344 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4637/stat : 4637 (java) S 4576 4579 32560 0 -1 1077944384 2 12883 0 0 0 0 5 3 20 0 15 0 78308727 11078557696 10190 33554432000 4194304 4196468 140726100256016 140457505957872 140458181139074 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4638] ppid=4576 vsize=10818904 memory=-1 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4638/stat : 4638 (java) S 4576 4579 32560 0 -1 1077944384 33 12883 0 0 0 0 5 3 20 0 15 0 78308728 11078557696 10190 33554432000 4194304 4196468 140726100256016 140457504904096 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4639] ppid=4576 vsize=10818904 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4639/stat : 4639 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308728 11078557696 10190 33554432000 4194304 4196468 140726100256016 140457040405488 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4640] ppid=4576 vsize=10818904 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4640/stat : 4640 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11078557696 10190 33554432000 4194304 4196468 140726100256016 140456733006032 140458181146523 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4641] ppid=4576 vsize=10818936 memory=0 CPUtime=0.09 cores=0,2,4,6
/proc/4579/task/4641/stat : 4641 (java) S 4576 4579 32560 0 -1 1077944384 541 12883 0 0 1 0 5 3 20 0 15 0 78308731 11078590464 10190 33554432000 4194304 4196468 140726100256016 140457471347184 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4642] ppid=4576 vsize=10818936 memory=-1 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4642/stat : 4642 (java) S 4576 4579 32560 0 -1 1077944384 55 12883 0 0 0 0 5 3 20 0 15 0 78308731 11078590464 10190 33554432000 4194304 4196468 140726100256016 140457470294640 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4643] ppid=4576 vsize=10818936 memory=140548095817344 CPUtime=0.11 cores=0,2,4,6
/proc/4579/task/4643/stat : 4643 (java) S 4576 4579 32560 0 -1 1077944384 611 12883 0 0 3 0 5 3 20 0 15 0 78308731 11078590464 10190 33554432000 4194304 4196468 140726100256016 140457469242096 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4644] ppid=4576 vsize=10818936 memory=-1 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4644/stat : 4644 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11078590464 10190 33554432000 4194304 4196468 140726100256016 140456699448416 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4645] ppid=4576 vsize=10818936 memory=140548095817344 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4645/stat : 4645 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308731 11078590464 10255 33554432000 4194304 4196468 140726100256016 140457468188976 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
Current children cumulated CPU time: 0.27 s
Current children cumulated vsize: 10818904 KiB
Current children cumulated memory: 40556 KiB

[startup+0.310375 s]*
/proc/loadavg: 1.85 1.84 1.78 3/215 4645
/proc/meminfo: memFree=12062904/32770624 swapFree=67108796/67108860
[pid=4579] ppid=4576 vsize=10819352 memory=51224 CPUtime=0.38 cores=0,2,4,6
/proc/4579/stat : 4579 (java) S 4576 4579 32560 0 -1 1077944320 10925 12883 0 0 29 1 5 3 20 0 15 0 78308716 11079016448 12806 33554432000 4194304 4196468 140726100256016 140726100238560 140458181127927 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
/proc/4579/statm: 2704838 12806 3090 1 0 2667149 0
[pid=4579/tid=4632] ppid=4576 vsize=10819352 memory=6935054825532540783 CPUtime=0.29 cores=0,2,4,6
/proc/4579/task/4632/stat : 4632 (java) R 4576 4579 32560 0 -1 4202560 7451 12883 0 0 20 1 5 3 20 0 15 0 78308725 11079016448 12806 33554432000 4194304 4196468 140726100256016 140458152939936 140458165171557 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4633] ppid=4576 vsize=10819352 memory=8514701219931451533 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4633/stat : 4633 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308726 11079016448 12806 33554432000 4194304 4196468 140726100256016 140458185370384 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4634] ppid=4576 vsize=10819352 memory=1328725297981317182 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4634/stat : 4634 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308726 11079016448 12806 33554432000 4194304 4196468 140726100256016 140457753897872 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4635] ppid=4576 vsize=10819352 memory=-1 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4635/stat : 4635 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308726 11079016448 12806 33554432000 4194304 4196468 140726100256016 140457752845328 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4636] ppid=4576 vsize=10819352 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4636/stat : 4636 (java) S 4576 4579 32560 0 -1 1077944384 2 12883 0 0 0 0 5 3 20 0 15 0 78308726 11079016448 12806 33554432000 4194304 4196468 140726100256016 140457751792784 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4637] ppid=4576 vsize=10819352 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4637/stat : 4637 (java) S 4576 4579 32560 0 -1 1077944384 2 12883 0 0 0 0 5 3 20 0 15 0 78308727 11079016448 12806 33554432000 4194304 4196468 140726100256016 140457505957872 140458181139074 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4638] ppid=4576 vsize=10819352 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4638/stat : 4638 (java) S 4576 4579 32560 0 -1 1077944384 33 12883 0 0 0 0 5 3 20 0 15 0 78308728 11079016448 12806 33554432000 4194304 4196468 140726100256016 140457504904096 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4639] ppid=4576 vsize=10819352 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4639/stat : 4639 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308728 11079016448 12806 33554432000 4194304 4196468 140726100256016 140457040405488 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4640] ppid=4576 vsize=10819352 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4640/stat : 4640 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11079016448 12806 33554432000 4194304 4196468 140726100256016 140456733006032 140458181146523 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4641] ppid=4576 vsize=10819352 memory=0 CPUtime=0.1 cores=0,2,4,6
/proc/4579/task/4641/stat : 4641 (java) R 4576 4579 32560 0 -1 4202560 546 12883 0 0 2 0 5 3 20 0 15 0 78308731 11079016448 12806 33554432000 4194304 4196468 140726100256016 140457471347184 140458165531147 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4642] ppid=4576 vsize=10819352 memory=0 CPUtime=0.09 cores=0,2,4,6
/proc/4579/task/4642/stat : 4642 (java) S 4576 4579 32560 0 -1 1077944384 58 12883 0 0 1 0 5 3 20 0 15 0 78308731 11079016448 12806 33554432000 4194304 4196468 140726100256016 140457470294640 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4643] ppid=4576 vsize=10819352 memory=0 CPUtime=0.13 cores=0,2,4,6
/proc/4579/task/4643/stat : 4643 (java) S 4576 4579 32560 0 -1 1077944384 644 12883 0 0 5 0 5 3 20 0 15 0 78308731 11079016448 12806 33554432000 4194304 4196468 140726100256016 140457469242096 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4644] ppid=4576 vsize=10819352 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4644/stat : 4644 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11079016448 12806 33554432000 4194304 4196468 140726100256016 140456699448416 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4645] ppid=4576 vsize=10819352 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4645/stat : 4645 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308731 11079016448 12806 33554432000 4194304 4196468 140726100256016 140457468188976 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
Current children cumulated CPU time: 0.38 s
Current children cumulated vsize: 10819352 KiB
Current children cumulated memory: 51224 KiB

[startup+0.700692 s]
/proc/loadavg: 1.85 1.84 1.78 3/215 4645
/proc/meminfo: memFree=12052608/32770624 swapFree=67108796/67108860
[pid=4579] ppid=4576 vsize=10819352 memory=83876 CPUtime=0.99 cores=0,2,4,6
/proc/4579/stat : 4579 (java) S 4576 4579 32560 0 -1 1077944320 17171 12883 0 0 89 2 5 3 20 0 15 0 78308716 11079016448 20969 33554432000 4194304 4196468 140726100256016 140726100238560 140458181127927 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
/proc/4579/statm: 2704838 20969 3237 1 0 2667149 0
[pid=4579/tid=4632] ppid=4576 vsize=10819352 memory=0 CPUtime=0.67 cores=0,2,4,6
/proc/4579/task/4632/stat : 4632 (java) R 4576 4579 32560 0 -1 4202560 12442 12883 0 0 57 2 5 3 20 0 15 0 78308725 11079016448 20969 33554432000 4194304 4196468 140726100256016 140458152948216 140458166499216 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4633] ppid=4576 vsize=10819352 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4633/stat : 4633 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308726 11079016448 20969 33554432000 4194304 4196468 140726100256016 140458185370384 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4634] ppid=4576 vsize=10819352 memory=7886766292050524213 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4634/stat : 4634 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308726 11079016448 20969 33554432000 4194304 4196468 140726100256016 140457753897872 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4635] ppid=4576 vsize=10819352 memory=5860705218891763792 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4635/stat : 4635 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308726 11079016448 20969 33554432000 4194304 4196468 140726100256016 140457752845328 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4636] ppid=4576 vsize=10819352 memory=6226596351323422817 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4636/stat : 4636 (java) S 4576 4579 32560 0 -1 1077944384 2 12883 0 0 0 0 5 3 20 0 15 0 78308726 11079016448 20969 33554432000 4194304 4196468 140726100256016 140457751792784 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4637] ppid=4576 vsize=10819352 memory=2319389199337275488 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4637/stat : 4637 (java) S 4576 4579 32560 0 -1 1077944384 6 12883 0 0 0 0 5 3 20 0 15 0 78308727 11079016448 20969 33554432000 4194304 4196468 140726100256016 140457505957872 140458181139074 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4638] ppid=4576 vsize=10819352 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4638/stat : 4638 (java) S 4576 4579 32560 0 -1 1077944384 33 12883 0 0 0 0 5 3 20 0 15 0 78308728 11079016448 20969 33554432000 4194304 4196468 140726100256016 140457504904096 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4639] ppid=4576 vsize=10819352 memory=3708 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4639/stat : 4639 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308728 11079016448 20969 33554432000 4194304 4196468 140726100256016 140457040405488 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4640] ppid=4576 vsize=10819352 memory=2241 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4640/stat : 4640 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11079016448 20969 33554432000 4194304 4196468 140726100256016 140456733006032 140458181146523 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4641] ppid=4576 vsize=10819352 memory=2244 CPUtime=0.18 cores=0,2,4,6
/proc/4579/task/4641/stat : 4641 (java) S 4576 4579 32560 0 -1 1077944384 1217 12883 0 0 10 0 5 3 20 0 15 0 78308731 11079016448 20969 33554432000 4194304 4196468 140726100256016 140457471347184 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4642] ppid=4576 vsize=10819352 memory=0 CPUtime=0.15 cores=0,2,4,6
/proc/4579/task/4642/stat : 4642 (java) S 4576 4579 32560 0 -1 1077944384 451 12883 0 0 7 0 5 3 20 0 15 0 78308731 11079016448 20969 33554432000 4194304 4196468 140726100256016 140457470294640 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4643] ppid=4576 vsize=10819352 memory=0 CPUtime=0.21 cores=0,2,4,6
/proc/4579/task/4643/stat : 4643 (java) S 4576 4579 32560 0 -1 1077944384 821 12883 0 0 13 0 5 3 20 0 15 0 78308731 11079016448 20969 33554432000 4194304 4196468 140726100256016 140457469242096 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4644] ppid=4576 vsize=10819352 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4644/stat : 4644 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11079016448 20969 33554432000 4194304 4196468 140726100256016 140456699448416 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4645] ppid=4576 vsize=10819352 memory=30305 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4645/stat : 4645 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308731 11079016448 20969 33554432000 4194304 4196468 140726100256016 140457468188976 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
Current children cumulated CPU time: 0.99 s
Current children cumulated vsize: 10819352 KiB
Current children cumulated memory: 83876 KiB

[startup+1.50089 s]
/proc/loadavg: 1.85 1.84 1.78 3/215 4645
/proc/meminfo: memFree=12008080/32770624 swapFree=67108796/67108860
[pid=4579] ppid=4576 vsize=10830156 memory=201168 CPUtime=3.12 cores=0,2,4,6
/proc/4579/stat : 4579 (java) S 4576 4579 32560 0 -1 1077944320 24746 12883 0 0 297 7 5 3 20 0 15 0 78308716 11090079744 50292 33554432000 4194304 4196468 140726100256016 140726100238560 140458181127927 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
/proc/4579/statm: 2707539 50292 3451 1 0 2669197 0
[pid=4579/tid=4632] ppid=4576 vsize=10830156 memory=124 CPUtime=1.46 cores=0,2,4,6
/proc/4579/task/4632/stat : 4632 (java) R 4576 4579 32560 0 -1 4202560 16307 12883 0 0 133 5 5 3 20 0 15 0 78308725 11090079744 50292 33554432000 4194304 4196468 140726100256016 140458152952064 140458161396974 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4633] ppid=4576 vsize=10830156 memory=78 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4633/stat : 4633 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308726 11090079744 50292 33554432000 4194304 4196468 140726100256016 140458185370384 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4634] ppid=4576 vsize=10830156 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4634/stat : 4634 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308726 11090079744 50292 33554432000 4194304 4196468 140726100256016 140457753897872 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4635] ppid=4576 vsize=10830156 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4635/stat : 4635 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308726 11090079744 50292 33554432000 4194304 4196468 140726100256016 140457752845328 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4636] ppid=4576 vsize=10830156 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4636/stat : 4636 (java) S 4576 4579 32560 0 -1 1077944384 2 12883 0 0 0 0 5 3 20 0 15 0 78308726 11090079744 50292 33554432000 4194304 4196468 140726100256016 140457751792784 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4637] ppid=4576 vsize=10830156 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4637/stat : 4637 (java) S 4576 4579 32560 0 -1 1077944384 13 12883 0 0 0 0 5 3 20 0 15 0 78308727 11090079744 50292 33554432000 4194304 4196468 140726100256016 140457505957872 140458181139074 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4638] ppid=4576 vsize=10830156 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4638/stat : 4638 (java) S 4576 4579 32560 0 -1 1077944384 33 12883 0 0 0 0 5 3 20 0 15 0 78308728 11090079744 50292 33554432000 4194304 4196468 140726100256016 140457504904096 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4639] ppid=4576 vsize=10830156 memory=-7591201286991560646 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4639/stat : 4639 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308728 11090079744 50292 33554432000 4194304 4196468 140726100256016 140457040405488 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4640] ppid=4576 vsize=10830156 memory=-2127768705916493815 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4640/stat : 4640 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11090079744 50292 33554432000 4194304 4196468 140726100256016 140456733006032 140458181146523 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4641] ppid=4576 vsize=10830156 memory=-2897801490638248331 CPUtime=0.69 cores=0,2,4,6
/proc/4579/task/4641/stat : 4641 (java) R 4576 4579 32560 0 -1 4202560 2388 12883 0 0 61 0 5 3 20 0 15 0 78308731 11090079744 50292 33554432000 4194304 4196468 140726100256016 140457471334000 140458159519881 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4642] ppid=4576 vsize=10830156 memory=-6724255255976108952 CPUtime=0.65 cores=0,2,4,6
/proc/4579/task/4642/stat : 4642 (java) S 4576 4579 32560 0 -1 1077944384 1991 12883 0 0 57 0 5 3 20 0 15 0 78308731 11090079744 50292 33554432000 4194304 4196468 140726100256016 140457470294640 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4643] ppid=4576 vsize=10830156 memory=-2746958450906831519 CPUtime=0.52 cores=0,2,4,6
/proc/4579/task/4643/stat : 4643 (java) S 4576 4579 32560 0 -1 1077944384 1815 12883 0 0 44 0 5 3 20 0 15 0 78308731 11090079744 50292 33554432000 4194304 4196468 140726100256016 140457469242096 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4644] ppid=4576 vsize=10830156 memory=64 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4644/stat : 4644 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11090079744 50292 33554432000 4194304 4196468 140726100256016 140456699448416 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4645] ppid=4576 vsize=10830156 memory=33 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4645/stat : 4645 (java) S 4576 4579 32560 0 -1 1077944384 1 12883 0 0 0 0 5 3 20 0 15 0 78308731 11090079744 50292 33554432000 4194304 4196468 140726100256016 140457468188976 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
Current children cumulated CPU time: 3.12 s
Current children cumulated vsize: 10830156 KiB

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

/proc/4579/task/4632/stat : 4632 (java) R 4576 4579 32560 0 -1 4202560 220501 12883 0 0 231368 47 5 3 20 0 15 0 78308725 11113168896 863662 33554432000 4194304 4196468 140726100256016 140458152961384 140457806240938 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4633] ppid=4576 vsize=10852704 memory=3454648 CPUtime=7.26 cores=0,2,4,6
/proc/4579/task/4633/stat : 4633 (java) S 4576 4579 32560 0 -1 1077944384 12867 12883 0 0 659 59 5 3 20 0 15 0 78308726 11113168896 863662 33554432000 4194304 4196468 140726100256016 140458185370384 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4634] ppid=4576 vsize=10852704 memory=3454648 CPUtime=7.36 cores=0,2,4,6
/proc/4579/task/4634/stat : 4634 (java) S 4576 4579 32560 0 -1 1077944384 16195 12883 0 0 666 62 5 3 20 0 15 0 78308726 11113168896 863662 33554432000 4194304 4196468 140726100256016 140457753897872 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4635] ppid=4576 vsize=10852704 memory=3454648 CPUtime=7.37 cores=0,2,4,6
/proc/4579/task/4635/stat : 4635 (java) S 4576 4579 32560 0 -1 1077944384 10524 12883 0 0 670 59 5 3 20 0 15 0 78308726 11113168896 863662 33554432000 4194304 4196468 140726100256016 140457752845328 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4636] ppid=4576 vsize=10852704 memory=3454648 CPUtime=7.31 cores=0,2,4,6
/proc/4579/task/4636/stat : 4636 (java) S 4576 4579 32560 0 -1 1077944384 17107 12883 0 0 664 59 5 3 20 0 15 0 78308726 11113168896 863662 33554432000 4194304 4196468 140726100256016 140457751792784 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4637] ppid=4576 vsize=10852704 memory=3454648 CPUtime=0.54 cores=0,2,4,6
/proc/4579/task/4637/stat : 4637 (java) S 4576 4579 32560 0 -1 1077944384 24981 12883 0 0 42 4 5 3 20 0 15 0 78308727 11113168896 863662 33554432000 4194304 4196468 140726100256016 140457505957872 140458181139074 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4638] ppid=4576 vsize=10852704 memory=3454648 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4638/stat : 4638 (java) S 4576 4579 32560 0 -1 1077944384 48 12883 0 0 0 0 5 3 20 0 15 0 78308728 11113168896 863662 33554432000 4194304 4196468 140726100256016 140457504904224 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4639] ppid=4576 vsize=10852704 memory=3454648 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4639/stat : 4639 (java) S 4576 4579 32560 0 -1 1077944384 37 12883 0 0 0 0 5 3 20 0 15 0 78308728 11113168896 863662 33554432000 4194304 4196468 140726100256016 140457040405504 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4640] ppid=4576 vsize=10852704 memory=3708 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4640/stat : 4640 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11113168896 863662 33554432000 4194304 4196468 140726100256016 140456733006032 140458181146523 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4641] ppid=4576 vsize=10852704 memory=3454648 CPUtime=13.5 cores=0,2,4,6
/proc/4579/task/4641/stat : 4641 (java) S 4576 4579 32560 0 -1 1077944384 57488 12883 0 0 1335 7 5 3 20 0 15 0 78308731 11113168896 863662 33554432000 4194304 4196468 140726100256016 140457471347184 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 71 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4642] ppid=4576 vsize=10852704 memory=3454648 CPUtime=13.01 cores=0,2,4,6
/proc/4579/task/4642/stat : 4642 (java) S 4576 4579 32560 0 -1 1077944384 44976 12883 0 0 1287 6 5 3 20 0 15 0 78308731 11113168896 863662 33554432000 4194304 4196468 140726100256016 140457470294640 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4643] ppid=4576 vsize=10852704 memory=3454648 CPUtime=3.67 cores=0,2,4,6
/proc/4579/task/4643/stat : 4643 (java) S 4576 4579 32560 0 -1 1077944384 34265 12883 0 0 352 7 5 3 20 0 15 0 78308731 11113168896 863662 33554432000 4194304 4196468 140726100256016 140457469242096 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 71 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4644] ppid=4576 vsize=10852704 memory=3454648 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4644/stat : 4644 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11113168896 863662 33554432000 4194304 4196468 140726100256016 140456699448416 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4645] ppid=4576 vsize=10852704 memory=3454648 CPUtime=0.99 cores=0,2,4,6
/proc/4579/task/4645/stat : 4645 (java) S 4576 4579 32560 0 -1 1077944384 2132 12883 0 0 43 48 5 3 20 0 15 0 78308731 11113168896 863662 33554432000 4194304 4196468 140726100256016 140457468188976 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 72 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
Current children cumulated CPU time: 2374.63 s
Current children cumulated vsize: 10852704 KiB
Current children cumulated memory: 3454648 KiB

[startup+2382.3 s]
/proc/loadavg: 1.99 1.96 1.95 3/215 4846
/proc/meminfo: memFree=11842644/32770624 swapFree=67108796/67108860
[pid=4579] ppid=4576 vsize=10852704 memory=3433100 CPUtime=2434.82 cores=0,2,4,6
/proc/4579/stat : 4579 (java) S 4576 4579 32560 0 -1 1077944320 457252 12883 0 0 243120 354 5 3 20 0 15 0 78308716 11113168896 858275 33554432000 4194304 4196468 140726100256016 140726100238560 140458181127927 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
/proc/4579/statm: 2713176 858275 3537 1 0 2674829 0
[pid=4579/tid=4632] ppid=4576 vsize=10852704 memory=3442848 CPUtime=2374.19 cores=0,2,4,6
/proc/4579/task/4632/stat : 4632 (java) R 4576 4579 32560 0 -1 4202560 225034 12883 0 0 237363 48 5 3 20 0 15 0 78308725 11113168896 858275 33554432000 4194304 4196468 140726100256016 140458152961176 140457799635604 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4633] ppid=4576 vsize=10852704 memory=47 CPUtime=7.29 cores=0,2,4,6
/proc/4579/task/4633/stat : 4633 (java) S 4576 4579 32560 0 -1 1077944384 14658 12883 0 0 662 59 5 3 20 0 15 0 78308726 11113168896 858275 33554432000 4194304 4196468 140726100256016 140458185370384 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4634] ppid=4576 vsize=10852704 memory=3442848 CPUtime=7.39 cores=0,2,4,6
/proc/4579/task/4634/stat : 4634 (java) S 4576 4579 32560 0 -1 1077944384 16236 12883 0 0 669 62 5 3 20 0 15 0 78308726 11113168896 858275 33554432000 4194304 4196468 140726100256016 140457753897872 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4635] ppid=4576 vsize=10852704 memory=3442848 CPUtime=7.4 cores=0,2,4,6
/proc/4579/task/4635/stat : 4635 (java) S 4576 4579 32560 0 -1 1077944384 10687 12883 0 0 673 59 5 3 20 0 15 0 78308726 11113168896 858275 33554432000 4194304 4196468 140726100256016 140457752845328 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4636] ppid=4576 vsize=10852704 memory=3433100 CPUtime=7.33 cores=0,2,4,6
/proc/4579/task/4636/stat : 4636 (java) S 4576 4579 32560 0 -1 1077944384 17162 12883 0 0 666 59 5 3 20 0 15 0 78308726 11113168896 858275 33554432000 4194304 4196468 140726100256016 140457751792784 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4637] ppid=4576 vsize=10852704 memory=3433100 CPUtime=0.55 cores=0,2,4,6
/proc/4579/task/4637/stat : 4637 (java) S 4576 4579 32560 0 -1 1077944384 25273 12883 0 0 42 5 5 3 20 0 15 0 78308727 11113168896 858275 33554432000 4194304 4196468 140726100256016 140457505957872 140458181139074 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4638] ppid=4576 vsize=10852704 memory=3433100 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4638/stat : 4638 (java) S 4576 4579 32560 0 -1 1077944384 48 12883 0 0 0 0 5 3 20 0 15 0 78308728 11113168896 858275 33554432000 4194304 4196468 140726100256016 140457504904224 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4639] ppid=4576 vsize=10852704 memory=3433100 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4639/stat : 4639 (java) S 4576 4579 32560 0 -1 1077944384 37 12883 0 0 0 0 5 3 20 0 15 0 78308728 11113168896 858275 33554432000 4194304 4196468 140726100256016 140457040405504 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4640] ppid=4576 vsize=10852704 memory=237271 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4640/stat : 4640 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11113168896 858275 33554432000 4194304 4196468 140726100256016 140456733006032 140458181146523 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4641] ppid=4576 vsize=10852704 memory=3433100 CPUtime=13.52 cores=0,2,4,6
/proc/4579/task/4641/stat : 4641 (java) S 4576 4579 32560 0 -1 1077944384 58446 12883 0 0 1337 7 5 3 20 0 15 0 78308731 11113168896 858275 33554432000 4194304 4196468 140726100256016 140457471347184 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 71 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4642] ppid=4576 vsize=10852704 memory=3433100 CPUtime=13.04 cores=0,2,4,6
/proc/4579/task/4642/stat : 4642 (java) S 4576 4579 32560 0 -1 1077944384 48495 12883 0 0 1290 6 5 3 20 0 15 0 78308731 11113168896 858275 33554432000 4194304 4196468 140726100256016 140457470294640 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4643] ppid=4576 vsize=10852704 memory=3433100 CPUtime=3.68 cores=0,2,4,6
/proc/4579/task/4643/stat : 4643 (java) S 4576 4579 32560 0 -1 1077944384 36802 12883 0 0 353 7 5 3 20 0 15 0 78308731 11113168896 858275 33554432000 4194304 4196468 140726100256016 140457469242096 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 71 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4644] ppid=4576 vsize=10852704 memory=3433100 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4644/stat : 4644 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11113168896 858275 33554432000 4194304 4196468 140726100256016 140456699448416 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4645] ppid=4576 vsize=10852704 memory=3442848 CPUtime=1.02 cores=0,2,4,6
/proc/4579/task/4645/stat : 4645 (java) S 4576 4579 32560 0 -1 1077944384 2180 12883 0 0 45 49 5 3 20 0 15 0 78308731 11113168896 858275 33554432000 4194304 4196468 140726100256016 140457468188976 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 72 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
Current children cumulated CPU time: 2434.82 s
Current children cumulated vsize: 10852704 KiB
Current children cumulated memory: 3433100 KiB

[startup+2442.3 s]
/proc/loadavg: 2.00 1.97 1.96 3/215 4848
/proc/meminfo: memFree=11851028/32770624 swapFree=67108796/67108860
[pid=4579] ppid=4576 vsize=10852704 memory=3424892 CPUtime=2495.04 cores=0,2,4,6
/proc/4579/stat : 4579 (java) S 4576 4579 32560 0 -1 1077944320 471581 12883 0 0 249139 357 5 3 20 0 15 0 78308716 11113168896 856223 33554432000 4194304 4196468 140726100256016 140726100238560 140458181127927 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
/proc/4579/statm: 2713176 856223 3537 1 0 2674829 0
[pid=4579/tid=4632] ppid=4576 vsize=10852704 memory=3424892 CPUtime=2434.15 cores=0,2,4,6
/proc/4579/task/4632/stat : 4632 (java) R 4576 4579 32560 0 -1 4202560 229066 12883 0 0 243358 49 5 3 20 0 15 0 78308725 11113168896 856223 33554432000 4194304 4196468 140726100256016 140458152961208 140457793556286 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4633] ppid=4576 vsize=10852704 memory=3424892 CPUtime=7.32 cores=0,2,4,6
/proc/4579/task/4633/stat : 4633 (java) S 4576 4579 32560 0 -1 1077944384 14699 12883 0 0 665 59 5 3 20 0 15 0 78308726 11113168896 856223 33554432000 4194304 4196468 140726100256016 140458185370384 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4634] ppid=4576 vsize=10852704 memory=3424892 CPUtime=7.42 cores=0,2,4,6
/proc/4579/task/4634/stat : 4634 (java) S 4576 4579 32560 0 -1 1077944384 16426 12883 0 0 672 62 5 3 20 0 15 0 78308726 11113168896 856223 33554432000 4194304 4196468 140726100256016 140457753897872 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4635] ppid=4576 vsize=10852704 memory=3424892 CPUtime=7.43 cores=0,2,4,6
/proc/4579/task/4635/stat : 4635 (java) S 4576 4579 32560 0 -1 1077944384 10772 12883 0 0 676 59 5 3 20 0 15 0 78308726 11113168896 856223 33554432000 4194304 4196468 140726100256016 140457752845328 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4636] ppid=4576 vsize=10852704 memory=3424892 CPUtime=7.37 cores=0,2,4,6
/proc/4579/task/4636/stat : 4636 (java) S 4576 4579 32560 0 -1 1077944384 18911 12883 0 0 669 60 5 3 20 0 15 0 78308726 11113168896 856223 33554432000 4194304 4196468 140726100256016 140457751792784 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4637] ppid=4576 vsize=10852704 memory=3424892 CPUtime=0.55 cores=0,2,4,6
/proc/4579/task/4637/stat : 4637 (java) S 4576 4579 32560 0 -1 1077944384 25565 12883 0 0 42 5 5 3 20 0 15 0 78308727 11113168896 856223 33554432000 4194304 4196468 140726100256016 140457505957872 140458181139074 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4638] ppid=4576 vsize=10852704 memory=3424892 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4638/stat : 4638 (java) S 4576 4579 32560 0 -1 1077944384 48 12883 0 0 0 0 5 3 20 0 15 0 78308728 11113168896 856223 33554432000 4194304 4196468 140726100256016 140457504904224 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4639] ppid=4576 vsize=10852704 memory=3424892 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4639/stat : 4639 (java) S 4576 4579 32560 0 -1 1077944384 37 12883 0 0 0 0 5 3 20 0 15 0 78308728 11113168896 856223 33554432000 4194304 4196468 140726100256016 140457040405504 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4640] ppid=4576 vsize=10852704 memory=3708 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4640/stat : 4640 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11113168896 856223 33554432000 4194304 4196468 140726100256016 140456733006032 140458181146523 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4641] ppid=4576 vsize=10852704 memory=23180 CPUtime=13.57 cores=0,2,4,6
/proc/4579/task/4641/stat : 4641 (java) S 4576 4579 32560 0 -1 1077944384 62569 12883 0 0 1342 7 5 3 20 0 15 0 78308731 11113168896 856223 33554432000 4194304 4196468 140726100256016 140457471347184 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 71 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4642] ppid=4576 vsize=10852704 memory=3424892 CPUtime=13.09 cores=0,2,4,6
/proc/4579/task/4642/stat : 4642 (java) S 4576 4579 32560 0 -1 1077944384 49496 12883 0 0 1294 7 5 3 20 0 15 0 78308731 11113168896 856223 33554432000 4194304 4196468 140726100256016 140457470294640 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4643] ppid=4576 vsize=10852704 memory=3708 CPUtime=3.71 cores=0,2,4,6
/proc/4579/task/4643/stat : 4643 (java) S 4576 4579 32560 0 -1 1077944384 39577 12883 0 0 355 8 5 3 20 0 15 0 78308731 11113168896 856223 33554432000 4194304 4196468 140726100256016 140457469242096 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 71 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4644] ppid=4576 vsize=10852704 memory=960 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4644/stat : 4644 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11113168896 856223 33554432000 4194304 4196468 140726100256016 140456699448416 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4645] ppid=4576 vsize=10852704 memory=1232 CPUtime=1.06 cores=0,2,4,6
/proc/4579/task/4645/stat : 4645 (java) S 4576 4579 32560 0 -1 1077944384 2221 12883 0 0 47 51 5 3 20 0 15 0 78308731 11113168896 856223 33554432000 4194304 4196468 140726100256016 140457468188976 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 72 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
Current children cumulated CPU time: 2495.04 s
Current children cumulated vsize: 10852704 KiB
Current children cumulated memory: 3424892 KiB



Maximum CPU time exceeded: sending SIGTERM then SIGKILL

[startup+2467.2 s]
/proc/loadavg: 1.94 1.96 1.95 3/215 4849
/proc/meminfo: memFree=11858464/32770624 swapFree=67108796/67108860
[pid=4579] ppid=4576 vsize=10852704 memory=3417200 CPUtime=2520.03 cores=0,2,4,6
/proc/4579/stat : 4579 (java) S 4576 4579 32560 0 -1 1077944320 476847 12883 0 0 251636 359 5 3 20 0 15 0 78308716 11113168896 854300 33554432000 4194304 4196468 140726100256016 140726100238560 140458181127927 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
/proc/4579/statm: 2713176 854300 3537 1 0 2674829 0
[pid=4579/tid=4632] ppid=4576 vsize=10852704 memory=8112282956445269571 CPUtime=2459.03 cores=0,2,4,6
/proc/4579/task/4632/stat : 4632 (java) R 4576 4579 32560 0 -1 4202560 230047 12883 0 0 245845 50 5 3 20 0 15 0 78308725 11113168896 854300 33554432000 4194304 4196468 140726100256016 140458152961760 140457793557798 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4633] ppid=4576 vsize=10852704 memory=23180 CPUtime=7.33 cores=0,2,4,6
/proc/4579/task/4633/stat : 4633 (java) S 4576 4579 32560 0 -1 1077944384 14733 12883 0 0 666 59 5 3 20 0 15 0 78308726 11113168896 854300 33554432000 4194304 4196468 140726100256016 140458185370384 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4634] ppid=4576 vsize=10852704 memory=2088 CPUtime=7.44 cores=0,2,4,6
/proc/4579/task/4634/stat : 4634 (java) S 4576 4579 32560 0 -1 1077944384 18180 12883 0 0 674 62 5 3 20 0 15 0 78308726 11113168896 854300 33554432000 4194304 4196468 140726100256016 140457753897872 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4635] ppid=4576 vsize=10852704 memory=1040 CPUtime=7.44 cores=0,2,4,6
/proc/4579/task/4635/stat : 4635 (java) S 4576 4579 32560 0 -1 1077944384 10837 12883 0 0 677 59 5 3 20 0 15 0 78308726 11113168896 854300 33554432000 4194304 4196468 140726100256016 140457752845328 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4636] ppid=4576 vsize=10852704 memory=3417200 CPUtime=7.39 cores=0,2,4,6
/proc/4579/task/4636/stat : 4636 (java) S 4576 4579 32560 0 -1 1077944384 19084 12883 0 0 671 60 5 3 20 0 15 0 78308726 11113168896 854300 33554432000 4194304 4196468 140726100256016 140457751792784 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4637] ppid=4576 vsize=10852704 memory=840 CPUtime=0.55 cores=0,2,4,6
/proc/4579/task/4637/stat : 4637 (java) S 4576 4579 32560 0 -1 1077944384 25828 12883 0 0 42 5 5 3 20 0 15 0 78308727 11113168896 854300 33554432000 4194304 4196468 140726100256016 140457505957872 140458181139074 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4638] ppid=4576 vsize=10852704 memory=4108 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4638/stat : 4638 (java) S 4576 4579 32560 0 -1 1077944384 48 12883 0 0 0 0 5 3 20 0 15 0 78308728 11113168896 854300 33554432000 4194304 4196468 140726100256016 140457504904224 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4639] ppid=4576 vsize=10852704 memory=1408 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4639/stat : 4639 (java) S 4576 4579 32560 0 -1 1077944384 37 12883 0 0 0 0 5 3 20 0 15 0 78308728 11113168896 854300 33554432000 4194304 4196468 140726100256016 140457040405504 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4640] ppid=4576 vsize=10852704 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4640/stat : 4640 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11113168896 854300 33554432000 4194304 4196468 140726100256016 140456733006032 140458181146523 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4641] ppid=4576 vsize=10852704 memory=388 CPUtime=13.58 cores=0,2,4,6
/proc/4579/task/4641/stat : 4641 (java) S 4576 4579 32560 0 -1 1077944384 63035 12883 0 0 1343 7 5 3 20 0 15 0 78308731 11113168896 854300 33554432000 4194304 4196468 140726100256016 140457471347184 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 71 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4642] ppid=4576 vsize=10852704 memory=2 CPUtime=13.1 cores=0,2,4,6
/proc/4579/task/4642/stat : 4642 (java) S 4576 4579 32560 0 -1 1077944384 50087 12883 0 0 1295 7 5 3 20 0 15 0 78308731 11113168896 854300 33554432000 4194304 4196468 140726100256016 140457470294640 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4643] ppid=4576 vsize=10852704 memory=30 CPUtime=3.71 cores=0,2,4,6
/proc/4579/task/4643/stat : 4643 (java) S 4576 4579 32560 0 -1 1077944384 40513 12883 0 0 355 8 5 3 20 0 15 0 78308731 11113168896 854300 33554432000 4194304 4196468 140726100256016 140457469242096 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 71 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4644] ppid=4576 vsize=10852704 memory=1628 CPUtime=0.08 cores=0,2,4,6
/proc/4579/task/4644/stat : 4644 (java) S 4576 4579 32560 0 -1 1077944384 3 12883 0 0 0 0 5 3 20 0 15 0 78308731 11113168896 854300 33554432000 4194304 4196468 140726100256016 140456699448416 140458181138133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
[pid=4579/tid=4645] ppid=4576 vsize=10852704 memory=8876 CPUtime=1.08 cores=0,2,4,6
/proc/4579/task/4645/stat : 4645 (java) S 4576 4579 32560 0 -1 1077944384 2224 12883 0 0 48 52 5 3 20 0 15 0 78308731 11113168896 854300 33554432000 4194304 4196468 140726100256016 140457468188976 140458181139074 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 72 0 0 6293624 6294260 14073856 140726100265132 140726100268380 140726100268380 140726100271055 0
Current children cumulated CPU time: 2520.03 s
Current children cumulated vsize: 10852704 KiB
Current children cumulated memory: 3417200 KiB

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

[startup+2467.25 s]
# the end of solver process 4579 was just reported to runsolver
# cumulated CPU time of all completed processes:  user=2516.45 s, system=3.65477 s

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

Child status: 143
Real time (s): 2467.25
CPU time (s): 2520.1
CPU user time (s): 2516.45
CPU system time (s): 3.65477
CPU usage (%): 102.142
Max. virtual memory (cumulated for all children) (KiB): 10852704
Max. memory (cumulated for all children) (KiB): 3505076

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 2516.45
system time used= 3.65477
maximum resident set size= 3505088
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 492257
page faults= 0
swaps= 0
block input operations= 0
block output operations= 2216
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 68924
involuntary context switches= 3371


# summary of solver processes directly reported to runsolver:
#   pid: 4579
#   total CPU time (s): 2520.1
#   total CPU user time (s): 2516.45
#   total CPU system time (s): 3.65477

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 13.4316 second user time and 23.0504 second system time

The end

Launcher Data

Begin job on node138 at 2018-07-26 14:17:35
IDJOB=4296035
IDBENCH=141641
IDSOLVER=2751
FILE ID=node138/4296035-1532607455
RUNJOBID= node138-1532582651-32591
PBS_JOBID= 21021963
Free space on /tmp= 53776 MiB

SOLVER NAME= Concrete 3.8-SuperNG 2018-06-13
BENCH NAME= XCSP18/SteelMillSlab/SteelMillSlab-m1-3-2_c18.xml
COMMAND LINE= concrete-3.8/bin/xcsp-3-concrete -J-Xss32M -randomseed=RANDOMSEED -superng BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4296035-1532607455/watcher-4296035-1532607455 -o /tmp/evaluation-result-4296035-1532607455/solver-4296035-1532607455 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node138-1532582651-32591 --watchdog 2580  concrete-3.8/bin/xcsp-3-concrete -J-Xss32M -randomseed=125244002 -superng HOME/instance-4296035-1532607455.xml

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

MD5SUM BENCH= cf06b96073d81f03e6b89e8a6528df72
RANDOM SEED=125244002

node138.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.71
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.71
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.71
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.71
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:        12100060 kB
MemAvailable:   26452860 kB
Buffers:          192216 kB
Cached:         14305372 kB
SwapCached:           44 kB
Active:          7869676 kB
Inactive:       12147752 kB
Active(anon):    5470800 kB
Inactive(anon):    77304 kB
Active(file):    2398876 kB
Inactive(file): 12070448 kB
Unevictable:        7280 kB
Mlocked:            7280 kB
SwapTotal:      67108860 kB
SwapFree:       67108796 kB
Dirty:             26992 kB
Writeback:             0 kB
AnonPages:       5535652 kB
Mapped:            48940 kB
Shmem:             25164 kB
Slab:             340184 kB
SReclaimable:     311936 kB
SUnreclaim:        28248 kB
KernelStack:        3792 kB
PageTables:        16016 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    6038328 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   5271552 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      112000 kB
DirectMap2M:    33433600 kB

Free space on /tmp at the end= 53748 MiB
End job on node138 at 2018-07-26 14:58:43