Trace number 4275725

Some explanations

A solver is run under the control of another program named runsolver. runsolver is in charge of imposing the CPU time limit and the memory limit to the solver. It also monitors some information about the process. The trace of the execution of a solver is divided into four (or five) parts:
  1. SOLVER DATA
    This is the output of the solver (stdout and stderr).
    Note that some very long lines in this section may be truncated by your web browser ! In such a case, you may want to use the "Download as text" link to get the trace as a text file.

    When the --timestamp option is passed to the runsolver program, each line output by the solver is prepended with a timestamp which indicates at what time the line was output by the solver. Times are relative to the start of the program, given in seconds. The first timestamp (if present) is estimated CPU time. The last timestamp is wall clock time.

    As some 'v lines' may be very long (sometimes several megabytes), the 'v line' output by your solver may be split on several lines to help limit the size of the trace recorded in the database. In any case, the exact output of your solver is preserved in a trace file.
  2. VERIFIER DATA
    The output of the solver is piped to a verifier program which will search a value line "v " and, if found, will check that the given interpretation satisfies all constraints.
  3. CONVERSION SCRIPT DATA (Optionnal)
    When a conversion script is used, this section shows the messages that were output by the conversion script.
  4. WATCHER DATA
    This is the informations gathered by the runsolver program. It first prints the different limits. There's a first limit on CPU time set to X seconds (see the parameters in the trace). After this time has ellapsed, runsolver sends a SIGTERM and 2 seconds later a SIGKILL to the solver. For safety, there's also another limit set to X+30 seconds which will send a SIGXPU to the solver. The last limit is on the virtual memory used by the process (see the parameters in the trace).
    Every ten seconds, the runsolver process fetches the content of /proc/loadavg, /proc/pid/stat and /proc/pid/statm (see man proc) and prints it as raw data. This is only recorded in case we need to investigate the behaviour of a solver. The memory used by the solver (vsize) is also given every ten seconds.
    When the solver exits, runsolver prints some informations such as status and time. CPU usage is the ratio CPU Time/Real Time.
  5. LAUNCHER DATA
    These informations are related to the script which will launch the solver. The most important informations are the command line given to the solver, the md5sum of the different files and the dump of the /proc/cpuinfo and /proc/meminfo which provides some useful information on the computer.

Solver answer on this benchmark

Solver NameAnswerCPU timeWall clock time
OscaR - Parallel with EPS 2017-07-26? 6699.2998 903.66901

General information on the benchmark

NameSuperSolutions/SuperSolutions-Queens-s1/
SuperQueens-02.xml
MD5SUM80353dd8c937a5bb459a24b290639269
Bench CategoryCSP (decision problem)
Best result obtained on this benchmark
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark
Satisfiable
(Un)Satisfiability was proved
Number of variables200
Number of constraints14950
Number of domains1
Minimum domain size100
Maximum domain size100
Distribution of domain sizes[{"size":100,"count":200}]
Minimum variable degree100
Maximum variable degree199
Distribution of variable degrees[{"degree":100,"count":100},{"degree":199,"count":100}]
Minimum constraint arity2
Maximum constraint arity2
Distribution of constraint arities[{"arity":2,"count":14950}]
Number of extensional constraints0
Number of intensional constraints14950
Distribution of constraint types[{"type":"intension","count":14950}]
Optimization problemNO
Type of objective

Solver Data

0.30/0.25	c version: 2017-07-26
0.30/0.25	c seed: 721177016
0.30/0.25	c timeout: 20160
0.30/0.25	c memlimit: 11000
0.30/0.25	c nbcore: 8
0.30/0.28	c Parsing instance...
280.67/61.45	c Parsing done, starting search...
6699.22/903.61	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
6699.22/903.61		at java.lang.Integer.valueOf(Integer.java:832)
6699.22/903.61		at scala.runtime.BoxesRunTime.boxToInteger(BoxesRunTime.java:69)
6699.22/903.61		at oscar.cp.constraints.tables.TableCT.computeSupportsAndInitialFiltering(TableCT.scala:260)
6699.22/903.61		at oscar.cp.constraints.tables.TableCT.setup(TableCT.scala:82)
6699.22/903.61		at oscar.cp.core.CPStore.post(CPStore.scala:282)
6699.22/903.61		at oscar.cp.core.CPSolver$$anonfun$1.apply$mcV$sp(CPSolver.scala:138)
6699.22/903.61		at oscar.algo.search.BranchingUtils$class.isInconsistent(BranchingUtils.scala:39)
6699.22/903.61		at oscar.cp.package$.isInconsistent(package.scala:54)
6699.22/903.61		at oscar.cp.core.CPSolver.add(CPSolver.scala:138)
6699.22/903.61		at oscar.modeling.models.cp.CPModel.p(CPModel.scala:277)
6699.22/903.61		at oscar.modeling.models.cp.CPModel.post(CPModel.scala:334)
6699.22/903.61		at oscar.modeling.models.cp.MemoCPModel.post(MemoCPModel.scala:44)
6699.22/903.61		at oscar.modeling.models.LeafModel$class.add(InstantiatedModel.scala:34)
6699.22/903.61		at oscar.modeling.models.InstantiatedModel.add(InstantiatedModel.scala:47)
6699.22/903.61		at oscar.modeling.models.InstantiatedModel$$anonfun$3.apply(InstantiatedModel.scala:54)
6699.22/903.61		at oscar.modeling.models.InstantiatedModel$$anonfun$3.apply(InstantiatedModel.scala:54)
6699.22/903.61		at scala.collection.immutable.List.foreach(List.scala:383)
6699.22/903.61		at oscar.modeling.models.InstantiatedModel.<init>(InstantiatedModel.scala:54)
6699.22/903.61		at oscar.modeling.models.cp.CPModel.<init>(CPModel.scala:256)
6699.22/903.61		at oscar.modeling.models.cp.MemoCPModel.<init>(MemoCPModel.scala:33)
6699.22/903.61		at oscar.modeling.solvers.cp.decompositions.RefinementStrategy.decompose(RefinementStrategy.scala:56)
6699.22/903.61		at oscar.modeling.solvers.cp.CPProgram$$anonfun$solveDistributed$2$$anonfun$5.apply(CPProgram.scala:190)
6699.22/903.61		at oscar.modeling.solvers.cp.CPProgram$$anonfun$solveDistributed$2$$anonfun$5.apply(CPProgram.scala:190)
6699.22/903.61		at oscar.modeling.misc.ComputeTimeTaken$.computeTimeTaken(ComputeTimeTaken.scala:33)
6699.22/903.61		at oscar.modeling.solvers.cp.CPProgram$$anonfun$solveDistributed$2.apply(CPProgram.scala:189)
6699.22/903.61		at oscar.modeling.solvers.cp.CPProgram$$anonfun$solveDistributed$2.apply(CPProgram.scala:187)
6699.22/903.61		at scala.util.DynamicVariable.withValue(DynamicVariable.scala:58)
6699.22/903.61		at oscar.modeling.misc.DynamicModelVariable.withValue(DynamicModelVariable.scala:34)
6699.22/903.61		at oscar.modeling.models.ModelDeclaration.apply(ModelDeclaration.scala:57)
6699.22/903.61		at oscar.modeling.solvers.cp.CPProgram.solveDistributed(CPProgram.scala:187)
6699.22/903.61		at oscar.modeling.solvers.cp.CPProgram.solveParallel(CPProgram.scala:97)
6699.22/903.61		at oscar.modeling.solvers.cp.CPProgram.solveParallel(CPProgram.scala:86)
6699.22/903.61	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 (15025 MiB free)
  memory of node 1: 16384 MiB (15617 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4275725-1502809881/watcher-4275725-1502809881 -o /tmp/evaluation-result-4275725-1502809881/solver-4275725-1502809881 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node106-1502808215-16353 --watchdog 2580 java -Xmx11000m -jar oscar-cp-xcsp3-parallel.jar --randomseed 721177016 --timelimit 20160 --memlimit 11000 --nbcore 8 HOME/instance-4275725-1502809881.xml 

running on 8 cores: 0,2,4,6,1,3,5,7

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 20160 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 20190 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 31744000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 31795200 KiB
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
Current StackSize limit: 8192 KiB

solver pid=16654, runsolver pid=16651

[startup+0.100141 s]*
/proc/loadavg: 3.65 3.13 4.90 1/198 16674
/proc/meminfo: memFree=31358584/32770624 swapFree=67108860/67108860
[pid=16654] ppid=16651 vsize=14325320 memory=33048 CPUtime=0.13 cores=0-7
/proc/16654/stat : 16654 (java) S 16651 16654 16326 0 -1 1077944320 8185 0 0 0 11 2 0 0 20 0 20 0 114075846 14669127680 8262 33554432000 4194304 4196468 140723130712256 140723130694800 139974550339319 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
/proc/16654/statm: 3581330 8262 3411 1 0 3569050 0
[pid=16654/tid=16656] ppid=16651 vsize=14325320 memory=4134930498285298233 CPUtime=0.09 cores=0-7
/proc/16654/task/16656/stat : 16656 (java) R 16651 16654 16326 0 -1 4202560 6116 0 0 0 8 1 0 0 20 0 20 0 114075846 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974554556000 139974534419806 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16657] ppid=16651 vsize=14325320 memory=4872558044660077418 CPUtime=0 cores=0-7
/proc/16654/task/16657/stat : 16657 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974465407376 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16658] ppid=16651 vsize=14325320 memory=139799804974720 CPUtime=0 cores=0-7
/proc/16654/task/16658/stat : 16658 (java) S 16651 16654 16326 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974464354576 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16659] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16659/stat : 16659 (java) S 16651 16654 16326 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974463302288 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16660] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16660/stat : 16660 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974462249488 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16661] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16661/stat : 16661 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974141799312 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16662] ppid=16651 vsize=14325320 memory=-1 CPUtime=0 cores=0-7
/proc/16654/task/16662/stat : 16662 (java) S 16651 16654 16326 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974140746512 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16663] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16663/stat : 16663 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974139694224 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16664] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16664/stat : 16664 (java) S 16651 16654 16326 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974138641424 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16665] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16665/stat : 16665 (java) S 16651 16654 16326 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114075848 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974008014960 139974550350466 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16666] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16666/stat : 16666 (java) S 16651 16654 16326 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 114075849 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974006960928 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16667] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16667/stat : 16667 (java) S 16651 16654 16326 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 114075849 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974005908592 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16668] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16668/stat : 16668 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075851 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974004856912 139974550357915 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16669] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16669/stat : 16669 (java) S 16651 16654 16326 0 -1 1077944384 304 0 0 0 0 0 0 0 20 0 20 0 114075851 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974003804784 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16670] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16670/stat : 16670 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075851 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974002751984 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16671] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16671/stat : 16671 (java) S 16651 16654 16326 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114075851 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974001699696 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16672] ppid=16651 vsize=14325320 memory=0 CPUtime=0.01 cores=0-7
/proc/16654/task/16672/stat : 16672 (java) S 16651 16654 16326 0 -1 1077944384 385 0 0 0 1 0 0 0 20 0 20 0 114075851 14669127680 8262 33554432000 4194304 4196468 140723130712256 139974000646896 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16673] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16673/stat : 16673 (java) S 16651 16654 16326 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114075851 14669127680 8262 33554432000 4194304 4196468 140723130712256 139973999593824 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16674] ppid=16651 vsize=14325320 memory=-1 CPUtime=0 cores=0-7
/proc/16654/task/16674/stat : 16674 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075852 14669127680 8262 33554432000 4194304 4196468 140723130712256 139973998541104 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 14325320 KiB
Current children cumulated memory: 33048 KiB

[startup+0.210015 s]*
/proc/loadavg: 3.65 3.13 4.90 3/198 16674
/proc/meminfo: memFree=31350000/32770624 swapFree=67108860/67108860
[pid=16654] ppid=16651 vsize=14325320 memory=42392 CPUtime=0.3 cores=0-7
/proc/16654/stat : 16654 (java) S 16651 16654 16326 0 -1 1077944320 9238 0 0 0 27 3 0 0 20 0 20 0 114075846 14669127680 10598 33554432000 4194304 4196468 140723130712256 140723130694800 139974550339319 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
/proc/16654/statm: 3581330 10598 3596 1 0 3569050 0
[pid=16654/tid=16656] ppid=16651 vsize=14325320 memory=4026531975 CPUtime=0.19 cores=0-7
/proc/16654/task/16656/stat : 16656 (java) R 16651 16654 16326 0 -1 4202560 6784 0 0 0 18 1 0 0 20 0 20 0 114075846 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974554559376 139974534419806 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16657] ppid=16651 vsize=14325320 memory=13885 CPUtime=0 cores=0-7
/proc/16654/task/16657/stat : 16657 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974465407376 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16658] ppid=16651 vsize=14325320 memory=139799805381750 CPUtime=0 cores=0-7
/proc/16654/task/16658/stat : 16658 (java) S 16651 16654 16326 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974464354576 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16659] ppid=16651 vsize=14325320 memory=-1 CPUtime=0 cores=0-7
/proc/16654/task/16659/stat : 16659 (java) S 16651 16654 16326 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974463302288 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16660] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16660/stat : 16660 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974462249488 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16661] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16661/stat : 16661 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974141799312 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16662] ppid=16651 vsize=14325320 memory=-1 CPUtime=0 cores=0-7
/proc/16654/task/16662/stat : 16662 (java) S 16651 16654 16326 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974140746512 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16663] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16663/stat : 16663 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974139694224 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16664] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16664/stat : 16664 (java) S 16651 16654 16326 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114075847 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974138641424 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16665] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16665/stat : 16665 (java) S 16651 16654 16326 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 114075848 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974008014960 139974550350466 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16666] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16666/stat : 16666 (java) S 16651 16654 16326 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 114075849 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974006960928 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16667] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16667/stat : 16667 (java) S 16651 16654 16326 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 114075849 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974005908592 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16668] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16668/stat : 16668 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075851 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974004856912 139974550357915 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16669] ppid=16651 vsize=14325320 memory=0 CPUtime=0.01 cores=0-7
/proc/16654/task/16669/stat : 16669 (java) S 16651 16654 16326 0 -1 1077944384 414 0 0 0 1 0 0 0 20 0 20 0 114075851 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974003804784 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16670] ppid=16651 vsize=14325320 memory=0 CPUtime=0.01 cores=0-7
/proc/16654/task/16670/stat : 16670 (java) S 16651 16654 16326 0 -1 1077944384 51 0 0 0 1 0 0 0 20 0 20 0 114075851 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974002751984 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16671] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16671/stat : 16671 (java) S 16651 16654 16326 0 -1 1077944384 178 0 0 0 0 0 0 0 20 0 20 0 114075851 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974001699696 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16672] ppid=16651 vsize=14325320 memory=0 CPUtime=0.05 cores=0-7
/proc/16654/task/16672/stat : 16672 (java) R 16651 16654 16326 0 -1 4202560 428 0 0 0 5 0 0 0 20 0 20 0 114075851 14669127680 10598 33554432000 4194304 4196468 140723130712256 139974000646896 139974529474979 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16673] ppid=16651 vsize=14325320 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16673/stat : 16673 (java) S 16651 16654 16326 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114075851 14669127680 10598 33554432000 4194304 4196468 140723130712256 139973999593824 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16674] ppid=16651 vsize=14325320 memory=-1 CPUtime=0 cores=0-7
/proc/16654/task/16674/stat : 16674 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075852 14669127680 10598 33554432000 4194304 4196468 140723130712256 139973998541104 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
Current children cumulated CPU time: 0.3 s
Current children cumulated vsize: 14325320 KiB
Current children cumulated memory: 42392 KiB

[startup+0.309444 s]*
/proc/loadavg: 3.65 3.13 4.90 2/198 16674
/proc/meminfo: memFree=31343408/32770624 swapFree=67108860/67108860
[pid=16654] ppid=16651 vsize=14325340 memory=50996 CPUtime=0.48 cores=0-7
/proc/16654/stat : 16654 (java) S 16651 16654 16326 0 -1 1077944320 10530 0 0 0 44 4 0 0 20 0 20 0 114075846 14669148160 12749 33554432000 4194304 4196468 140723130712256 140723130694800 139974550339319 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
/proc/16654/statm: 3581335 12749 3721 1 0 3569050 0
[pid=16654/tid=16656] ppid=16651 vsize=14325340 memory=6791534058613427641 CPUtime=0.29 cores=0-7
/proc/16654/task/16656/stat : 16656 (java) R 16651 16654 16326 0 -1 4202560 7558 0 0 0 27 2 0 0 20 0 20 0 114075846 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974554560192 139974550361245 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16657] ppid=16651 vsize=14325340 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16657/stat : 16657 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974465407376 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16658] ppid=16651 vsize=14325340 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16658/stat : 16658 (java) S 16651 16654 16326 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114075847 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974464354576 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16659] ppid=16651 vsize=14325340 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16659/stat : 16659 (java) S 16651 16654 16326 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114075847 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974463302288 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16660] ppid=16651 vsize=14325340 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16660/stat : 16660 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974462249488 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16661] ppid=16651 vsize=14325340 memory=2244 CPUtime=0 cores=0-7
/proc/16654/task/16661/stat : 16661 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974141799312 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16662] ppid=16651 vsize=14325340 memory=139799642076079 CPUtime=0 cores=0-7
/proc/16654/task/16662/stat : 16662 (java) S 16651 16654 16326 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114075847 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974140746512 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16663] ppid=16651 vsize=14325340 memory=139799642078384 CPUtime=0 cores=0-7
/proc/16654/task/16663/stat : 16663 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974139694224 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16664] ppid=16651 vsize=14325340 memory=139799642080688 CPUtime=0 cores=0-7
/proc/16654/task/16664/stat : 16664 (java) S 16651 16654 16326 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114075847 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974138641424 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16665] ppid=16651 vsize=14325340 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16665/stat : 16665 (java) S 16651 16654 16326 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 114075848 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974008014960 139974550350466 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16666] ppid=16651 vsize=14325340 memory=279599284168336 CPUtime=0 cores=0-7
/proc/16654/task/16666/stat : 16666 (java) S 16651 16654 16326 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 114075849 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974006960928 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16667] ppid=16651 vsize=14325340 memory=279599284175248 CPUtime=0 cores=0-7
/proc/16654/task/16667/stat : 16667 (java) S 16651 16654 16326 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 114075849 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974005908592 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16668] ppid=16651 vsize=14325340 memory=279599284116528 CPUtime=0 cores=0-7
/proc/16654/task/16668/stat : 16668 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075851 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974004856912 139974550357915 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16669] ppid=16651 vsize=14325340 memory=279599284189072 CPUtime=0.03 cores=0-7
/proc/16654/task/16669/stat : 16669 (java) S 16651 16654 16326 0 -1 1077944384 566 0 0 0 3 0 0 0 20 0 20 0 114075851 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974003804784 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16670] ppid=16651 vsize=14325340 memory=279599284195984 CPUtime=0.03 cores=0-7
/proc/16654/task/16670/stat : 16670 (java) S 16651 16654 16326 0 -1 1077944384 193 0 0 0 3 0 0 0 20 0 20 0 114075851 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974002751984 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16671] ppid=16651 vsize=14325340 memory=279599284193680 CPUtime=0.02 cores=0-7
/proc/16654/task/16671/stat : 16671 (java) S 16651 16654 16326 0 -1 1077944384 269 0 0 0 2 0 0 0 20 0 20 0 114075851 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974001699696 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16672] ppid=16651 vsize=14325340 memory=279599284210288 CPUtime=0.08 cores=0-7
/proc/16654/task/16672/stat : 16672 (java) R 16651 16654 16326 0 -1 4202560 558 0 0 0 8 0 0 0 20 0 20 0 114075851 14669148160 12749 33554432000 4194304 4196468 140723130712256 139974000646896 139974534519681 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16673] ppid=16651 vsize=14325340 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16673/stat : 16673 (java) S 16651 16654 16326 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114075851 14669148160 12749 33554432000 4194304 4196468 140723130712256 139973999593824 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16674] ppid=16651 vsize=14325340 memory=-1 CPUtime=0 cores=0-7
/proc/16654/task/16674/stat : 16674 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075852 14669148160 12749 33554432000 4194304 4196468 140723130712256 139973998541104 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
Current children cumulated CPU time: 0.48 s
Current children cumulated vsize: 14325340 KiB
Current children cumulated memory: 50996 KiB

[startup+0.700899 s]
/proc/loadavg: 3.65 3.13 4.90 5/198 16674
/proc/meminfo: memFree=31315676/32770624 swapFree=67108860/67108860
[pid=16654] ppid=16651 vsize=14327388 memory=116344 CPUtime=1.75 cores=0-7
/proc/16654/stat : 16654 (java) S 16651 16654 16326 0 -1 1077944320 15059 0 0 0 169 6 0 0 20 0 20 0 114075846 14671245312 29086 33554432000 4194304 4196468 140723130712256 140723130694800 139974550339319 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
/proc/16654/statm: 3581847 29086 3774 1 0 3569562 0
[pid=16654/tid=16656] ppid=16651 vsize=14327388 memory=0 CPUtime=0.67 cores=0-7
/proc/16654/task/16656/stat : 16656 (java) R 16651 16654 16326 0 -1 4202560 8331 0 0 0 64 3 0 0 20 0 20 0 114075846 14671245312 29086 33554432000 4194304 4196468 140723130712256 139974554571616 139974142932022 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16657] ppid=16651 vsize=14327388 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16657/stat : 16657 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14671245312 29086 33554432000 4194304 4196468 140723130712256 139974465407376 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16658] ppid=16651 vsize=14327388 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16658/stat : 16658 (java) S 16651 16654 16326 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114075847 14671245312 29086 33554432000 4194304 4196468 140723130712256 139974464354576 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16659] ppid=16651 vsize=14327388 memory=0 CPUtime=0 cores=0-7
/proc/16654/task/16659/stat : 16659 (java) S 16651 16654 16326 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114075847 14671245312 29086 33554432000 4194304 4196468 140723130712256 139974463302288 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16660] ppid=16651 vsize=14327388 memory=1008 CPUtime=0 cores=0-7
/proc/16654/task/16660/stat : 16660 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14671245312 29086 33554432000 4194304 4196468 140723130712256 139974462249488 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16661] ppid=16651 vsize=14327388 memory=4612 CPUtime=0 cores=0-7
/proc/16654/task/16661/stat : 16661 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14671245312 29086 33554432000 4194304 4196468 140723130712256 139974141799312 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16662] ppid=16651 vsize=14327388 memory=1428 CPUtime=0 cores=0-7
/proc/16654/task/16662/stat : 16662 (java) S 16651 16654 16326 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114075847 14671245312 29086 33554432000 4194304 4196468 140723130712256 139974140746512 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16663] ppid=16651 vsize=14327388 memory=1204 CPUtime=0 cores=0-7
/proc/16654/task/16663/stat : 16663 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075847 14671245312 29086 33554432000 4194304 4196468 140723130712256 139974139694224 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16664] ppid=16651 vsize=14327388 memory=15876 CPUtime=0 cores=0-7
/proc/16654/task/16664/stat : 16664 (java) S 16651 16654 16326 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114075847 14671245312 29086 33554432000 4194304 4196468 140723130712256 139974138641424 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16665] ppid=16651 vsize=14327388 memory=20228 CPUtime=0 cores=0-7
/proc/16654/task/16665/stat : 16665 (java) S 16651 16654 16326 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 114075848 14671245312 29086 33554432000 4194304 4196468 140723130712256 139974008014960 139974550350466 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0

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

[pid=16654/tid=16669] ppid=16651 vsize=14331484 memory=2196 CPUtime=1.36 cores=0-7
/proc/16654/task/16669/stat : 16669 (java) S 16651 16654 16326 0 -1 1077944384 7542 0 0 0 135 1 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974003804784 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 43 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16670] ppid=16651 vsize=14331484 memory=6791534058613427641 CPUtime=1.41 cores=0-7
/proc/16654/task/16670/stat : 16670 (java) S 16651 16654 16326 0 -1 1077944384 9804 0 0 0 140 1 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974002751984 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 30 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16671] ppid=16651 vsize=14331484 memory=11110856 CPUtime=1.25 cores=0-7
/proc/16654/task/16671/stat : 16671 (java) S 16651 16654 16326 0 -1 1077944384 6558 0 0 0 124 1 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974001699696 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 45 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16672] ppid=16651 vsize=14331484 memory=11110856 CPUtime=0.71 cores=0-7
/proc/16654/task/16672/stat : 16672 (java) S 16651 16654 16326 0 -1 1077944384 6259 0 0 0 69 2 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974000646896 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 25 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16673] ppid=16651 vsize=14331484 memory=11110856 CPUtime=0 cores=0-7
/proc/16654/task/16673/stat : 16673 (java) S 16651 16654 16326 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139973999593824 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16674] ppid=16651 vsize=14331484 memory=2196 CPUtime=0.3 cores=0-7
/proc/16654/task/16674/stat : 16674 (java) S 16651 16654 16326 0 -1 1077944384 1856 0 0 0 16 14 0 0 20 0 20 0 114075852 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139973998541104 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 50 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
Current children cumulated CPU time: 6678.12 s
Current children cumulated vsize: 14331484 KiB
Current children cumulated memory: 11110860 KiB

[startup+902.401 s]
/proc/loadavg: 8.48 7.66 6.59 8/198 16713
/proc/meminfo: memFree=20265312/32770624 swapFree=67108860/67108860
[pid=16654] ppid=16651 vsize=14331484 memory=11110860 CPUtime=6690.29 cores=0-7
/proc/16654/stat : 16654 (java) S 16651 16654 16326 0 -1 1077944320 1875617 0 0 0 665334 3695 0 0 20 0 20 0 114075846 14675439616 2777715 33554432000 4194304 4196468 140723130712256 140723130694800 139974550339319 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
/proc/16654/statm: 3582871 2777715 3852 1 0 3570586 0
[pid=16654/tid=16656] ppid=16651 vsize=14331484 memory=6791534058613427641 CPUtime=43.26 cores=0-7
/proc/16654/task/16656/stat : 16656 (java) S 16651 16654 16326 0 -1 1077944384 29079 0 0 0 4302 24 0 0 20 0 20 0 114075846 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974554579568 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16657] ppid=16651 vsize=14331484 memory=1428 CPUtime=826.8 cores=0-7
/proc/16654/task/16657/stat : 16657 (java) R 16651 16654 16326 0 -1 4202560 160221 0 0 0 82212 468 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974465406960 139974542967527 0 4 0 16800975 0 0 0 -1 5 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16658] ppid=16651 vsize=14331484 memory=1204 CPUtime=829.02 cores=0-7
/proc/16654/task/16658/stat : 16658 (java) R 16651 16654 16326 0 -1 4202560 115305 0 0 0 82466 436 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974464354160 139974542967527 0 4 0 16800975 0 0 0 -1 4 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16659] ppid=16651 vsize=14331484 memory=15876 CPUtime=826.59 cores=0-7
/proc/16654/task/16659/stat : 16659 (java) R 16651 16654 16326 0 -1 4202560 153276 0 0 0 82216 443 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974463302488 139974535037094 0 4 0 16800975 0 0 0 -1 7 0 0 21 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16660] ppid=16651 vsize=14331484 memory=11110860 CPUtime=829.08 cores=0-7
/proc/16654/task/16660/stat : 16660 (java) R 16651 16654 16326 0 -1 4202560 242153 0 0 0 82443 465 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974462249072 139974542967527 0 4 0 16800975 0 0 0 -1 2 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16661] ppid=16651 vsize=14331484 memory=11110860 CPUtime=826.31 cores=0-7
/proc/16654/task/16661/stat : 16661 (java) R 16651 16654 16326 0 -1 4202560 138831 0 0 0 82200 431 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974141798896 139974542967527 0 4 0 16800975 0 0 0 -1 1 0 0 20 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16662] ppid=16651 vsize=14331484 memory=1228 CPUtime=828.07 cores=0-7
/proc/16654/task/16662/stat : 16662 (java) R 16651 16654 16326 0 -1 4202560 175461 0 0 0 82355 452 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974140746096 139974542967527 0 4 0 16800975 0 0 0 -1 6 0 0 18 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16663] ppid=16651 vsize=14331484 memory=12028 CPUtime=828.52 cores=0-7
/proc/16654/task/16663/stat : 16663 (java) S 16651 16654 16326 0 -1 1077944384 153886 0 0 0 82391 461 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974139693808 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16664] ppid=16651 vsize=14331484 memory=5668 CPUtime=827.4 cores=0-7
/proc/16654/task/16664/stat : 16664 (java) R 16651 16654 16326 0 -1 4202560 181060 0 0 0 82291 449 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974138641008 139974542967527 0 4 0 16800975 0 0 0 -1 3 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16665] ppid=16651 vsize=14331484 memory=2416 CPUtime=20.04 cores=0-7
/proc/16654/task/16665/stat : 16665 (java) S 16651 16654 16326 0 -1 1077944384 492902 0 0 0 1953 51 0 0 20 0 20 0 114075848 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974008013280 139974550349525 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 20 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16666] ppid=16651 vsize=14331484 memory=1728 CPUtime=0 cores=0-7
/proc/16654/task/16666/stat : 16666 (java) S 16651 16654 16326 0 -1 1077944384 45 0 0 0 0 0 0 0 20 0 20 0 114075849 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974006960992 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16667] ppid=16651 vsize=14331484 memory=796 CPUtime=0 cores=0-7
/proc/16654/task/16667/stat : 16667 (java) S 16651 16654 16326 0 -1 1077944384 26 0 0 0 0 0 0 0 20 0 20 0 114075849 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974005908608 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16668] ppid=16651 vsize=14331484 memory=1716 CPUtime=0 cores=0-7
/proc/16654/task/16668/stat : 16668 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974004856912 139974550357915 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16669] ppid=16651 vsize=14331484 memory=1948 CPUtime=1.36 cores=0-7
/proc/16654/task/16669/stat : 16669 (java) S 16651 16654 16326 0 -1 1077944384 7545 0 0 0 135 1 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974003804832 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 43 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16670] ppid=16651 vsize=14331484 memory=4096 CPUtime=1.41 cores=0-7
/proc/16654/task/16670/stat : 16670 (java) S 16651 16654 16326 0 -1 1077944384 9816 0 0 0 140 1 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974002751744 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 30 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16671] ppid=16651 vsize=14331484 memory=1398720917958146503 CPUtime=1.25 cores=0-7
/proc/16654/task/16671/stat : 16671 (java) S 16651 16654 16326 0 -1 1077944384 6561 0 0 0 124 1 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974001699744 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 45 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16672] ppid=16651 vsize=14331484 memory=18488 CPUtime=0.71 cores=0-7
/proc/16654/task/16672/stat : 16672 (java) S 16651 16654 16326 0 -1 1077944384 6262 0 0 0 69 2 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974000646944 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 25 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16673] ppid=16651 vsize=14331484 memory=1796 CPUtime=0 cores=0-7
/proc/16654/task/16673/stat : 16673 (java) S 16651 16654 16326 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139973999593824 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16674] ppid=16651 vsize=14331484 memory=1236 CPUtime=0.3 cores=0-7
/proc/16654/task/16674/stat : 16674 (java) S 16651 16654 16326 0 -1 1077944384 1875 0 0 0 16 14 0 0 20 0 20 0 114075852 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139973998541104 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 50 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
Current children cumulated CPU time: 6690.29 s
Current children cumulated vsize: 14331484 KiB
Current children cumulated memory: 11110860 KiB

[startup+903.201 s]
/proc/loadavg: 8.48 7.66 6.59 9/198 16713
/proc/meminfo: memFree=20265312/32770624 swapFree=67108860/67108860
[pid=16654] ppid=16651 vsize=14331484 memory=11110860 CPUtime=6696.4 cores=0-7
/proc/16654/stat : 16654 (java) S 16651 16654 16326 0 -1 1077944320 1885171 0 0 0 665943 3697 0 0 20 0 20 0 114075846 14675439616 2777715 33554432000 4194304 4196468 140723130712256 140723130694800 139974550339319 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
/proc/16654/statm: 3582871 2777715 3852 1 0 3570586 0
[pid=16654/tid=16656] ppid=16651 vsize=14331484 memory=1576 CPUtime=43.26 cores=0-7
/proc/16654/task/16656/stat : 16656 (java) S 16651 16654 16326 0 -1 1077944384 29079 0 0 0 4302 24 0 0 20 0 20 0 114075846 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974554579568 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16657] ppid=16651 vsize=14331484 memory=928 CPUtime=827.56 cores=0-7
/proc/16654/task/16657/stat : 16657 (java) R 16651 16654 16326 0 -1 4202560 160222 0 0 0 82288 468 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974465407376 139974535038620 0 4 0 16800975 0 0 0 -1 5 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16658] ppid=16651 vsize=14331484 memory=1576 CPUtime=829.78 cores=0-7
/proc/16654/task/16658/stat : 16658 (java) R 16651 16654 16326 0 -1 4202560 115305 0 0 0 82542 436 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974464354776 139974535038112 0 4 0 16800975 0 0 0 -1 4 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16659] ppid=16651 vsize=14331484 memory=6791534058613427641 CPUtime=827.37 cores=0-7
/proc/16654/task/16659/stat : 16659 (java) R 16651 16654 16326 0 -1 4202560 153955 0 0 0 82294 443 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974463302288 139974535335937 0 4 0 16800975 0 0 0 -1 2 0 0 21 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16660] ppid=16651 vsize=14331484 memory=1228 CPUtime=829.83 cores=0-7
/proc/16654/task/16660/stat : 16660 (java) R 16651 16654 16326 0 -1 4202560 242154 0 0 0 82518 465 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974462249688 139974531949060 0 4 0 16800975 0 0 0 -1 7 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16661] ppid=16651 vsize=14331484 memory=12028 CPUtime=827.07 cores=0-7
/proc/16654/task/16661/stat : 16661 (java) R 16651 16654 16326 0 -1 4202560 138831 0 0 0 82276 431 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974141799312 139974535336001 0 4 0 16800975 0 0 0 -1 1 0 0 20 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16662] ppid=16651 vsize=14331484 memory=5668 CPUtime=828.83 cores=0-7
/proc/16654/task/16662/stat : 16662 (java) R 16651 16654 16326 0 -1 4202560 175461 0 0 0 82431 452 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974140746512 139974535335723 0 4 0 16800975 0 0 0 -1 6 0 0 18 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16663] ppid=16651 vsize=14331484 memory=1008 CPUtime=829.28 cores=0-7
/proc/16654/task/16663/stat : 16663 (java) R 16651 16654 16326 0 -1 4202560 153887 0 0 0 82466 462 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974139694224 139974535038049 0 4 0 16800975 0 0 0 -1 0 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16664] ppid=16651 vsize=14331484 memory=4612 CPUtime=828.16 cores=0-7
/proc/16654/task/16664/stat : 16664 (java) R 16651 16654 16326 0 -1 4202560 181060 0 0 0 82366 450 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974138641424 139974535335965 0 4 0 16800975 0 0 0 -1 3 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16665] ppid=16651 vsize=14331484 memory=6791534058613427641 CPUtime=20.06 cores=0-7
/proc/16654/task/16665/stat : 16665 (java) S 16651 16654 16326 0 -1 1077944384 501774 0 0 0 1954 52 0 0 20 0 20 0 114075848 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974008013504 139974550349525 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 20 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16666] ppid=16651 vsize=14331484 memory=15876 CPUtime=0 cores=0-7
/proc/16654/task/16666/stat : 16666 (java) S 16651 16654 16326 0 -1 1077944384 45 0 0 0 0 0 0 0 20 0 20 0 114075849 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974006960992 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16667] ppid=16651 vsize=14331484 memory=20252 CPUtime=0 cores=0-7
/proc/16654/task/16667/stat : 16667 (java) S 16651 16654 16326 0 -1 1077944384 26 0 0 0 0 0 0 0 20 0 20 0 114075849 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974005908608 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16668] ppid=16651 vsize=14331484 memory=4048 CPUtime=0 cores=0-7
/proc/16654/task/16668/stat : 16668 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974004856912 139974550357915 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16669] ppid=16651 vsize=14331484 memory=18488 CPUtime=1.36 cores=0-7
/proc/16654/task/16669/stat : 16669 (java) S 16651 16654 16326 0 -1 1077944384 7545 0 0 0 135 1 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974003804832 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 43 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16670] ppid=16651 vsize=14331484 memory=1796 CPUtime=1.41 cores=0-7
/proc/16654/task/16670/stat : 16670 (java) S 16651 16654 16326 0 -1 1077944384 9816 0 0 0 140 1 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974002751744 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 30 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16671] ppid=16651 vsize=14331484 memory=1228 CPUtime=1.25 cores=0-7
/proc/16654/task/16671/stat : 16671 (java) S 16651 16654 16326 0 -1 1077944384 6561 0 0 0 124 1 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974001699744 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 45 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16672] ppid=16651 vsize=14331484 memory=12028 CPUtime=0.71 cores=0-7
/proc/16654/task/16672/stat : 16672 (java) S 16651 16654 16326 0 -1 1077944384 6262 0 0 0 69 2 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974000646944 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 25 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16673] ppid=16651 vsize=14331484 memory=5668 CPUtime=0 cores=0-7
/proc/16654/task/16673/stat : 16673 (java) S 16651 16654 16326 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139973999593824 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16674] ppid=16651 vsize=14331484 memory=1008 CPUtime=0.3 cores=0-7
/proc/16654/task/16674/stat : 16674 (java) S 16651 16654 16326 0 -1 1077944384 1875 0 0 0 16 14 0 0 20 0 20 0 114075852 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139973998541104 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 50 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
Current children cumulated CPU time: 6696.4 s
Current children cumulated vsize: 14331484 KiB
Current children cumulated memory: 11110860 KiB

[startup+903.601 s]
/proc/loadavg: 8.48 7.66 6.59 9/198 16713
/proc/meminfo: memFree=20265312/32770624 swapFree=67108860/67108860
[pid=16654] ppid=16651 vsize=14331484 memory=11110860 CPUtime=6699.22 cores=0-7
/proc/16654/stat : 16654 (java) S 16651 16654 16326 0 -1 1077944320 1886542 0 0 0 666224 3698 0 0 20 0 20 0 114075846 14675439616 2777715 33554432000 4194304 4196468 140723130712256 140723130694800 139974550339319 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
/proc/16654/statm: 3582871 2777715 3852 1 0 3570586 0
[pid=16654/tid=16656] ppid=16651 vsize=14331484 memory=6791534058613427641 CPUtime=43.26 cores=0-7
/proc/16654/task/16656/stat : 16656 (java) S 16651 16654 16326 0 -1 1077944384 29079 0 0 0 4302 24 0 0 20 0 20 0 114075846 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974554579568 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16657] ppid=16651 vsize=14331484 memory=640 CPUtime=827.91 cores=0-7
/proc/16654/task/16657/stat : 16657 (java) S 16651 16654 16326 0 -1 1077944384 160342 0 0 0 82322 469 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974465407376 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16658] ppid=16651 vsize=14331484 memory=1008 CPUtime=830.12 cores=0-7
/proc/16654/task/16658/stat : 16658 (java) S 16651 16654 16326 0 -1 1077944384 115366 0 0 0 82576 436 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974464354576 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16659] ppid=16651 vsize=14331484 memory=4612 CPUtime=827.73 cores=0-7
/proc/16654/task/16659/stat : 16659 (java) S 16651 16654 16326 0 -1 1077944384 154051 0 0 0 82329 444 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974463302288 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 21 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16660] ppid=16651 vsize=14331484 memory=11110856 CPUtime=830.18 cores=0-7
/proc/16654/task/16660/stat : 16660 (java) S 16651 16654 16326 0 -1 1077944384 242260 0 0 0 82553 465 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974462249488 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16661] ppid=16651 vsize=14331484 memory=32016 CPUtime=827.42 cores=0-7
/proc/16654/task/16661/stat : 16661 (java) S 16651 16654 16326 0 -1 1077944384 138960 0 0 0 82311 431 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974141799312 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 20 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16662] ppid=16651 vsize=14331484 memory=1296 CPUtime=829.18 cores=0-7
/proc/16654/task/16662/stat : 16662 (java) S 16651 16654 16326 0 -1 1077944384 176036 0 0 0 82465 453 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974140746512 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 18 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16663] ppid=16651 vsize=14331484 memory=2416 CPUtime=829.63 cores=0-7
/proc/16654/task/16663/stat : 16663 (java) S 16651 16654 16326 0 -1 1077944384 154010 0 0 0 82501 462 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974139694224 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16664] ppid=16651 vsize=14331484 memory=1728 CPUtime=828.51 cores=0-7
/proc/16654/task/16664/stat : 16664 (java) S 16651 16654 16326 0 -1 1077944384 181183 0 0 0 82401 450 0 0 20 0 20 0 114075847 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974138641424 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 19 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16665] ppid=16651 vsize=14331484 memory=796 CPUtime=20.11 cores=0-7
/proc/16654/task/16665/stat : 16665 (java) R 16651 16654 16326 0 -1 4202560 501812 0 0 0 1959 52 0 0 20 0 20 0 114075848 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974008013392 139974528709499 0 0 0 16800975 0 0 0 -1 7 0 0 20 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16666] ppid=16651 vsize=14331484 memory=1716 CPUtime=0 cores=0-7
/proc/16654/task/16666/stat : 16666 (java) S 16651 16654 16326 0 -1 1077944384 45 0 0 0 0 0 0 0 20 0 20 0 114075849 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974006960992 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16667] ppid=16651 vsize=14331484 memory=1948 CPUtime=0 cores=0-7
/proc/16654/task/16667/stat : 16667 (java) S 16651 16654 16326 0 -1 1077944384 26 0 0 0 0 0 0 0 20 0 20 0 114075849 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974005908608 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16668] ppid=16651 vsize=14331484 memory=8572 CPUtime=0 cores=0-7
/proc/16654/task/16668/stat : 16668 (java) S 16651 16654 16326 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974004856912 139974550357915 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16669] ppid=16651 vsize=14331484 memory=1228 CPUtime=1.36 cores=0-7
/proc/16654/task/16669/stat : 16669 (java) S 16651 16654 16326 0 -1 1077944384 7545 0 0 0 135 1 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974003804832 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 43 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16670] ppid=16651 vsize=14331484 memory=640 CPUtime=1.41 cores=0-7
/proc/16654/task/16670/stat : 16670 (java) S 16651 16654 16326 0 -1 1077944384 9816 0 0 0 140 1 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974002751744 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 30 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16671] ppid=16651 vsize=14331484 memory=956 CPUtime=1.25 cores=0-7
/proc/16654/task/16671/stat : 16671 (java) S 16651 16654 16326 0 -1 1077944384 6561 0 0 0 124 1 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974001699744 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 45 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16672] ppid=16651 vsize=14331484 memory=2340 CPUtime=0.71 cores=0-7
/proc/16654/task/16672/stat : 16672 (java) S 16651 16654 16326 0 -1 1077944384 6262 0 0 0 69 2 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139974000646944 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 25 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16673] ppid=16651 vsize=14331484 memory=2240 CPUtime=0 cores=0-7
/proc/16654/task/16673/stat : 16673 (java) S 16651 16654 16326 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114075851 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139973999593824 139974550349525 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
[pid=16654/tid=16674] ppid=16651 vsize=14331484 memory=4128 CPUtime=0.3 cores=0-7
/proc/16654/task/16674/stat : 16674 (java) S 16651 16654 16326 0 -1 1077944384 1875 0 0 0 16 14 0 0 20 0 20 0 114075852 14675439616 2777715 33554432000 4194304 4196468 140723130712256 139973998541104 139974550350466 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 50 0 0 6293624 6294260 20201472 140723130721378 140723130721563 140723130721563 140723130724303 0
Current children cumulated CPU time: 6699.22 s
Current children cumulated vsize: 14331484 KiB
Current children cumulated memory: 11110860 KiB

Child status: 1
Real time (s): 903.669
CPU time (s): 6699.3
CPU user time (s): 6662.26
CPU system time (s): 37.0377
CPU usage (%): 741.344
Max. virtual memory (cumulated for all children) (KiB): 14331484
Max. memory (cumulated for all children) (KiB): 11110860

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 6662.26
system time used= 37.0377
maximum resident set size= 11110860
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 1890101
page faults= 0
swaps= 0
block input operations= 0
block output operations= 1168
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 100559
involuntary context switches= 159001


# summary of solver processes directly reported to runsolver:
#   pid: 16654
#   total CPU time (s): 6699.3
#   total CPU user time (s): 6662.26
#   total CPU system time (s): 37.0377

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 5.90953 second user time and 9.37156 second system time

The end

Launcher Data

Begin job on node106 at 2017-08-15 16:57:02
IDJOB=4275725
IDBENCH=138396
IDSOLVER=2668
FILE ID=node106/4275725-1502809881
RUNJOBID= node106-1502808215-16353
PBS_JOBID= 20629821
Free space on /tmp= 61776 MiB

SOLVER NAME= OscaR - Parallel with EPS 2017-07-26
BENCH NAME= XCSP17/SuperSolutions/SuperSolutions-Queens-s1/SuperQueens-02.xml
COMMAND LINE= java -Xmx11000m -jar oscar-cp-xcsp3-parallel.jar --randomseed RANDOMSEED --timelimit TIMELIMIT --memlimit 11000 --nbcore NBCORE BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4275725-1502809881/watcher-4275725-1502809881 -o /tmp/evaluation-result-4275725-1502809881/solver-4275725-1502809881 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node106-1502808215-16353 --watchdog 2580  java -Xmx11000m -jar oscar-cp-xcsp3-parallel.jar --randomseed 721177016 --timelimit 20160 --memlimit 11000 --nbcore 8 HOME/instance-4275725-1502809881.xml

TIME LIMIT= 20160 seconds
MEMORY LIMIT= 31000 MiB
NBCORE= 8

MD5SUM BENCH= 80353dd8c937a5bb459a24b290639269
RANDOM SEED=721177016

node106.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.86
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.86
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.86
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.86
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:        31378940 kB
MemAvailable:   31981696 kB
Buffers:          183188 kB
Cached:           704776 kB
SwapCached:            0 kB
Active:           493464 kB
Inactive:         451608 kB
Active(anon):      12284 kB
Inactive(anon):    72108 kB
Active(file):     481180 kB
Inactive(file):   379500 kB
Unevictable:        6472 kB
Mlocked:            6472 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             42716 kB
Writeback:             0 kB
AnonPages:        264852 kB
Mapped:            46092 kB
Shmem:             25228 kB
Slab:             141752 kB
SReclaimable:     115820 kB
SUnreclaim:        25932 kB
KernelStack:        3760 kB
PageTables:         5228 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     323624 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    212992 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      105856 kB
DirectMap2M:    33439744 kB

Free space on /tmp at the end= 61736 MiB
End job on node106 at 2017-08-15 17:12:06