Trace number 1056374

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
Abscon 112v4 AC? (TO) 1800.14 1824.14

General information on the benchmark

Namecsp/os-gp/
normalized-gp10-07-1079.xml
MD5SUMb79d5ab9b474e138388bd882c1eb4f79
Bench Category2-ARY-INT (binary constraints in intension)
Best result obtained on this benchmarkSAT
Best CPU time to get the best result obtained on this benchmark0.229965
Satisfiable
(Un)Satisfiability was proved
Number of variables101
Number of constraints1000
Maximum constraint arity2
Maximum domain size1080
Number of constraints which are defined in extension0
Number of constraints which are defined in intension1000
Global constraints used (with number of constraints)

Solver Data (download as text)

0.04/0.08	
0.04/0.08	Abscon 112 (May, 2008)
0.18/0.22	
0.18/0.22	   configuration
0.18/0.22	     name=mac.xml
0.28/0.30	   
0.28/0.30	   instance
0.28/0.30	     name=HOME/instance-1056374-1215062862.xml
0.28/0.33	   
0.28/0.33	   domains being loaded...
0.28/0.34	   
0.28/0.34	   variables being loaded...
0.38/0.44	     nbVariables=101  nbDomainTypes=2  minDomainSize=1  maxDomainSize=1080  nbTotalValues=108001
0.38/0.44	       =>  wckTime=0.209  cpuTime=0.17  mem=9M878
0.38/0.44	   
0.38/0.44	   predicates being loaded...
0.48/0.52	   
0.48/0.52	   constraints being loaded...
1.06/1.17	     nbConstraints=1010  nbGlobalConstraints=910  nbSingletonDomainVariables=1  nbConvertedConstraints=100
1.06/1.17	     nbConvertConstraintsChecks=60480  nbExtensionStructures=56  nbSharedExtensionStructures=44
1.06/1.17	     nbConflictsStructures=56  nbSharedConflictsStructures=44  nbSharedBinaryRepresentations=60478  minDegree=20
1.06/1.17	     maxDegree=101  minArity=2  avgArity=2.08  maxArity=11  nbGenerators=0  nbFusions=0  symmetryWckTime=0.206
1.06/1.17	     symmetryCpuTime=0.16  nbCliques=10
1.06/1.17	       =>  wckTime=0.944  cpuTime=0.7  mem=25M564
1.16/1.24	   
1.16/1.24	   solver IterativeSystematicSolver being built... 
1.26/1.30	   
1.26/1.31	   INFO : Forward propagation technique limited 
1.26/1.37	       =>  wckTime=1.139  cpuTime=0.81  mem=27M25
1.36/1.41	   
1.36/1.41	   preprocessing
1.36/1.41	     nbConstraintChecks=108000  nbPropagations=104  nbRevisions=105  nbUselessRevisions=5  nbRemovedValues=25549
1.36/1.41	     detectedInconsistency=no
1.36/1.41	       =>  wckTime=0.037  cpuTime=0.03  mem=27M25
9.21/9.33	   
9.21/9.33	   INFO : Stopping use of transposition table (mapSize=101, nbTooLargekeys=0, mem=26M52)

Verifier Data (download as text)

ERROR: Unexpected answer ! ('s SATISFIABLE'/'s UNSATISFIABLE' expected)
Got answer: 

Watcher Data (download as text)

runsolver version 3.2.5 (c) roussel@cril.univ-artois.fr

command line: /home/evaluation/evaluation/pub/bin/runsolver --timestamp -w /tmp/evaluation-result-1056374-1215062862/watcher-1056374-1215062862 -o /tmp/evaluation-result-1056374-1215062862/solver-1056374-1215062862 -C 1800 -W 2200 -M 900 --output-limit 1,15 java -Xms756M -Xmx756M -XX:PermSize=10m -XX:MaxPermSize=10m -cp abscon112V4.jar abscon.Resolution mac.xml 1 XSax HOME/instance-1056374-1215062862.xml 

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): 2200 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 921600 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 972800 KiB
Solver output will be limited to a maximum of 15728640 bytes. The first 1048576 bytes and the last 14680064 bytes will be preserved
Current StackSize limit: 10240 KiB


[startup+0 s]
/proc/loadavg: 4.03 2.99 2.79 4/88 19148
/proc/meminfo: memFree=1624420/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=18572 CPUtime=0
/proc/19148/stat : 19148 (runsolver) R 19146 19148 14689 0 -1 4194368 16 0 0 0 0 0 0 0 19 0 1 0 662012907 19017728 292 996147200 4194304 4296836 548682068352 18446744073709551615 256364834087 0 2147483391 4096 24578 0 0 0 17 1 0 0
/proc/19148/statm: 4643 292 257 25 0 2626 0

[startup+0.0669491 s]
/proc/loadavg: 4.03 2.99 2.79 4/88 19148
/proc/meminfo: memFree=1624420/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=864076 CPUtime=0.04
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 2802 0 1 0 3 1 0 0 18 0 9 0 662012907 884813824 2340 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 216019 2340 1120 9 0 210976 0
Current children cumulated CPU time (s) 0.04
Current children cumulated vsize (KiB) 864076

[startup+0.101955 s]
/proc/loadavg: 4.03 2.99 2.79 4/88 19148
/proc/meminfo: memFree=1624420/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=865884 CPUtime=0.08
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 3786 0 1 0 6 2 0 0 18 0 9 0 662012907 886665216 3237 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 216471 3237 1715 9 0 211026 0
Current children cumulated CPU time (s) 0.08
Current children cumulated vsize (KiB) 865884

[startup+0.301978 s]
/proc/loadavg: 4.03 2.99 2.79 4/88 19148
/proc/meminfo: memFree=1624420/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=866276 CPUtime=0.28
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 5739 0 1 0 25 3 0 0 18 0 9 0 662012907 887066624 5121 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 216569 5121 1945 9 0 211097 0
Current children cumulated CPU time (s) 0.28
Current children cumulated vsize (KiB) 866276

[startup+0.702018 s]
/proc/loadavg: 4.03 2.99 2.79 4/88 19148
/proc/meminfo: memFree=1624420/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=867684 CPUtime=0.68
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 8502 0 1 0 63 5 0 0 18 0 9 0 662012907 888508416 7862 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 216921 7862 2010 9 0 211427 0
Current children cumulated CPU time (s) 0.68
Current children cumulated vsize (KiB) 867684

[startup+1.5011 s]
/proc/loadavg: 4.03 2.99 2.79 3/97 19157
/proc/meminfo: memFree=1591964/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=868008 CPUtime=1.46
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 20285 325 1 0 133 13 0 0 18 0 9 0 662012907 888840192 12428 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 217002 12428 2632 9 0 211508 0
[pid=19148/tid=19150] ppid=19146 vsize=868008 CPUtime=1.13
/proc/19148/task/19150/stat : 19150 (java) R 19146 19148 14689 0 -1 64 14030 325 1 0 103 10 0 0 20 0 9 0 662012908 888840192 12428 996147200 134512640 134550740 4294955984 18446744073709551615 4127131748 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19151] ppid=19146 vsize=868008 CPUtime=0.05
/proc/19148/task/19151/stat : 19151 (java) S 19146 19148 14689 0 -1 64 4505 325 0 0 5 0 0 0 16 0 9 0 662012910 888840192 12428 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19152] ppid=19146 vsize=868008 CPUtime=0
/proc/19148/task/19152/stat : 19152 (java) S 19146 19148 14689 0 -1 64 16 325 0 0 0 0 0 0 17 0 9 0 662012910 888840192 12428 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19153] ppid=19146 vsize=868008 CPUtime=0
/proc/19148/task/19153/stat : 19153 (java) S 19146 19148 14689 0 -1 64 13 325 0 0 0 0 0 0 16 0 9 0 662012910 888840192 12428 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19154] ppid=19146 vsize=868008 CPUtime=0
/proc/19148/task/19154/stat : 19154 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 18 0 9 0 662012912 888840192 12428 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19155] ppid=19146 vsize=868008 CPUtime=0.24
/proc/19148/task/19155/stat : 19155 (java) S 19146 19148 14689 0 -1 64 909 325 0 0 24 0 0 0 15 0 9 0 662012912 888840192 12428 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19156] ppid=19146 vsize=868008 CPUtime=0
/proc/19148/task/19156/stat : 19156 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 19 0 9 0 662012912 888840192 12428 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19157] ppid=19146 vsize=868008 CPUtime=0
/proc/19148/task/19157/stat : 19157 (java) S 19146 19148 14689 0 -1 64 6 325 0 0 0 0 0 0 15 0 9 0 662012912 888840192 12428 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 1.46
Current children cumulated vsize (KiB) 868008

[startup+3.10126 s]
/proc/loadavg: 4.03 2.99 2.79 3/97 19161
/proc/meminfo: memFree=1581340/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=868140 CPUtime=3.05
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 22740 325 1 0 291 14 0 0 18 0 9 0 662012907 888975360 14873 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 217035 14873 2632 9 0 211541 0
[pid=19148/tid=19150] ppid=19146 vsize=868140 CPUtime=2.68
/proc/19148/task/19150/stat : 19150 (java) R 19146 19148 14689 0 -1 64 16462 325 1 0 257 11 0 0 25 0 9 0 662012908 888975360 14873 996147200 134512640 134550740 4294955984 18446744073709551615 4127109363 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19151] ppid=19146 vsize=868140 CPUtime=0.05
/proc/19148/task/19151/stat : 19151 (java) S 19146 19148 14689 0 -1 64 4506 325 0 0 5 0 0 0 17 0 9 0 662012910 888975360 14873 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19152] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19152/stat : 19152 (java) S 19146 19148 14689 0 -1 64 16 325 0 0 0 0 0 0 17 0 9 0 662012910 888975360 14873 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19153] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19153/stat : 19153 (java) S 19146 19148 14689 0 -1 64 13 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 14873 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19154] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19154/stat : 19154 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 18 0 9 0 662012912 888975360 14873 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19155] ppid=19146 vsize=868140 CPUtime=0.28
/proc/19148/task/19155/stat : 19155 (java) S 19146 19148 14689 0 -1 64 931 325 0 0 27 1 0 0 15 0 9 0 662012912 888975360 14873 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19156] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19156/stat : 19156 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 19 0 9 0 662012912 888975360 14873 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19157] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19157/stat : 19157 (java) S 19146 19148 14689 0 -1 64 6 325 0 0 0 0 0 0 15 0 9 0 662012912 888975360 14873 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 3.05
Current children cumulated vsize (KiB) 868140

[startup+6.3026 s]
/proc/loadavg: 4.03 3.01 2.79 3/97 19161
/proc/meminfo: memFree=1561500/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=868140 CPUtime=6.21
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 28743 325 1 0 604 17 0 0 18 0 9 0 662012907 888975360 20711 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 217035 20711 2636 9 0 211541 0
[pid=19148/tid=19150] ppid=19146 vsize=868140 CPUtime=5.79
/proc/19148/task/19150/stat : 19150 (java) R 19146 19148 14689 0 -1 64 20381 325 1 0 566 13 0 0 25 0 9 0 662012908 888975360 20711 996147200 134512640 134550740 4294955984 18446744073709551615 4126095719 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19151] ppid=19146 vsize=868140 CPUtime=0.11
/proc/19148/task/19151/stat : 19151 (java) S 19146 19148 14689 0 -1 64 6553 325 0 0 9 2 0 0 16 0 9 0 662012910 888975360 20711 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19152] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19152/stat : 19152 (java) S 19146 19148 14689 0 -1 64 16 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 20711 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19153] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19153/stat : 19153 (java) S 19146 19148 14689 0 -1 64 13 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 20711 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19154] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19154/stat : 19154 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 18 0 9 0 662012912 888975360 20711 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19155] ppid=19146 vsize=868140 CPUtime=0.29
/proc/19148/task/19155/stat : 19155 (java) S 19146 19148 14689 0 -1 64 940 325 0 0 28 1 0 0 16 0 9 0 662012912 888975360 20711 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19156] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19156/stat : 19156 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 19 0 9 0 662012912 888975360 20711 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19157] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19157/stat : 19157 (java) S 19146 19148 14689 0 -1 64 34 325 0 0 0 0 0 0 15 0 9 0 662012912 888975360 20711 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 6.21
Current children cumulated vsize (KiB) 868140

[startup+12.7013 s]
/proc/loadavg: 3.87 2.99 2.79 3/97 19161
/proc/meminfo: memFree=1551004/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=868140 CPUtime=12.61
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 28764 325 1 0 1244 17 0 0 18 0 9 0 662012907 888975360 20722 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 217035 20722 2636 9 0 211541 0
[pid=19148/tid=19150] ppid=19146 vsize=868140 CPUtime=12.17
/proc/19148/task/19150/stat : 19150 (java) R 19146 19148 14689 0 -1 64 20385 325 1 0 1204 13 0 0 25 0 9 0 662012908 888975360 20722 996147200 134512640 134550740 4294955984 18446744073709551615 4127144846 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19151] ppid=19146 vsize=868140 CPUtime=0.11
/proc/19148/task/19151/stat : 19151 (java) S 19146 19148 14689 0 -1 64 6553 325 0 0 9 2 0 0 17 0 9 0 662012910 888975360 20722 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19152] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19152/stat : 19152 (java) S 19146 19148 14689 0 -1 64 16 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 20722 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19153] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19153/stat : 19153 (java) S 19146 19148 14689 0 -1 64 13 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 20722 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19154] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19154/stat : 19154 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 18 0 9 0 662012912 888975360 20722 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19155] ppid=19146 vsize=868140 CPUtime=0.31
/proc/19148/task/19155/stat : 19155 (java) S 19146 19148 14689 0 -1 64 957 325 0 0 30 1 0 0 16 0 9 0 662012912 888975360 20722 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19156] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19156/stat : 19156 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 19 0 9 0 662012912 888975360 20722 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19157] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19157/stat : 19157 (java) S 19146 19148 14689 0 -1 64 34 325 0 0 0 0 0 0 15 0 9 0 662012912 888975360 20722 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 12.61
Current children cumulated vsize (KiB) 868140

[startup+25.5016 s]
/proc/loadavg: 3.45 2.94 2.78 3/97 19161
/proc/meminfo: memFree=1544860/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=868140 CPUtime=25.41
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 30332 325 1 0 2523 18 0 0 18 0 9 0 662012907 888975360 22255 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 217035 22255 2636 9 0 211541 0
[pid=19148/tid=19150] ppid=19146 vsize=868140 CPUtime=24.94
/proc/19148/task/19150/stat : 19150 (java) R 19146 19148 14689 0 -1 64 20390 325 1 0 2481 13 0 0 25 0 9 0 662012908 888975360 22255 996147200 134512640 134550740 4294955984 18446744073709551615 4127102313 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19151] ppid=19146 vsize=868140 CPUtime=0.11
/proc/19148/task/19151/stat : 19151 (java) S 19146 19148 14689 0 -1 64 8083 325 0 0 9 2 0 0 16 0 9 0 662012910 888975360 22255 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19152] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19152/stat : 19152 (java) S 19146 19148 14689 0 -1 64 16 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22255 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19153] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19153/stat : 19153 (java) S 19146 19148 14689 0 -1 64 13 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22255 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19154] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19154/stat : 19154 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 18 0 9 0 662012912 888975360 22255 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19155] ppid=19146 vsize=868140 CPUtime=0.32
/proc/19148/task/19155/stat : 19155 (java) S 19146 19148 14689 0 -1 64 990 325 0 0 31 1 0 0 16 0 9 0 662012912 888975360 22255 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19156] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19156/stat : 19156 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 19 0 9 0 662012912 888975360 22255 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19157] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19157/stat : 19157 (java) S 19146 19148 14689 0 -1 64 34 325 0 0 0 0 0 0 15 0 9 0 662012912 888975360 22255 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 25.41
Current children cumulated vsize (KiB) 868140

[startup+51.1022 s]
/proc/loadavg: 2.96 2.87 2.75 3/97 19161
/proc/meminfo: memFree=1544476/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=868140 CPUtime=50.99
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 30365 325 1 0 5081 18 0 0 18 0 9 0 662012907 888975360 22282 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 217035 22282 2636 9 0 211541 0
[pid=19148/tid=19150] ppid=19146 vsize=868140 CPUtime=50.52
/proc/19148/task/19150/stat : 19150 (java) R 19146 19148 14689 0 -1 64 20394 325 1 0 5039 13 0 0 25 0 9 0 662012908 888975360 22282 996147200 134512640 134550740 4294955984 18446744073709551615 4127104014 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19151] ppid=19146 vsize=868140 CPUtime=0.12
/proc/19148/task/19151/stat : 19151 (java) S 19146 19148 14689 0 -1 64 8108 325 0 0 10 2 0 0 16 0 9 0 662012910 888975360 22282 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19152] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19152/stat : 19152 (java) S 19146 19148 14689 0 -1 64 16 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22282 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19153] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19153/stat : 19153 (java) S 19146 19148 14689 0 -1 64 13 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22282 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19154] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19154/stat : 19154 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 18 0 9 0 662012912 888975360 22282 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19155] ppid=19146 vsize=868140 CPUtime=0.32
/proc/19148/task/19155/stat : 19155 (java) S 19146 19148 14689 0 -1 64 994 325 0 0 31 1 0 0 16 0 9 0 662012912 888975360 22282 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19156] ppid=19146 vsize=868140 CPUtime=0

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

/proc/19148/task/19153/stat : 19153 (java) S 19146 19148 14689 0 -1 64 13 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19154] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19154/stat : 19154 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 18 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19155] ppid=19146 vsize=868140 CPUtime=0.33
/proc/19148/task/19155/stat : 19155 (java) S 19146 19148 14689 0 -1 64 996 325 0 0 32 1 0 0 16 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19156] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19156/stat : 19156 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 19 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19157] ppid=19146 vsize=868140 CPUtime=0.28
/proc/19148/task/19157/stat : 19157 (java) S 19146 19148 14689 0 -1 64 34 325 0 0 12 16 0 0 15 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 1518.34
Current children cumulated vsize (KiB) 868140

[startup+1602.31 s]
/proc/loadavg: 1.10 2.97 3.88 2/80 19265
/proc/meminfo: memFree=1663156/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=868140 CPUtime=1578.33
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 30583 325 1 0 157786 47 0 0 18 0 9 0 662012907 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 217035 22388 2636 9 0 211541 0
[pid=19148/tid=19150] ppid=19146 vsize=868140 CPUtime=1577.44
/proc/19148/task/19150/stat : 19150 (java) R 19146 19148 14689 0 -1 64 20506 325 1 0 157720 24 0 0 25 0 9 0 662012908 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4126095722 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19151] ppid=19146 vsize=868140 CPUtime=0.25
/proc/19148/task/19151/stat : 19151 (java) S 19146 19148 14689 0 -1 64 8212 325 0 0 21 4 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19152] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19152/stat : 19152 (java) S 19146 19148 14689 0 -1 64 16 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19153] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19153/stat : 19153 (java) S 19146 19148 14689 0 -1 64 13 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19154] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19154/stat : 19154 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 18 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19155] ppid=19146 vsize=868140 CPUtime=0.33
/proc/19148/task/19155/stat : 19155 (java) S 19146 19148 14689 0 -1 64 996 325 0 0 32 1 0 0 16 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19156] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19156/stat : 19156 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 19 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19157] ppid=19146 vsize=868140 CPUtime=0.28
/proc/19148/task/19157/stat : 19157 (java) S 19146 19148 14689 0 -1 64 34 325 0 0 12 16 0 0 15 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 1578.33
Current children cumulated vsize (KiB) 868140

[startup+1662.3 s]
/proc/loadavg: 1.14 2.64 3.70 2/80 19265
/proc/meminfo: memFree=1663092/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=868140 CPUtime=1638.31
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 30584 325 1 0 163784 47 0 0 18 0 9 0 662012907 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 217035 22388 2636 9 0 211541 0
[pid=19148/tid=19150] ppid=19146 vsize=868140 CPUtime=1637.42
/proc/19148/task/19150/stat : 19150 (java) R 19146 19148 14689 0 -1 64 20507 325 1 0 163718 24 0 0 25 0 9 0 662012908 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4127116763 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19151] ppid=19146 vsize=868140 CPUtime=0.25
/proc/19148/task/19151/stat : 19151 (java) S 19146 19148 14689 0 -1 64 8212 325 0 0 21 4 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19152] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19152/stat : 19152 (java) S 19146 19148 14689 0 -1 64 16 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19153] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19153/stat : 19153 (java) S 19146 19148 14689 0 -1 64 13 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19154] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19154/stat : 19154 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 18 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19155] ppid=19146 vsize=868140 CPUtime=0.33
/proc/19148/task/19155/stat : 19155 (java) S 19146 19148 14689 0 -1 64 996 325 0 0 32 1 0 0 16 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19156] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19156/stat : 19156 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 19 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19157] ppid=19146 vsize=868140 CPUtime=0.28
/proc/19148/task/19157/stat : 19157 (java) S 19146 19148 14689 0 -1 64 34 325 0 0 12 16 0 0 15 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 1638.31
Current children cumulated vsize (KiB) 868140

[startup+1722.3 s]
/proc/loadavg: 1.12 2.35 3.54 2/80 19265
/proc/meminfo: memFree=1663156/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=868140 CPUtime=1698.3
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 30584 325 1 0 169783 47 0 0 18 0 9 0 662012907 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 217035 22388 2636 9 0 211541 0
[pid=19148/tid=19150] ppid=19146 vsize=868140 CPUtime=1697.4
/proc/19148/task/19150/stat : 19150 (java) R 19146 19148 14689 0 -1 64 20507 325 1 0 169716 24 0 0 25 0 9 0 662012908 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4127104014 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19151] ppid=19146 vsize=868140 CPUtime=0.25
/proc/19148/task/19151/stat : 19151 (java) S 19146 19148 14689 0 -1 64 8212 325 0 0 21 4 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19152] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19152/stat : 19152 (java) S 19146 19148 14689 0 -1 64 16 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19153] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19153/stat : 19153 (java) S 19146 19148 14689 0 -1 64 13 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19154] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19154/stat : 19154 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 18 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19155] ppid=19146 vsize=868140 CPUtime=0.33
/proc/19148/task/19155/stat : 19155 (java) S 19146 19148 14689 0 -1 64 996 325 0 0 32 1 0 0 16 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19156] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19156/stat : 19156 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 19 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19157] ppid=19146 vsize=868140 CPUtime=0.28
/proc/19148/task/19157/stat : 19157 (java) S 19146 19148 14689 0 -1 64 34 325 0 0 12 16 0 0 15 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 1698.3
Current children cumulated vsize (KiB) 868140

[startup+1782.3 s]
/proc/loadavg: 1.11 2.12 3.38 2/80 19265
/proc/meminfo: memFree=1663092/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=868140 CPUtime=1758.28
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 30585 325 1 0 175781 47 0 0 18 0 9 0 662012907 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 217035 22388 2636 9 0 211541 0
[pid=19148/tid=19150] ppid=19146 vsize=868140 CPUtime=1757.38
/proc/19148/task/19150/stat : 19150 (java) R 19146 19148 14689 0 -1 64 20508 325 1 0 175714 24 0 0 25 0 9 0 662012908 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4127104833 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19151] ppid=19146 vsize=868140 CPUtime=0.25
/proc/19148/task/19151/stat : 19151 (java) S 19146 19148 14689 0 -1 64 8212 325 0 0 21 4 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19152] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19152/stat : 19152 (java) S 19146 19148 14689 0 -1 64 16 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19153] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19153/stat : 19153 (java) S 19146 19148 14689 0 -1 64 13 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19154] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19154/stat : 19154 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 18 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19155] ppid=19146 vsize=868140 CPUtime=0.33
/proc/19148/task/19155/stat : 19155 (java) S 19146 19148 14689 0 -1 64 996 325 0 0 32 1 0 0 16 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19156] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19156/stat : 19156 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 19 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19157] ppid=19146 vsize=868140 CPUtime=0.28
/proc/19148/task/19157/stat : 19157 (java) S 19146 19148 14689 0 -1 64 34 325 0 0 12 16 0 0 15 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 1758.28
Current children cumulated vsize (KiB) 868140



Maximum CPU time exceeded: sending SIGTERM then SIGKILL

[startup+1824.1 s]
/proc/loadavg: 1.24 2.02 3.29 2/80 19265
/proc/meminfo: memFree=1663028/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=868140 CPUtime=1800.08
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 30585 325 1 0 179961 47 0 0 18 0 9 0 662012907 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 217035 22388 2636 9 0 211541 0
[pid=19148/tid=19150] ppid=19146 vsize=868140 CPUtime=1799.18
/proc/19148/task/19150/stat : 19150 (java) R 19146 19148 14689 0 -1 64 20508 325 1 0 179894 24 0 0 25 0 9 0 662012908 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4127108516 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19151] ppid=19146 vsize=868140 CPUtime=0.25
/proc/19148/task/19151/stat : 19151 (java) S 19146 19148 14689 0 -1 64 8212 325 0 0 21 4 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19152] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19152/stat : 19152 (java) S 19146 19148 14689 0 -1 64 16 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19153] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19153/stat : 19153 (java) S 19146 19148 14689 0 -1 64 13 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19154] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19154/stat : 19154 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 18 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19155] ppid=19146 vsize=868140 CPUtime=0.33
/proc/19148/task/19155/stat : 19155 (java) S 19146 19148 14689 0 -1 64 996 325 0 0 32 1 0 0 16 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19156] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19156/stat : 19156 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 19 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19157] ppid=19146 vsize=868140 CPUtime=0.28
/proc/19148/task/19157/stat : 19157 (java) S 19146 19148 14689 0 -1 64 34 325 0 0 12 16 0 0 15 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 1800.08
Current children cumulated vsize (KiB) 868140

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

Solver just ended. Dumping a history of the last processes samples

[startup+1824.1 s]
/proc/loadavg: 1.24 2.02 3.29 2/80 19265
/proc/meminfo: memFree=1663028/2055920 swapFree=4149828/4192956
[pid=19148] ppid=19146 vsize=868140 CPUtime=1800.08
/proc/19148/stat : 19148 (java) S 19146 19148 14689 0 -1 0 30585 325 1 0 179961 47 0 0 18 0 9 0 662012907 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/19148/statm: 217035 22388 2636 9 0 211541 0
[pid=19148/tid=19150] ppid=19146 vsize=868140 CPUtime=1799.18
/proc/19148/task/19150/stat : 19150 (java) R 19146 19148 14689 0 -1 64 20508 325 1 0 179894 24 0 0 25 0 9 0 662012908 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4127108516 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19151] ppid=19146 vsize=868140 CPUtime=0.25
/proc/19148/task/19151/stat : 19151 (java) S 19146 19148 14689 0 -1 64 8212 325 0 0 21 4 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19152] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19152/stat : 19152 (java) S 19146 19148 14689 0 -1 64 16 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19153] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19153/stat : 19153 (java) S 19146 19148 14689 0 -1 64 13 325 0 0 0 0 0 0 16 0 9 0 662012910 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19154] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19154/stat : 19154 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 18 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19155] ppid=19146 vsize=868140 CPUtime=0.33
/proc/19148/task/19155/stat : 19155 (java) S 19146 19148 14689 0 -1 64 996 325 0 0 32 1 0 0 16 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=19148/tid=19156] ppid=19146 vsize=868140 CPUtime=0
/proc/19148/task/19156/stat : 19156 (java) S 19146 19148 14689 0 -1 64 1 325 0 0 0 0 0 0 19 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=19148/tid=19157] ppid=19146 vsize=868140 CPUtime=0.28
/proc/19148/task/19157/stat : 19157 (java) S 19146 19148 14689 0 -1 64 34 325 0 0 12 16 0 0 15 0 9 0 662012912 888975360 22388 996147200 134512640 134550740 4294955984 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 1800.08
Current children cumulated vsize (KiB) 868140

Child status: 143
Real time (s): 1824.14
CPU time (s): 1800.14
CPU user time (s): 1799.64
CPU system time (s): 0.496924
CPU usage (%): 98.6842
Max. virtual memory (cumulated for all children) (KiB): 868140

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 1799.64
system time used= 0.496924
maximum resident set size= 0
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 30939
page faults= 1
swaps= 0
block input operations= 0
block output operations= 0
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 39133
involuntary context switches= 57697

runsolver used 8.90765 second user time and 18.9881 second system time

The end

Launcher Data (download as text)

Begin job on node90 at 2008-07-03 07:27:43
IDJOB=1056374
IDBENCH=57646
IDSOLVER=363
FILE ID=node90/1056374-1215062862
PBS_JOBID= 7874997
Free space on /tmp= 65528 MiB

SOLVER NAME= Abscon 112v4 AC
BENCH NAME= CPAI08/csp/os-gp/normalized-gp10-07-1079.xml
COMMAND LINE= java -Xms756M -Xmx756M -XX:PermSize=10m -XX:MaxPermSize=10m -cp abscon112V4.jar abscon.Resolution mac.xml 1 XSax BENCHNAME
RUNSOLVER COMMAND LINE= /home/evaluation/evaluation/pub/bin/runsolver --timestamp -w /tmp/evaluation-result-1056374-1215062862/watcher-1056374-1215062862 -o /tmp/evaluation-result-1056374-1215062862/solver-1056374-1215062862 -C 1800 -W 2200 -M 900 --output-limit 1,15  java -Xms756M -Xmx756M -XX:PermSize=10m -XX:MaxPermSize=10m -cp abscon112V4.jar abscon.Resolution mac.xml 1 XSax HOME/instance-1056374-1215062862.xml

TIME LIMIT= 1800 seconds
MEMORY LIMIT= 900 MiB

MD5SUM BENCH= b79d5ab9b474e138388bd882c1eb4f79
RANDOM SEED=673141153

node90.alineos.net Linux 2.6.9-22.EL.rootsmp #1 SMP Mon Oct 3 08:59:52 CEST 2005

/proc/cpuinfo:
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 15
model		: 4
model name	:                   Intel(R) Xeon(TM) CPU 3.00GHz
stepping	: 3
cpu MHz		: 3000.236
cache size	: 2048 KB
fpu		: yes
fpu_exception	: yes
cpuid level	: 5
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 syscall nx lm pni monitor ds_cpl cid cx16 xtpr
bogomips	: 5914.62
clflush size	: 64
cache_alignment	: 128
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 15
model		: 4
model name	:                   Intel(R) Xeon(TM) CPU 3.00GHz
stepping	: 3
cpu MHz		: 3000.236
cache size	: 2048 KB
fpu		: yes
fpu_exception	: yes
cpuid level	: 5
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 syscall nx lm pni monitor ds_cpl cid cx16 xtpr
bogomips	: 5996.54
clflush size	: 64
cache_alignment	: 128
address sizes	: 36 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:      2055920 kB
MemFree:       1624900 kB
Buffers:         33024 kB
Cached:         179348 kB
SwapCached:      37324 kB
Active:         276212 kB
Inactive:        84940 kB
HighTotal:           0 kB
HighFree:            0 kB
LowTotal:      2055920 kB
LowFree:       1624900 kB
SwapTotal:     4192956 kB
SwapFree:      4149828 kB
Dirty:            2592 kB
Writeback:           0 kB
Mapped:         163848 kB
Slab:            54240 kB
Committed_AS:  1585940 kB
PageTables:       2624 kB
VmallocTotal: 536870911 kB
VmallocUsed:    264952 kB
VmallocChunk: 536605679 kB
HugePages_Total:     0
HugePages_Free:      0
Hugepagesize:     2048 kB

Free space on /tmp at the end= 65540 MiB
End job on node90 at 2008-07-03 07:58:09