Trace number 3733330

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
PB07: SAT4JPseudoResolution 2007-03-23? (exit code) 358.311 353.445

General information on the benchmark

Namenormalized-PB06/SATUNSAT-BIGINT/submitted-PB06/
manquiho/Aardal_1/normalized-cuww4.opb
MD5SUMd53007d2869c28e065ccd77bdf635fbe
Bench CategoryDEC-BIGINT (no optimisation, big integers)
Best result obtained on this benchmarkSAT
Best value of the objective obtained on this benchmark0
Best CPU time to get the best result obtained on this benchmark0.370942
Has Objective FunctionNO
SatisfiableYES
(Un)Satisfiability was provedYES
Best value of the objective function
Optimality of the best value was proved NO
Number of variables82
Total number of constraints2
Number of constraints which are clauses0
Number of constraints which are cardinality constraints (but not clauses)0
Number of constraints which are nor clauses,nor cardinality constraints2
Minimum length of a constraint82
Maximum length of a constraint82
Number of terms in the objective function 0
Biggest coefficient in the objective function 0
Number of bits for the biggest coefficient in the objective function 0
Sum of the numbers in the objective function 0
Number of bits of the sum of numbers in the objective function 0
Biggest number in a constraint 104723596
Number of bits of the biggest number in a constraint 27
Biggest sum of numbers in a constraint 1078440737
Number of bits of the biggest sum of numbers31
Number of products (including duplicates)0
Sum of products size (including duplicates)0
Number of different products0
Sum of products size0

Solver Data

0.02/0.08	c SAT4J: a SATisfiability library for Java (c) 2004-2006 Daniel Le Berre
0.02/0.08	c This is free software under the GNU LGPL licence. See www.sat4j.org for details.
0.02/0.08	c This software uses some libraries from the Jakarta project. See jakarta.apache.org for details.
0.02/0.08	c no version file found!!!
0.02/0.08	c sun.arch.data.model	64
0.02/0.08	c java.version	1.6.0_24
0.02/0.08	c os.name	Linux
0.02/0.08	c os.version	2.6.32-71.29.1.el6.x86_64
0.02/0.08	c os.arch	amd64
0.02/0.08	c Free memory 1599470296
0.02/0.08	c Max memory 1607860224
0.02/0.08	c Total memory 1607860224
0.02/0.08	c Number of processors 8
0.09/0.10	--- Begin Solver configuration ---
0.09/0.10	c Stops conflict analysis at the first Unique Implication Point
0.09/0.10	c org.sat4j.minisat.constraints.PBMaxClauseCardConstrDataStructure@18e2b22
0.09/0.10	c Learn all clauses as in MiniSAT
0.09/0.10	c claDecay=0.999 varDecay=0.95 conflictBoundIncFactor=1.5 initConflictBound=100 
0.09/0.10	c VSIDS like heuristics from MiniSAT using a heap
0.09/0.10	c No reason simplification
0.09/0.10	c --- End Solver configuration ---
0.09/0.10	c solving HOME/instance-3733330-1338695294.opb
0.09/0.10	c reading problem ... 
0.09/0.12	c ... done. Wall clock time 0.014s.
0.09/0.12	c CPU time (experimental) 0.08s.
0.09/0.12	c #vars     82
0.09/0.12	c #constraints  2
349.64/345.09	Exception in thread "main" java.lang.OutOfMemoryError: GC overhead limit exceeded
349.64/345.09		at java.math.BigInteger.add(BigInteger.java:1023)
349.64/345.09		at org.sat4j.minisat.constraints.pb.MaxWatchPb.undo(Unknown Source)
349.64/345.09		at org.sat4j.minisat.core.Solver.undoOne(Unknown Source)
349.64/345.09		at org.sat4j.minisat.core.Solver.analyze(Unknown Source)
349.64/345.09		at org.sat4j.minisat.core.Solver.search(Unknown Source)
349.64/345.09		at org.sat4j.minisat.core.Solver.isSatisfiable(Unknown Source)
349.64/345.09		at org.sat4j.minisat.core.Solver.isSatisfiable(Unknown Source)
349.64/345.09		at org.sat4j.tools.SolverDecorator.isSatisfiable(Unknown Source)
349.64/345.09		at org.sat4j.opt.PseudoOptDecorator.admitABetterSolution(Unknown Source)
349.64/345.09		at org.sat4j.AbstractOptimizationLauncher.solve(Unknown Source)
349.64/345.09		at org.sat4j.LanceurPseudo2005.solve(Unknown Source)
349.64/345.09		at org.sat4j.AbstractLauncher.run(Unknown Source)
349.64/345.09		at org.sat4j.LanceurPseudo2007.main(Unknown Source)
356.04/351.49	Exception in thread "Thread-0" java.lang.OutOfMemoryError: GC overhead limit exceeded
358.04/353.43		at java.util.Arrays.copyOfRange(Arrays.java:3209)
358.04/353.43		at java.lang.String.<init>(String.java:215)
358.04/353.43		at java.lang.StringBuilder.toString(StringBuilder.java:430)
358.04/353.43		at org.sat4j.minisat.core.SolverStats.printStat(Unknown Source)
358.04/353.43		at org.sat4j.minisat.core.Solver.printStat(Unknown Source)
358.04/353.43		at org.sat4j.tools.SolverDecorator.printStat(Unknown Source)
358.04/353.43		at org.sat4j.AbstractOptimizationLauncher.displayResult(Unknown Source)
358.04/353.43		at org.sat4j.AbstractLauncher$1.run(Unknown Source)

Verifier Data

ERROR: no interpretation found !

Watcher Data

runsolver Copyright (C) 2010-2011 Olivier ROUSSEL

This is runsolver version 3.3.1 (svn: 989)

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.

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-3733330-1338695294/watcher-3733330-1338695294 -o /tmp/evaluation-result-3733330-1338695294/solver-3733330-1338695294 -C 1800 -W 1900 -M 15500 java -server -Xms1600M -Xmx1600M -jar HOME/sat4jPseudoResolution.jar HOME/instance-3733330-1338695294.opb 

running on 4 cores: 0,2,4,6

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 1800 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 1830 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 1900 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
Current StackSize limit: 10240 KiB


[startup+0 s]
/proc/loadavg: 1.92 1.98 1.99 3/194 5289
/proc/meminfo: memFree=28069172/32873648 swapFree=7116/7116
[pid=5289] ppid=5287 vsize=9292 CPUtime=0 cores=0,2,4,6
/proc/5289/stat : 5289 (java) D 5287 5289 1585 0 -1 4202496 249 0 0 0 0 0 0 0 20 0 1 0 335654864 9515008 183 33554432000 1073741824 1073778376 140734414524336 140734414515368 214537420469 0 0 4096 0 18446744072100609316 0 0 17 0 0 0 0 0 0
/proc/5289/statm: 2323 183 140 9 0 71 0

[startup+0.042187 s]
/proc/loadavg: 1.92 1.98 1.99 3/194 5289
/proc/meminfo: memFree=28069172/32873648 swapFree=7116/7116
[pid=5289] ppid=5287 vsize=2623916 CPUtime=0.02 cores=0,2,4,6
/proc/5289/stat : 5289 (java) S 5287 5289 1585 0 -1 4202496 3901 0 1 0 1 1 0 0 20 0 13 0 335654864 2686889984 5109 33554432000 1073741824 1073778376 140733648717760 140733648708896 214540779581 0 0 0 16784584 18446744073709551615 0 0 17 0 0 0 0 0 0
/proc/5289/statm: 655979 5109 1677 9 0 646680 0
Current children cumulated CPU time (s) 0.02
Current children cumulated vsize (KiB) 2623916

[startup+0.100267 s]
/proc/loadavg: 1.92 1.98 1.99 3/194 5289
/proc/meminfo: memFree=28069172/32873648 swapFree=7116/7116
[pid=5289] ppid=5287 vsize=2957856 CPUtime=0.09 cores=0,2,4,6
/proc/5289/stat : 5289 (java) S 5287 5289 1585 0 -1 4202496 4895 0 1 0 8 1 0 0 20 0 18 0 335654864 3028844544 6604 33554432000 1073741824 1073778376 140733648717760 140733648708896 214540779581 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0
/proc/5289/statm: 739464 6605 2127 9 0 729885 0
Current children cumulated CPU time (s) 0.09
Current children cumulated vsize (KiB) 2957856

[startup+0.300239 s]
/proc/loadavg: 1.92 1.98 1.99 3/194 5289
/proc/meminfo: memFree=28069172/32873648 swapFree=7116/7116
[pid=5289] ppid=5287 vsize=3024420 CPUtime=0.48 cores=0,2,4,6
/proc/5289/stat : 5289 (java) S 5287 5289 1585 0 -1 4202496 7165 0 1 0 46 2 0 0 20 0 19 0 335654864 3097006080 9646 33554432000 1073741824 1073778376 140733648717760 140733648708896 214540779581 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0
/proc/5289/statm: 756105 9646 2240 9 0 746526 0
Current children cumulated CPU time (s) 0.48
Current children cumulated vsize (KiB) 3024420

[startup+0.700235 s]
/proc/loadavg: 1.92 1.98 1.99 3/194 5289
/proc/meminfo: memFree=28069172/32873648 swapFree=7116/7116
[pid=5289] ppid=5287 vsize=3024420 CPUtime=0.96 cores=0,2,4,6
/proc/5289/stat : 5289 (java) S 5287 5289 1585 0 -1 4202496 7807 0 1 0 93 3 0 0 20 0 19 0 335654864 3097006080 15406 33554432000 1073741824 1073778376 140733648717760 140733648708896 214540779581 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0
/proc/5289/statm: 756105 15406 2245 9 0 746526 0
Current children cumulated CPU time (s) 0.96
Current children cumulated vsize (KiB) 3024420

[startup+1.50069 s]
/proc/loadavg: 1.92 1.98 1.99 3/213 5308
/proc/meminfo: memFree=27999572/32873648 swapFree=7116/7116
[pid=5289] ppid=5287 vsize=3024420 CPUtime=1.75 cores=0,2,4,6
/proc/5289/stat : 5289 (java) S 5287 5289 1585 0 -1 4202496 7832 0 1 0 172 3 0 0 20 0 19 0 335654864 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140733648708896 214540779581 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0
/proc/5289/statm: 756105 26161 2247 9 0 746526 0
[pid=5289/tid=5291] ppid=5287 vsize=3024420 CPUtime=1.46 cores=0,2,4,6
/proc/5289/task/5291/stat : 5291 (java) R 5287 5289 1585 0 -1 4202560 3054 0 1 0 143 3 0 0 20 0 19 0 335654865 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005457752592 140005280771120 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5292] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5292/stat : 5292 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005441178536 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5293] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5293/stat : 5293 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005440125992 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5294] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5294/stat : 5294 (java) S 5287 5289 1585 0 -1 4202560 2 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005439072936 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 6 0 0 0 0 0
[pid=5289/tid=5295] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5295/stat : 5295 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005438020392 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5296] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5296/stat : 5296 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005436967336 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5297] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5297/stat : 5297 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005435914792 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5298] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5298/stat : 5298 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005434861736 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5299] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5299/stat : 5299 (java) S 5287 5289 1585 0 -1 4202560 3 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005433809192 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5300] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5300/stat : 5300 (java) S 5287 5289 1585 0 -1 4202560 5 0 0 0 0 0 0 0 20 0 19 0 335654867 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005421398888 214540793769 0 0 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5301] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5301/stat : 5301 (java) S 5287 5289 1585 0 -1 4202560 16 0 0 0 0 0 0 0 20 0 19 0 335654868 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005420345208 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5302] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5302/stat : 5302 (java) S 5287 5289 1585 0 -1 4202560 7 0 0 0 0 0 0 0 20 0 19 0 335654868 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005419292040 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5303] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5303/stat : 5303 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654870 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005418240784 214540801824 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5304] ppid=5287 vsize=3024420 CPUtime=0.14 cores=0,2,4,6
/proc/5289/task/5304/stat : 5304 (java) S 5287 5289 1585 0 -1 4202560 1551 0 0 0 14 0 0 0 20 0 19 0 335654870 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005417187640 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5305] ppid=5287 vsize=3024420 CPUtime=0.12 cores=0,2,4,6
/proc/5289/task/5305/stat : 5305 (java) S 5287 5289 1585 0 -1 4202560 2031 0 0 0 12 0 0 0 20 0 19 0 335654870 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005416135096 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5306] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5306/stat : 5306 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654870 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005415082232 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5307] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5307/stat : 5307 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654870 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005414029896 214540793769 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5308] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5308/stat : 5308 (java) S 5287 5289 1585 0 -1 4202560 7 0 0 0 0 0 0 0 20 0 19 0 335654876 3097006080 26161 33554432000 1073741824 1073778376 140733648717760 140005411829288 214540793769 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
Current children cumulated CPU time (s) 1.75
Current children cumulated vsize (KiB) 3024420

[startup+3.10064 s]
/proc/loadavg: 1.92 1.98 1.99 3/213 5308
/proc/meminfo: memFree=27941608/32873648 swapFree=7116/7116
[pid=5289] ppid=5287 vsize=3024420 CPUtime=3.36 cores=0,2,4,6
/proc/5289/stat : 5289 (java) S 5287 5289 1585 0 -1 4202496 7871 0 1 0 332 4 0 0 20 0 19 0 335654864 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140733648708896 214540779581 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0
/proc/5289/statm: 756105 46129 2247 9 0 746526 0
[pid=5289/tid=5291] ppid=5287 vsize=3024420 CPUtime=3.06 cores=0,2,4,6
/proc/5289/task/5291/stat : 5291 (java) R 5287 5289 1585 0 -1 4202560 3093 0 1 0 302 4 0 0 20 0 19 0 335654865 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005457752424 140005280726999 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5292] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5292/stat : 5292 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005441178536 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5293] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5293/stat : 5293 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005440125992 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5294] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5294/stat : 5294 (java) S 5287 5289 1585 0 -1 4202560 2 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005439072936 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 6 0 0 0 0 0
[pid=5289/tid=5295] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5295/stat : 5295 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005438020392 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5296] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5296/stat : 5296 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005436967336 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5297] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5297/stat : 5297 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005435914792 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5298] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5298/stat : 5298 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005434861736 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5299] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5299/stat : 5299 (java) S 5287 5289 1585 0 -1 4202560 3 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005433809192 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5300] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5300/stat : 5300 (java) S 5287 5289 1585 0 -1 4202560 5 0 0 0 0 0 0 0 20 0 19 0 335654867 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005421398888 214540793769 0 0 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5301] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5301/stat : 5301 (java) S 5287 5289 1585 0 -1 4202560 16 0 0 0 0 0 0 0 20 0 19 0 335654868 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005420345208 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5302] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5302/stat : 5302 (java) S 5287 5289 1585 0 -1 4202560 7 0 0 0 0 0 0 0 20 0 19 0 335654868 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005419292040 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5303] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5303/stat : 5303 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654870 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005418240784 214540801824 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5304] ppid=5287 vsize=3024420 CPUtime=0.14 cores=0,2,4,6
/proc/5289/task/5304/stat : 5304 (java) S 5287 5289 1585 0 -1 4202560 1551 0 0 0 14 0 0 0 20 0 19 0 335654870 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005417187640 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5305] ppid=5287 vsize=3024420 CPUtime=0.12 cores=0,2,4,6
/proc/5289/task/5305/stat : 5305 (java) S 5287 5289 1585 0 -1 4202560 2031 0 0 0 12 0 0 0 20 0 19 0 335654870 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005416135096 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5306] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5306/stat : 5306 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654870 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005415082232 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5307] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5307/stat : 5307 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654870 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005414029896 214540793769 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5308] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5308/stat : 5308 (java) S 5287 5289 1585 0 -1 4202560 7 0 0 0 0 0 0 0 20 0 19 0 335654876 3097006080 46129 33554432000 1073741824 1073778376 140733648717760 140005411829288 214540793769 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
Current children cumulated CPU time (s) 3.36
Current children cumulated vsize (KiB) 3024420

[startup+6.30065 s]
/proc/loadavg: 1.93 1.98 1.99 3/213 5308
/proc/meminfo: memFree=27793284/32873648 swapFree=7116/7116
[pid=5289] ppid=5287 vsize=3024420 CPUtime=6.56 cores=0,2,4,6
/proc/5289/stat : 5289 (java) S 5287 5289 1585 0 -1 4202496 7937 0 1 0 651 5 0 0 20 0 19 0 335654864 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140733648708896 214540779581 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0
/proc/5289/statm: 756105 78886 2248 9 0 746526 0
[pid=5289/tid=5291] ppid=5287 vsize=3024420 CPUtime=6.26 cores=0,2,4,6
/proc/5289/task/5291/stat : 5291 (java) R 5287 5289 1585 0 -1 4202560 3158 0 1 0 621 5 0 0 20 0 19 0 335654865 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005457752720 140005280786013 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5292] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5292/stat : 5292 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005441178536 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5293] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5293/stat : 5293 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005440125992 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5294] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5294/stat : 5294 (java) S 5287 5289 1585 0 -1 4202560 2 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005439072936 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 6 0 0 0 0 0
[pid=5289/tid=5295] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5295/stat : 5295 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005438020392 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5296] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5296/stat : 5296 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005436967336 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5297] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5297/stat : 5297 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005435914792 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5298] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5298/stat : 5298 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005434861736 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5299] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5299/stat : 5299 (java) S 5287 5289 1585 0 -1 4202560 3 0 0 0 0 0 0 0 20 0 19 0 335654866 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005433809192 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5300] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5300/stat : 5300 (java) S 5287 5289 1585 0 -1 4202560 5 0 0 0 0 0 0 0 20 0 19 0 335654867 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005421398888 214540793769 0 0 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5301] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5301/stat : 5301 (java) S 5287 5289 1585 0 -1 4202560 16 0 0 0 0 0 0 0 20 0 19 0 335654868 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005420345208 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5302] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5302/stat : 5302 (java) S 5287 5289 1585 0 -1 4202560 7 0 0 0 0 0 0 0 20 0 19 0 335654868 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005419292040 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5303] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5303/stat : 5303 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654870 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005418240784 214540801824 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5304] ppid=5287 vsize=3024420 CPUtime=0.14 cores=0,2,4,6
/proc/5289/task/5304/stat : 5304 (java) S 5287 5289 1585 0 -1 4202560 1551 0 0 0 14 0 0 0 20 0 19 0 335654870 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005417187640 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5305] ppid=5287 vsize=3024420 CPUtime=0.12 cores=0,2,4,6
/proc/5289/task/5305/stat : 5305 (java) S 5287 5289 1585 0 -1 4202560 2031 0 0 0 12 0 0 0 20 0 19 0 335654870 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005416135096 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5306] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5306/stat : 5306 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 19 0 335654870 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005415082232 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5307] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5307/stat : 5307 (java) S 5287 5289 1585 0 -1 4202560 2 0 0 0 0 0 0 0 20 0 19 0 335654870 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005414029896 214540793769 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5308] ppid=5287 vsize=3024420 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5308/stat : 5308 (java) S 5287 5289 1585 0 -1 4202560 7 0 0 0 0 0 0 0 20 0 19 0 335654876 3097006080 78886 33554432000 1073741824 1073778376 140733648717760 140005411829288 214540793769 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
Current children cumulated CPU time (s) 6.56
Current children cumulated vsize (KiB) 3024420

[startup+12.7006 s]

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

/proc/5289/task/5296/stat : 5296 (java) S 5287 5289 1585 0 -1 4202560 449 0 0 0 75 14 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005436967336 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5297] ppid=5287 vsize=3090984 CPUtime=0.8 cores=0,2,4,6
/proc/5289/task/5297/stat : 5297 (java) S 5287 5289 1585 0 -1 4202560 320 0 0 0 69 11 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005435914792 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5298] ppid=5287 vsize=3090984 CPUtime=0.91 cores=0,2,4,6
/proc/5289/task/5298/stat : 5298 (java) S 5287 5289 1585 0 -1 4202560 385 0 0 0 78 13 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005434861736 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 6 0 0 0 0 0
[pid=5289/tid=5299] ppid=5287 vsize=3090984 CPUtime=0.59 cores=0,2,4,6
/proc/5289/task/5299/stat : 5299 (java) S 5287 5289 1585 0 -1 4202560 407 0 0 0 51 8 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005433809192 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 6 0 0 0 0 0
[pid=5289/tid=5300] ppid=5287 vsize=3090984 CPUtime=69.04 cores=0,2,4,6
/proc/5289/task/5300/stat : 5300 (java) R 5287 5289 1585 0 -1 4202560 122 0 0 0 6900 4 0 0 20 0 20 0 335654867 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005421398888 140005461889373 0 0 0 16800975 0 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5301] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5301/stat : 5301 (java) S 5287 5289 1585 0 -1 4202560 17 0 0 0 0 0 0 0 20 0 20 0 335654868 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005420345208 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5302] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5302/stat : 5302 (java) S 5287 5289 1585 0 -1 4202560 11 0 0 0 0 0 0 0 20 0 20 0 335654868 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005419289144 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5303] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5303/stat : 5303 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005418240784 214540801824 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5304] ppid=5287 vsize=3090984 CPUtime=0.15 cores=0,2,4,6
/proc/5289/task/5304/stat : 5304 (java) S 5287 5289 1585 0 -1 4202560 1551 0 0 0 15 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005417187640 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5305] ppid=5287 vsize=3090984 CPUtime=0.12 cores=0,2,4,6
/proc/5289/task/5305/stat : 5305 (java) S 5287 5289 1585 0 -1 4202560 2031 0 0 0 12 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005416135096 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5306] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5306/stat : 5306 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005415082232 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5307] ppid=5287 vsize=3090984 CPUtime=0.11 cores=0,2,4,6
/proc/5289/task/5307/stat : 5307 (java) S 5287 5289 1585 0 -1 4202560 21 0 0 0 5 6 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005414029896 214540793769 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5308] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5308/stat : 5308 (java) S 5287 5289 1585 0 -1 4202560 7 0 0 0 0 0 0 0 20 0 20 0 335654876 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005411829288 214540793769 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5313] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5313/stat : 5313 (java) S 5287 5289 1585 0 -1 4202560 12 0 0 0 0 0 0 0 20 0 20 0 335689374 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005410775560 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
Current children cumulated CPU time (s) 357.34
Current children cumulated vsize (KiB) 3090984

[startup+353.107 s]
/proc/loadavg: 2.01 2.07 2.04 3/214 5313
/proc/meminfo: memFree=26398260/32873648 swapFree=7116/7116
[pid=5289] ppid=5287 vsize=3090984 CPUtime=357.75 cores=0,2,4,6
/proc/5289/stat : 5289 (java) S 5287 5289 1585 0 -1 4202496 11059 0 1 0 35676 99 0 0 20 0 20 0 335654864 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140733648708896 214540779581 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0
/proc/5289/statm: 772746 418635 2269 9 0 763167 0
[pid=5289/tid=5291] ppid=5287 vsize=3090984 CPUtime=282.1 cores=0,2,4,6
/proc/5289/task/5291/stat : 5291 (java) S 5287 5289 1585 0 -1 4202560 3294 0 1 0 28200 10 0 0 20 0 20 0 335654865 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005457753272 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5292] ppid=5287 vsize=3090984 CPUtime=0.6 cores=0,2,4,6
/proc/5289/task/5292/stat : 5292 (java) S 5287 5289 1585 0 -1 4202560 252 0 0 0 52 8 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005441178536 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5293] ppid=5287 vsize=3090984 CPUtime=0.61 cores=0,2,4,6
/proc/5289/task/5293/stat : 5293 (java) S 5287 5289 1585 0 -1 4202560 435 0 0 0 52 9 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005440125992 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5294] ppid=5287 vsize=3090984 CPUtime=0.65 cores=0,2,4,6
/proc/5289/task/5294/stat : 5294 (java) S 5287 5289 1585 0 -1 4202560 308 0 0 0 54 11 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005439072936 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5295] ppid=5287 vsize=3090984 CPUtime=0.73 cores=0,2,4,6
/proc/5289/task/5295/stat : 5295 (java) S 5287 5289 1585 0 -1 4202560 288 0 0 0 62 11 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005438020392 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5296] ppid=5287 vsize=3090984 CPUtime=0.89 cores=0,2,4,6
/proc/5289/task/5296/stat : 5296 (java) S 5287 5289 1585 0 -1 4202560 449 0 0 0 75 14 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005436967336 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5297] ppid=5287 vsize=3090984 CPUtime=0.8 cores=0,2,4,6
/proc/5289/task/5297/stat : 5297 (java) S 5287 5289 1585 0 -1 4202560 320 0 0 0 69 11 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005435914792 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5298] ppid=5287 vsize=3090984 CPUtime=0.91 cores=0,2,4,6
/proc/5289/task/5298/stat : 5298 (java) S 5287 5289 1585 0 -1 4202560 385 0 0 0 78 13 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005434861736 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 6 0 0 0 0 0
[pid=5289/tid=5299] ppid=5287 vsize=3090984 CPUtime=0.59 cores=0,2,4,6
/proc/5289/task/5299/stat : 5299 (java) S 5287 5289 1585 0 -1 4202560 407 0 0 0 51 8 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005433809192 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 6 0 0 0 0 0
[pid=5289/tid=5300] ppid=5287 vsize=3090984 CPUtime=69.45 cores=0,2,4,6
/proc/5289/task/5300/stat : 5300 (java) R 5287 5289 1585 0 -1 4202560 122 0 0 0 6941 4 0 0 20 0 20 0 335654867 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005421399048 140005461914102 0 0 0 16800975 0 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5301] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5301/stat : 5301 (java) S 5287 5289 1585 0 -1 4202560 17 0 0 0 0 0 0 0 20 0 20 0 335654868 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005420345208 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5302] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5302/stat : 5302 (java) S 5287 5289 1585 0 -1 4202560 11 0 0 0 0 0 0 0 20 0 20 0 335654868 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005419289144 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5303] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5303/stat : 5303 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005418240784 214540801824 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5304] ppid=5287 vsize=3090984 CPUtime=0.15 cores=0,2,4,6
/proc/5289/task/5304/stat : 5304 (java) S 5287 5289 1585 0 -1 4202560 1551 0 0 0 15 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005417187640 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5305] ppid=5287 vsize=3090984 CPUtime=0.12 cores=0,2,4,6
/proc/5289/task/5305/stat : 5305 (java) S 5287 5289 1585 0 -1 4202560 2031 0 0 0 12 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005416135096 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5306] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5306/stat : 5306 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005415082232 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5307] ppid=5287 vsize=3090984 CPUtime=0.11 cores=0,2,4,6
/proc/5289/task/5307/stat : 5307 (java) S 5287 5289 1585 0 -1 4202560 21 0 0 0 5 6 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005414029896 214540793769 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5308] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5308/stat : 5308 (java) S 5287 5289 1585 0 -1 4202560 7 0 0 0 0 0 0 0 20 0 20 0 335654876 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005411829288 214540793769 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5313] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5313/stat : 5313 (java) S 5287 5289 1585 0 -1 4202560 12 0 0 0 0 0 0 0 20 0 20 0 335689374 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005410775560 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
Current children cumulated CPU time (s) 357.75
Current children cumulated vsize (KiB) 3090984

[startup+353.301 s]
/proc/loadavg: 2.01 2.07 2.04 3/214 5313
/proc/meminfo: memFree=26398260/32873648 swapFree=7116/7116
[pid=5289] ppid=5287 vsize=3090984 CPUtime=357.94 cores=0,2,4,6
/proc/5289/stat : 5289 (java) S 5287 5289 1585 0 -1 4202496 11059 0 1 0 35695 99 0 0 20 0 20 0 335654864 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140733648708896 214540779581 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0
/proc/5289/statm: 772746 418635 2269 9 0 763167 0
[pid=5289/tid=5291] ppid=5287 vsize=3090984 CPUtime=282.1 cores=0,2,4,6
/proc/5289/task/5291/stat : 5291 (java) S 5287 5289 1585 0 -1 4202560 3294 0 1 0 28200 10 0 0 20 0 20 0 335654865 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005457753272 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5292] ppid=5287 vsize=3090984 CPUtime=0.6 cores=0,2,4,6
/proc/5289/task/5292/stat : 5292 (java) S 5287 5289 1585 0 -1 4202560 252 0 0 0 52 8 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005441178536 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5293] ppid=5287 vsize=3090984 CPUtime=0.61 cores=0,2,4,6
/proc/5289/task/5293/stat : 5293 (java) S 5287 5289 1585 0 -1 4202560 435 0 0 0 52 9 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005440125992 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5294] ppid=5287 vsize=3090984 CPUtime=0.65 cores=0,2,4,6
/proc/5289/task/5294/stat : 5294 (java) S 5287 5289 1585 0 -1 4202560 308 0 0 0 54 11 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005439072936 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5295] ppid=5287 vsize=3090984 CPUtime=0.73 cores=0,2,4,6
/proc/5289/task/5295/stat : 5295 (java) S 5287 5289 1585 0 -1 4202560 288 0 0 0 62 11 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005438020392 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5296] ppid=5287 vsize=3090984 CPUtime=0.89 cores=0,2,4,6
/proc/5289/task/5296/stat : 5296 (java) S 5287 5289 1585 0 -1 4202560 449 0 0 0 75 14 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005436967336 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5297] ppid=5287 vsize=3090984 CPUtime=0.8 cores=0,2,4,6
/proc/5289/task/5297/stat : 5297 (java) S 5287 5289 1585 0 -1 4202560 320 0 0 0 69 11 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005435914792 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5298] ppid=5287 vsize=3090984 CPUtime=0.91 cores=0,2,4,6
/proc/5289/task/5298/stat : 5298 (java) S 5287 5289 1585 0 -1 4202560 385 0 0 0 78 13 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005434861736 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 6 0 0 0 0 0
[pid=5289/tid=5299] ppid=5287 vsize=3090984 CPUtime=0.59 cores=0,2,4,6
/proc/5289/task/5299/stat : 5299 (java) S 5287 5289 1585 0 -1 4202560 407 0 0 0 51 8 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005433809192 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 6 0 0 0 0 0
[pid=5289/tid=5300] ppid=5287 vsize=3090984 CPUtime=69.64 cores=0,2,4,6
/proc/5289/task/5300/stat : 5300 (java) R 5287 5289 1585 0 -1 4202560 122 0 0 0 6960 4 0 0 20 0 20 0 335654867 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005421399048 140005465519552 0 0 0 16800975 0 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5301] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5301/stat : 5301 (java) S 5287 5289 1585 0 -1 4202560 17 0 0 0 0 0 0 0 20 0 20 0 335654868 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005420345208 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5302] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5302/stat : 5302 (java) S 5287 5289 1585 0 -1 4202560 11 0 0 0 0 0 0 0 20 0 20 0 335654868 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005419289144 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5303] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5303/stat : 5303 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005418240784 214540801824 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5304] ppid=5287 vsize=3090984 CPUtime=0.15 cores=0,2,4,6
/proc/5289/task/5304/stat : 5304 (java) S 5287 5289 1585 0 -1 4202560 1551 0 0 0 15 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005417187640 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5305] ppid=5287 vsize=3090984 CPUtime=0.12 cores=0,2,4,6
/proc/5289/task/5305/stat : 5305 (java) S 5287 5289 1585 0 -1 4202560 2031 0 0 0 12 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005416135096 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5306] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5306/stat : 5306 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005415082232 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5307] ppid=5287 vsize=3090984 CPUtime=0.11 cores=0,2,4,6
/proc/5289/task/5307/stat : 5307 (java) S 5287 5289 1585 0 -1 4202560 21 0 0 0 5 6 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005414029896 214540793769 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5308] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5308/stat : 5308 (java) S 5287 5289 1585 0 -1 4202560 7 0 0 0 0 0 0 0 20 0 20 0 335654876 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005411829288 214540793769 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5313] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5313/stat : 5313 (java) S 5287 5289 1585 0 -1 4202560 12 0 0 0 0 0 0 0 20 0 20 0 335689374 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005410775560 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
Current children cumulated CPU time (s) 357.94
Current children cumulated vsize (KiB) 3090984

[startup+353.401 s]
/proc/loadavg: 2.01 2.07 2.04 3/214 5313
/proc/meminfo: memFree=26398260/32873648 swapFree=7116/7116
[pid=5289] ppid=5287 vsize=3090984 CPUtime=358.04 cores=0,2,4,6
/proc/5289/stat : 5289 (java) S 5287 5289 1585 0 -1 4202496 11059 0 1 0 35705 99 0 0 20 0 20 0 335654864 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140733648708896 214540779581 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0
/proc/5289/statm: 772746 418635 2269 9 0 763167 0
[pid=5289/tid=5291] ppid=5287 vsize=3090984 CPUtime=282.1 cores=0,2,4,6
/proc/5289/task/5291/stat : 5291 (java) S 5287 5289 1585 0 -1 4202560 3294 0 1 0 28200 10 0 0 20 0 20 0 335654865 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005457753272 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5292] ppid=5287 vsize=3090984 CPUtime=0.6 cores=0,2,4,6
/proc/5289/task/5292/stat : 5292 (java) S 5287 5289 1585 0 -1 4202560 252 0 0 0 52 8 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005441178536 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5293] ppid=5287 vsize=3090984 CPUtime=0.61 cores=0,2,4,6
/proc/5289/task/5293/stat : 5293 (java) S 5287 5289 1585 0 -1 4202560 435 0 0 0 52 9 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005440125992 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5294] ppid=5287 vsize=3090984 CPUtime=0.65 cores=0,2,4,6
/proc/5289/task/5294/stat : 5294 (java) S 5287 5289 1585 0 -1 4202560 308 0 0 0 54 11 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005439072936 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5295] ppid=5287 vsize=3090984 CPUtime=0.73 cores=0,2,4,6
/proc/5289/task/5295/stat : 5295 (java) S 5287 5289 1585 0 -1 4202560 288 0 0 0 62 11 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005438020392 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5296] ppid=5287 vsize=3090984 CPUtime=0.89 cores=0,2,4,6
/proc/5289/task/5296/stat : 5296 (java) S 5287 5289 1585 0 -1 4202560 449 0 0 0 75 14 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005436967336 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5297] ppid=5287 vsize=3090984 CPUtime=0.8 cores=0,2,4,6
/proc/5289/task/5297/stat : 5297 (java) S 5287 5289 1585 0 -1 4202560 320 0 0 0 69 11 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005435914792 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5298] ppid=5287 vsize=3090984 CPUtime=0.91 cores=0,2,4,6
/proc/5289/task/5298/stat : 5298 (java) S 5287 5289 1585 0 -1 4202560 385 0 0 0 78 13 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005434861736 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 6 0 0 0 0 0
[pid=5289/tid=5299] ppid=5287 vsize=3090984 CPUtime=0.59 cores=0,2,4,6
/proc/5289/task/5299/stat : 5299 (java) S 5287 5289 1585 0 -1 4202560 407 0 0 0 51 8 0 0 20 0 20 0 335654866 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005433809192 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 6 0 0 0 0 0
[pid=5289/tid=5300] ppid=5287 vsize=3090984 CPUtime=69.74 cores=0,2,4,6
/proc/5289/task/5300/stat : 5300 (java) R 5287 5289 1585 0 -1 4202560 122 0 0 0 6970 4 0 0 20 0 20 0 335654867 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005421399048 140005464608020 0 0 0 16800975 0 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5301] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5301/stat : 5301 (java) S 5287 5289 1585 0 -1 4202560 17 0 0 0 0 0 0 0 20 0 20 0 335654868 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005420345208 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5302] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5302/stat : 5302 (java) S 5287 5289 1585 0 -1 4202560 11 0 0 0 0 0 0 0 20 0 20 0 335654868 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005419289144 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5303] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5303/stat : 5303 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005418240784 214540801824 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5304] ppid=5287 vsize=3090984 CPUtime=0.15 cores=0,2,4,6
/proc/5289/task/5304/stat : 5304 (java) S 5287 5289 1585 0 -1 4202560 1551 0 0 0 15 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005417187640 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5305] ppid=5287 vsize=3090984 CPUtime=0.12 cores=0,2,4,6
/proc/5289/task/5305/stat : 5305 (java) S 5287 5289 1585 0 -1 4202560 2031 0 0 0 12 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005416135096 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5306] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5306/stat : 5306 (java) S 5287 5289 1585 0 -1 4202560 1 0 0 0 0 0 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005415082232 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 4 0 0 0 0 0
[pid=5289/tid=5307] ppid=5287 vsize=3090984 CPUtime=0.11 cores=0,2,4,6
/proc/5289/task/5307/stat : 5307 (java) S 5287 5289 1585 0 -1 4202560 21 0 0 0 5 6 0 0 20 0 20 0 335654870 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005414029896 214540793769 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
[pid=5289/tid=5308] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5308/stat : 5308 (java) S 5287 5289 1585 0 -1 4202560 7 0 0 0 0 0 0 0 20 0 20 0 335654876 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005411829288 214540793769 0 4 0 16800975 18446744071579510697 0 0 -1 2 0 0 0 0 0
[pid=5289/tid=5313] ppid=5287 vsize=3090984 CPUtime=0 cores=0,2,4,6
/proc/5289/task/5313/stat : 5313 (java) S 5287 5289 1585 0 -1 4202560 12 0 0 0 0 0 0 0 20 0 20 0 335689374 3165167616 418635 33554432000 1073741824 1073778376 140733648717760 140005410775560 214540792892 0 4 0 16800975 18446744071579510697 0 0 -1 0 0 0 0 0 0
Current children cumulated CPU time (s) 358.04
Current children cumulated vsize (KiB) 3090984

Child status: 1
Real time (s): 353.445
CPU time (s): 358.311
CPU user time (s): 357.118
CPU system time (s): 1.19282
CPU usage (%): 101.377
Max. virtual memory (cumulated for all children) (KiB): 3090984

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 357.118
system time used= 1.19282
maximum resident set size= 1674568
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 11071
page faults= 1
swaps= 0
block input operations= 0
block output operations= 384
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 8156
involuntary context switches= 5306

runsolver used 0.962853 second user time and 2.07069 second system time

The end

Launcher Data

Begin job on node127 at 2012-06-03 05:48:14
IDJOB=3733330
IDBENCH=2275
IDSOLVER=2319
FILE ID=node127/3733330-1338695294
RUNJOBID= node127-1338678617-1606
PBS_JOBID= 14636686
Free space on /tmp= 70480 MiB

SOLVER NAME= PB07: SAT4JPseudoResolution 2007-03-23
BENCH NAME= PB06//final/normalized-PB06/SATUNSAT-BIGINT/submitted-PB06/manquiho/Aardal_1/normalized-cuww4.opb
COMMAND LINE= java -server -Xms1600M -Xmx1600M -jar HOME/sat4jPseudoResolution.jar BENCHNAME           
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-3733330-1338695294/watcher-3733330-1338695294 -o /tmp/evaluation-result-3733330-1338695294/solver-3733330-1338695294 -C 1800 -W 1900 -M 15500  java -server -Xms1600M -Xmx1600M -jar HOME/sat4jPseudoResolution.jar HOME/instance-3733330-1338695294.opb           

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

MD5SUM BENCH= d53007d2869c28e065ccd77bdf635fbe
RANDOM SEED=1024306340

node127.alineos.net Linux 2.6.32-71.29.1.el6.x86_64 #1 SMP Mon Jun 27 19:49:27 BST 2011

/proc/cpuinfo:
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
cpu MHz		: 2666.348
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 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 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 tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.69
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
cpu MHz		: 2666.348
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 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 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 tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5331.91
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
cpu MHz		: 2666.348
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 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 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 tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5331.94
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
cpu MHz		: 2666.348
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 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 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 tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5331.91
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
cpu MHz		: 2666.348
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 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 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 tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5331.91
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
cpu MHz		: 2666.348
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 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 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 tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5331.91
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
cpu MHz		: 2666.348
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 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 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 tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5331.91
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
cpu MHz		: 2666.348
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 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 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 tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5331.91
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32873648 kB
MemFree:        28069156 kB
Buffers:          389372 kB
Cached:          1856904 kB
SwapCached:         1432 kB
Active:          2684032 kB
Inactive:        1236440 kB
Active(anon):    1668592 kB
Inactive(anon):     7952 kB
Active(file):    1015440 kB
Inactive(file):  1228488 kB
Unevictable:        7116 kB
Mlocked:            7116 kB
SwapTotal:      67108856 kB
SwapFree:       67104504 kB
Dirty:              3548 kB
Writeback:             0 kB
AnonPages:       1679876 kB
Mapped:            19072 kB
Shmem:                92 kB
Slab:             745304 kB
SReclaimable:     189452 kB
SUnreclaim:       555852 kB
KernelStack:        1600 kB
PageTables:         7112 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83545680 kB
Committed_AS:    1824940 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      346400 kB
VmallocChunk:   34341988052 kB
HardwareCorrupted:     0 kB
AnonHugePages:   1644544 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:        7680 kB
DirectMap2M:    33538048 kB

Free space on /tmp at the end= 70476 MiB
End job on node127 at 2012-06-03 05:54:08