Trace number 1080829

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
SAT4J CSP 2008-06-13? (exit code) 277.464 278.908

General information on the benchmark

Namecsp/js-taillard-20-15/
normalized-js-taillard-20-15-95-2.xml
MD5SUM585e418ff9a750c634826a9ec19df97c
Bench Category2-ARY-INT (binary constraints in intension)
Best result obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark
Satisfiable
(Un)Satisfiability was proved
Number of variables300
Number of constraints3130
Maximum constraint arity2
Maximum domain size1300
Number of constraints which are defined in extension0
Number of constraints which are defined in intension3130
Global constraints used (with number of constraints)

Solver Data (download as text)

0.19/0.28	c SAT4J: a SATisfiability library for Java (c) 2004-2008 Daniel Le Berre
0.19/0.28	c This is free software under the dual EPL/GNU LGPL licenses.
0.19/0.28	c See www.sat4j.org for details.
0.19/0.28	c That software uses the Rhino library from the Mozilla project.
0.29/0.32	c version 9.9.9.token
0.29/0.32	c sun.arch.data.model	32
0.29/0.32	c java.version	1.6.0_06
0.29/0.32	c os.name	Linux
0.29/0.32	c os.version	2.6.9-22.EL.rootsmp
0.29/0.32	c os.arch	i386
0.29/0.32	c Free memory 669864272
0.29/0.32	c Max memory 672137216
0.29/0.32	c Total memory 672137216
0.29/0.32	c Number of processors 2
0.29/0.37	c c --- Begin Solver configuration ---
0.29/0.37	c Stops conflict analysis at the first Unique Implication Point
0.29/0.37	c org.sat4j.minisat.constraints.MixedDataStructureDaniel@1d2068d
0.29/0.37	c Learn all clauses as in MiniSAT
0.29/0.37	c claDecay=0.999 varDecay=0.95 conflictBoundIncFactor=1.5 initConflictBound=100 
0.29/0.37	c VSIDS like heuristics from MiniSAT using a heap phase appearing in latest learned clause
0.29/0.37	c Expensive reason simplification
0.29/0.37	c MiniSAT restarts strategy
0.29/0.37	c timeout=2147483s
0.29/0.37	c DB Simplification allowed=false
0.29/0.37	c --- End Solver configuration ---
0.29/0.37	c solving HOME/instance-1080829-1215213385.xml
0.29/0.37	c reading problem ... 
0.59/0.62	c reading problem named null
0.59/0.62	c reading domains done.
0.79/0.84	c reading variables done.
1.59/1.63	c reading predicates  done.
1.69/1.80	c reading constraints
272.41/273.88	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
272.41/273.88		at org.sat4j.minisat.constraints.cnf.WLClause.(WLClause.java:62)
272.41/273.88		at org.sat4j.minisat.constraints.cnf.OriginalWLClause.(OriginalWLClause.java:37)
272.41/273.88		at org.sat4j.minisat.constraints.cnf.OriginalWLClause.brandNewClause(OriginalWLClause.java:78)
272.41/273.88		at org.sat4j.minisat.constraints.MixedDataStructureDaniel.createClause(MixedDataStructureDaniel.java:69)
272.41/273.88		at org.sat4j.minisat.core.Solver.addClause(Solver.java:303)
272.41/273.88		at org.sat4j.csp.encodings.BinarySupportEncoding.generateClauses(BinarySupportEncoding.java:98)
272.41/273.88		at org.sat4j.csp.encodings.BinarySupportEncoding.onFinish(BinarySupportEncoding.java:53)
272.41/273.88		at org.sat4j.csp.Predicate.toClause(Predicate.java:110)
272.41/273.88		at org.sat4j.reader.CSPReader.endConstraint(CSPReader.java:479)
272.41/273.88		at org.sat4j.csp.xml.Constraint.endElement(Constraint.java:50)
272.41/273.88		at org.sat4j.csp.xml.InstanceParser.endElement(InstanceParser.java:49)
272.41/273.88		at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)
272.41/273.88		at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator.endElement(Unknown Source)
272.41/273.88		at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
272.41/273.88		at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)
272.41/273.88		at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)
272.41/273.88		at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
272.41/273.88		at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
272.41/273.88		at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
272.41/273.88		at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
272.41/273.88		at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
272.41/273.88		at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
272.41/273.88		at org.sat4j.csp.xml.CspXmlParser.parse(CspXmlParser.java:62)
272.41/273.88		at org.sat4j.reader.XMLCSPReader.parseInstance(XMLCSPReader.java:62)
272.41/273.88		at org.sat4j.AbstractLauncher.readProblem(AbstractLauncher.java:174)
272.41/273.88		at org.sat4j.AbstractLauncher.run(AbstractLauncher.java:194)
272.41/273.89		at org.sat4j.csp.CSPLauncher.main(CSPLauncher.java:74)
274.90/276.32	Exception in thread "Thread-0" java.lang.OutOfMemoryError: GC overhead limit exceeded
277.29/278.75		at java.util.Arrays.copyOfRange(Unknown Source)
277.29/278.75		at java.lang.String.(Unknown Source)
277.29/278.75		at java.lang.StringBuilder.toString(Unknown Source)
277.29/278.75		at org.sat4j.minisat.core.SolverStats.printStat(SolverStats.java:91)
277.29/278.75		at org.sat4j.minisat.core.Solver.printStat(Solver.java:1232)
277.29/278.75		at org.sat4j.AbstractLauncher.displayResult(AbstractLauncher.java:94)
277.29/278.75		at org.sat4j.AbstractLauncher$1.run(AbstractLauncher.java:79)

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-1080829-1215213385/watcher-1080829-1215213385 -o /tmp/evaluation-result-1080829-1215213385/solver-1080829-1215213385 -C 1800 -W 2200 -M 900 --output-limit 1,15 java6 -server -Xms650m -Xmx650m -jar HOME/sat4jcsp.jar HOME/instance-1080829-1215213385.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: 2.20 2.19 2.08 3/72 4490
/proc/meminfo: memFree=1574784/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=152 CPUtime=0
/proc/4490/stat : 4490 (java) R 4488 4490 2130 0 -1 0 211 0 0 0 0 0 0 0 18 0 1 0 2000312920 155648 26 996147200 134512640 134550740 4294956016 18446744073709551615 7484196 0 0 4096 0 0 0 0 17 0 0 0
/proc/4490/statm: 38 26 19 9 0 4 0

[startup+0.0423549 s]
/proc/loadavg: 2.20 2.19 2.08 3/72 4490
/proc/meminfo: memFree=1574784/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=802080 CPUtime=0.03
/proc/4490/stat : 4490 (java) S 4488 4490 2130 0 -1 0 2556 0 1 0 2 1 0 0 18 0 7 0 2000312920 821329920 2292 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16784584 18446744073709551615 0 0 17 0 0 0
/proc/4490/statm: 200520 2293 977 9 0 197903 0
Current children cumulated CPU time (s) 0.03
Current children cumulated vsize (KiB) 802080

[startup+0.102364 s]
/proc/loadavg: 2.20 2.19 2.08 3/72 4490
/proc/meminfo: memFree=1574784/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=804756 CPUtime=0.09
/proc/4490/stat : 4490 (java) S 4488 4490 2130 0 -1 0 3220 0 1 0 7 2 0 0 18 0 12 0 2000312920 824070144 2951 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0
/proc/4490/statm: 201189 2952 1215 9 0 198558 0
Current children cumulated CPU time (s) 0.09
Current children cumulated vsize (KiB) 804756

[startup+0.301401 s]
/proc/loadavg: 2.20 2.19 2.08 3/72 4490
/proc/meminfo: memFree=1574784/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=808464 CPUtime=0.29
/proc/4490/stat : 4490 (java) S 4488 4490 2130 0 -1 0 5003 0 1 0 26 3 0 0 18 0 12 0 2000312920 827867136 4332 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0
/proc/4490/statm: 202116 4332 1310 9 0 199485 0
Current children cumulated CPU time (s) 0.29
Current children cumulated vsize (KiB) 808464

[startup+0.702475 s]
/proc/loadavg: 2.20 2.19 2.08 3/72 4490
/proc/meminfo: memFree=1574784/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=809516 CPUtime=0.69
/proc/4490/stat : 4490 (java) S 4488 4490 2130 0 -1 0 6824 0 1 0 63 6 0 0 18 0 12 0 2000312920 828944384 5640 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0
/proc/4490/statm: 202379 5640 1335 9 0 199741 0
Current children cumulated CPU time (s) 0.69
Current children cumulated vsize (KiB) 809516

[startup+1.50163 s]
/proc/loadavg: 2.20 2.19 2.08 4/84 4502
/proc/meminfo: memFree=1546976/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=813364 CPUtime=1.49
/proc/4490/stat : 4490 (java) S 4488 4490 2130 0 -1 0 31975 0 1 0 133 16 0 0 18 0 12 0 2000312920 832884736 29654 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0
/proc/4490/statm: 203341 29657 1347 9 0 200703 0
[pid=4490/tid=4492] ppid=4488 vsize=813364 CPUtime=0.69
/proc/4490/task/4492/stat : 4492 (java) R 4488 4490 2130 0 -1 64 17013 0 1 0 61 8 0 0 25 0 12 0 2000312922 832884736 29658 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4493] ppid=4488 vsize=813364 CPUtime=0.11
/proc/4490/task/4493/stat : 4493 (java) R 4488 4490 2130 0 -1 64 5626 0 0 0 9 2 0 0 17 0 12 0 2000312922 832884736 29660 996147200 134512640 134550740 4294956016 18446744073709551615 106160180 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4494] ppid=4488 vsize=813364 CPUtime=0.13
/proc/4490/task/4494/stat : 4494 (java) R 4488 4490 2130 0 -1 64 5891 0 0 0 11 2 0 0 17 0 12 0 2000312922 832884736 29661 996147200 134512640 134550740 4294956016 18446744073709551615 106160148 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4495] ppid=4488 vsize=813364 CPUtime=0
/proc/4490/task/4495/stat : 4495 (java) S 4488 4490 2130 0 -1 64 2 0 0 0 0 0 0 0 16 0 12 0 2000312924 832884736 29663 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4496] ppid=4488 vsize=813364 CPUtime=0
/proc/4490/task/4496/stat : 4496 (java) S 4488 4490 2130 0 -1 64 8 0 0 0 0 0 0 0 24 0 12 0 2000312925 832884736 29664 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4497] ppid=4488 vsize=813364 CPUtime=0
/proc/4490/task/4497/stat : 4497 (java) S 4488 4490 2130 0 -1 64 4 0 0 0 0 0 0 0 25 0 12 0 2000312925 832884736 29666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4498] ppid=4488 vsize=813364 CPUtime=0
/proc/4490/task/4498/stat : 4498 (java) S 4488 4490 2130 0 -1 64 2 0 0 0 0 0 0 0 25 0 12 0 2000312929 832884736 29668 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4499] ppid=4488 vsize=813364 CPUtime=0.28
/proc/4490/task/4499/stat : 4499 (java) S 4488 4490 2130 0 -1 64 1703 0 0 0 28 0 0 0 16 0 12 0 2000312929 832884736 29669 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4500] ppid=4488 vsize=813364 CPUtime=0.22
/proc/4490/task/4500/stat : 4500 (java) S 4488 4490 2130 0 -1 64 988 0 0 0 22 0 0 0 16 0 12 0 2000312929 832884736 29671 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4501] ppid=4488 vsize=813364 CPUtime=0
/proc/4490/task/4501/stat : 4501 (java) S 4488 4490 2130 0 -1 64 0 0 0 0 0 0 0 0 25 0 12 0 2000312929 832884736 29673 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4502] ppid=4488 vsize=813364 CPUtime=0
/proc/4490/task/4502/stat : 4502 (java) S 4488 4490 2130 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 2000312929 832884736 29674 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 1.49
Current children cumulated vsize (KiB) 813364

[startup+3.10293 s]
/proc/loadavg: 2.20 2.19 2.08 4/84 4502
/proc/meminfo: memFree=1442592/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=822280 CPUtime=3.25
/proc/4490/stat : 4490 (java) S 4488 4490 2130 0 -1 0 47647 0 1 0 302 23 0 0 18 0 12 0 2000312920 842014720 41853 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0
/proc/4490/statm: 205570 41853 1381 9 0 202932 0
[pid=4490/tid=4492] ppid=4488 vsize=822280 CPUtime=1.39
/proc/4490/task/4492/stat : 4492 (java) R 4488 4490 2130 0 -1 64 17291 0 1 0 130 9 0 0 23 0 12 0 2000312922 842014720 41853 996147200 134512640 134550740 4294956016 18446744073709551615 4109741243 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4493] ppid=4488 vsize=822280 CPUtime=0.38
/proc/4490/task/4493/stat : 4493 (java) S 4488 4490 2130 0 -1 64 11636 0 0 0 33 5 0 0 16 0 12 0 2000312922 842014720 41853 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4494] ppid=4488 vsize=822280 CPUtime=0.37
/proc/4490/task/4494/stat : 4494 (java) S 4488 4490 2130 0 -1 64 11140 0 0 0 33 4 0 0 16 0 12 0 2000312922 842014720 41853 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4495] ppid=4488 vsize=822280 CPUtime=0
/proc/4490/task/4495/stat : 4495 (java) S 4488 4490 2130 0 -1 64 31 0 0 0 0 0 0 0 16 0 12 0 2000312924 842014720 41853 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4496] ppid=4488 vsize=822280 CPUtime=0
/proc/4490/task/4496/stat : 4496 (java) S 4488 4490 2130 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 2000312925 842014720 41853 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4497] ppid=4488 vsize=822280 CPUtime=0
/proc/4490/task/4497/stat : 4497 (java) S 4488 4490 2130 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 2000312925 842014720 41853 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4498] ppid=4488 vsize=822280 CPUtime=0
/proc/4490/task/4498/stat : 4498 (java) S 4488 4490 2130 0 -1 64 2 0 0 0 0 0 0 0 25 0 12 0 2000312929 842014720 41853 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4499] ppid=4488 vsize=822280 CPUtime=0.42
/proc/4490/task/4499/stat : 4499 (java) S 4488 4490 2130 0 -1 64 1954 0 0 0 42 0 0 0 16 0 12 0 2000312929 842014720 41853 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4500] ppid=4488 vsize=822280 CPUtime=0.64
/proc/4490/task/4500/stat : 4500 (java) S 4488 4490 2130 0 -1 64 4832 0 0 0 62 2 0 0 18 0 12 0 2000312929 842014720 41853 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4501] ppid=4488 vsize=822280 CPUtime=0
/proc/4490/task/4501/stat : 4501 (java) S 4488 4490 2130 0 -1 64 0 0 0 0 0 0 0 0 25 0 12 0 2000312929 842014720 41853 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4502] ppid=4488 vsize=822280 CPUtime=0
/proc/4490/task/4502/stat : 4502 (java) S 4488 4490 2130 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 2000312929 842014720 41853 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 3.25
Current children cumulated vsize (KiB) 822280

[startup+6.30253 s]
/proc/loadavg: 2.34 2.22 2.09 3/84 4502
/proc/meminfo: memFree=1404192/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=823144 CPUtime=6.44
/proc/4490/stat : 4490 (java) S 4488 4490 2130 0 -1 0 53398 0 1 0 618 26 0 0 18 0 12 0 2000312920 842899456 45494 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0
/proc/4490/statm: 205786 45494 1387 9 0 203148 0
[pid=4490/tid=4492] ppid=4488 vsize=823144 CPUtime=3.94
/proc/4490/task/4492/stat : 4492 (java) R 4488 4490 2130 0 -1 64 17300 0 1 0 385 9 0 0 25 0 12 0 2000312922 842899456 45494 996147200 134512640 134550740 4294956016 18446744073709551615 4109724689 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4493] ppid=4488 vsize=823144 CPUtime=0.47
/proc/4490/task/4493/stat : 4493 (java) S 4488 4490 2130 0 -1 64 13849 0 0 0 41 6 0 0 16 0 12 0 2000312922 842899456 45494 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4494] ppid=4488 vsize=823144 CPUtime=0.43
/proc/4490/task/4494/stat : 4494 (java) S 4488 4490 2130 0 -1 64 12726 0 0 0 38 5 0 0 16 0 12 0 2000312922 842899456 45494 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4495] ppid=4488 vsize=823144 CPUtime=0
/proc/4490/task/4495/stat : 4495 (java) S 4488 4490 2130 0 -1 64 32 0 0 0 0 0 0 0 16 0 12 0 2000312924 842899456 45494 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4496] ppid=4488 vsize=823144 CPUtime=0
/proc/4490/task/4496/stat : 4496 (java) S 4488 4490 2130 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 2000312925 842899456 45494 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4497] ppid=4488 vsize=823144 CPUtime=0
/proc/4490/task/4497/stat : 4497 (java) S 4488 4490 2130 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 2000312925 842899456 45494 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4498] ppid=4488 vsize=823144 CPUtime=0
/proc/4490/task/4498/stat : 4498 (java) S 4488 4490 2130 0 -1 64 2 0 0 0 0 0 0 0 25 0 12 0 2000312929 842899456 45494 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4499] ppid=4488 vsize=823144 CPUtime=0.82
/proc/4490/task/4499/stat : 4499 (java) S 4488 4490 2130 0 -1 64 3878 0 0 0 81 1 0 0 17 0 12 0 2000312929 842899456 45494 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4500] ppid=4488 vsize=823144 CPUtime=0.72
/proc/4490/task/4500/stat : 4500 (java) S 4488 4490 2130 0 -1 64 4850 0 0 0 70 2 0 0 16 0 12 0 2000312929 842899456 45494 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4501] ppid=4488 vsize=823144 CPUtime=0
/proc/4490/task/4501/stat : 4501 (java) S 4488 4490 2130 0 -1 64 0 0 0 0 0 0 0 0 25 0 12 0 2000312929 842899456 45494 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4502] ppid=4488 vsize=823144 CPUtime=0
/proc/4490/task/4502/stat : 4502 (java) S 4488 4490 2130 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 2000312929 842899456 45494 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 6.44
Current children cumulated vsize (KiB) 823144

[startup+12.7017 s]
/proc/loadavg: 2.55 2.27 2.10 3/84 4502
/proc/meminfo: memFree=1352416/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=823144 CPUtime=12.79
/proc/4490/stat : 4490 (java) S 4488 4490 2130 0 -1 0 65205 0 1 0 1248 31 0 0 18 0 12 0 2000312920 842899456 57248 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0
/proc/4490/statm: 205786 57248 1387 9 0 203148 0
[pid=4490/tid=4492] ppid=4488 vsize=823144 CPUtime=10.02
/proc/4490/task/4492/stat : 4492 (java) R 4488 4490 2130 0 -1 64 17322 0 1 0 993 9 0 0 25 0 12 0 2000312922 842899456 57248 996147200 134512640 134550740 4294956016 18446744073709551615 4109724670 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4493] ppid=4488 vsize=823144 CPUtime=0.59
/proc/4490/task/4493/stat : 4493 (java) S 4488 4490 2130 0 -1 64 19494 0 0 0 51 8 0 0 16 0 12 0 2000312922 842899456 57248 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4494] ppid=4488 vsize=823144 CPUtime=0.55
/proc/4490/task/4494/stat : 4494 (java) S 4488 4490 2130 0 -1 64 18866 0 0 0 48 7 0 0 16 0 12 0 2000312922 842899456 57248 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4495] ppid=4488 vsize=823144 CPUtime=0.01
/proc/4490/task/4495/stat : 4495 (java) S 4488 4490 2130 0 -1 64 32 0 0 0 1 0 0 0 16 0 12 0 2000312924 842899456 57248 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4496] ppid=4488 vsize=823144 CPUtime=0
/proc/4490/task/4496/stat : 4496 (java) S 4488 4490 2130 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 2000312925 842899456 57248 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4497] ppid=4488 vsize=823144 CPUtime=0
/proc/4490/task/4497/stat : 4497 (java) S 4488 4490 2130 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 2000312925 842899456 57248 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4498] ppid=4488 vsize=823144 CPUtime=0
/proc/4490/task/4498/stat : 4498 (java) S 4488 4490 2130 0 -1 64 2 0 0 0 0 0 0 0 25 0 12 0 2000312929 842899456 57248 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4499] ppid=4488 vsize=823144 CPUtime=0.82
/proc/4490/task/4499/stat : 4499 (java) S 4488 4490 2130 0 -1 64 3878 0 0 0 81 1 0 0 17 0 12 0 2000312929 842899456 57248 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4500] ppid=4488 vsize=823144 CPUtime=0.72
/proc/4490/task/4500/stat : 4500 (java) S 4488 4490 2130 0 -1 64 4850 0 0 0 70 2 0 0 16 0 12 0 2000312929 842899456 57248 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4501] ppid=4488 vsize=823144 CPUtime=0
/proc/4490/task/4501/stat : 4501 (java) S 4488 4490 2130 0 -1 64 0 0 0 0 0 0 0 0 25 0 12 0 2000312929 842899456 57248 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4502] ppid=4488 vsize=823144 CPUtime=0
/proc/4490/task/4502/stat : 4502 (java) S 4488 4490 2130 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 2000312929 842899456 57248 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 12.79
Current children cumulated vsize (KiB) 823144

[startup+25.5021 s]
/proc/loadavg: 2.43 2.25 2.10 3/84 4502
/proc/meminfo: memFree=1264864/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=821200 CPUtime=25.47
/proc/4490/stat : 4490 (java) S 4488 4490 2130 0 -1 0 86954 0 1 0 2506 41 0 0 18 0 12 0 2000312920 840908800 78501 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0
/proc/4490/statm: 205300 78501 1387 9 0 202662 0
[pid=4490/tid=4492] ppid=4488 vsize=821200 CPUtime=22.26
/proc/4490/task/4492/stat : 4492 (java) R 4488 4490 2130 0 -1 64 17349 0 1 0 2217 9 0 0 25 0 12 0 2000312922 840908800 78501 996147200 134512640 134550740 4294956016 18446744073709551615 4109685708 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4493] ppid=4488 vsize=821200 CPUtime=0.78
/proc/4490/task/4493/stat : 4493 (java) S 4488 4490 2130 0 -1 64 28453 0 0 0 66 12 0 0 16 0 12 0 2000312922 840908800 78501 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4494] ppid=4488 vsize=821200 CPUtime=0.76
/proc/4490/task/4494/stat : 4494 (java) S 4488 4490 2130 0 -1 64 31628 0 0 0 63 13 0 0 16 0 12 0 2000312922 840908800 78501 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4495] ppid=4488 vsize=821200 CPUtime=0.01
/proc/4490/task/4495/stat : 4495 (java) S 4488 4490 2130 0 -1 64 32 0 0 0 1 0 0 0 15 0 12 0 2000312924 840908800 78501 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4496] ppid=4488 vsize=821200 CPUtime=0
/proc/4490/task/4496/stat : 4496 (java) S 4488 4490 2130 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 2000312925 840908800 78501 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4497] ppid=4488 vsize=821200 CPUtime=0
/proc/4490/task/4497/stat : 4497 (java) S 4488 4490 2130 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 2000312925 840908800 78501 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4498] ppid=4488 vsize=821200 CPUtime=0
/proc/4490/task/4498/stat : 4498 (java) S 4488 4490 2130 0 -1 64 2 0 0 0 0 0 0 0 25 0 12 0 2000312929 840908800 78501 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0

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

/proc/loadavg: 2.52 2.24 2.12 4/84 4502
/proc/meminfo: memFree=875296/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=825204 CPUtime=267.34
/proc/4490/stat : 4490 (java) S 4488 4490 2130 0 -1 0 291939 0 1 0 26594 140 0 0 18 0 12 0 2000312920 845008896 175631 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0
/proc/4490/statm: 206301 175631 1390 9 0 203663 0
[pid=4490/tid=4492] ppid=4488 vsize=825204 CPUtime=219.04
/proc/4490/task/4492/stat : 4492 (java) R 4488 4490 2130 0 -1 64 17784 0 1 0 21893 11 0 0 25 0 12 0 2000312922 845008896 175631 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4493] ppid=4488 vsize=825204 CPUtime=4.04
/proc/4490/task/4493/stat : 4493 (java) S 4488 4490 2130 0 -1 64 78109 0 0 0 372 32 0 0 15 0 12 0 2000312922 845008896 175631 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4494] ppid=4488 vsize=825204 CPUtime=4.25
/proc/4490/task/4494/stat : 4494 (java) S 4488 4490 2130 0 -1 64 77745 0 0 0 392 33 0 0 16 0 12 0 2000312922 845008896 175631 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4495] ppid=4488 vsize=825204 CPUtime=38.34
/proc/4490/task/4495/stat : 4495 (java) R 4488 4490 2130 0 -1 64 108807 0 0 0 3777 57 0 0 17 0 12 0 2000312924 845008896 175631 996147200 134512640 134550740 4294956016 18446744073709551615 106122234 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4496] ppid=4488 vsize=825204 CPUtime=0
/proc/4490/task/4496/stat : 4496 (java) S 4488 4490 2130 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 2000312925 845008896 175631 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4497] ppid=4488 vsize=825204 CPUtime=0
/proc/4490/task/4497/stat : 4497 (java) S 4488 4490 2130 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 2000312925 845008896 175631 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4498] ppid=4488 vsize=825204 CPUtime=0
/proc/4490/task/4498/stat : 4498 (java) S 4488 4490 2130 0 -1 64 2 0 0 0 0 0 0 0 25 0 12 0 2000312929 845008896 175631 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4499] ppid=4488 vsize=825204 CPUtime=0.85
/proc/4490/task/4499/stat : 4499 (java) S 4488 4490 2130 0 -1 64 3881 0 0 0 84 1 0 0 17 0 12 0 2000312929 845008896 175631 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4500] ppid=4488 vsize=825204 CPUtime=0.75
/proc/4490/task/4500/stat : 4500 (java) S 4488 4490 2130 0 -1 64 4850 0 0 0 73 2 0 0 17 0 12 0 2000312929 845008896 175631 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4501] ppid=4488 vsize=825204 CPUtime=0
/proc/4490/task/4501/stat : 4501 (java) S 4488 4490 2130 0 -1 64 0 0 0 0 0 0 0 0 25 0 12 0 2000312929 845008896 175631 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4502] ppid=4488 vsize=825204 CPUtime=0
/proc/4490/task/4502/stat : 4502 (java) S 4488 4490 2130 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 2000312929 845008896 175631 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 267.34
Current children cumulated vsize (KiB) 825204

[startup+275.103 s]
/proc/loadavg: 2.48 2.24 2.12 3/85 4503
/proc/meminfo: memFree=879128/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=825528 CPUtime=273.71
/proc/4490/stat : 4490 (java) S 4488 4490 2130 0 -1 0 305499 0 1 0 27224 147 0 0 18 0 13 0 2000312920 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0
/proc/4490/statm: 206382 175666 1390 9 0 203744 0
[pid=4490/tid=4492] ppid=4488 vsize=825528 CPUtime=219.08
/proc/4490/task/4492/stat : 4492 (java) S 4488 4490 2130 0 -1 64 17794 0 1 0 21897 11 0 0 18 0 13 0 2000312922 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4493] ppid=4488 vsize=825528 CPUtime=4.04
/proc/4490/task/4493/stat : 4493 (java) S 4488 4490 2130 0 -1 64 78109 0 0 0 372 32 0 0 15 0 13 0 2000312922 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4494] ppid=4488 vsize=825528 CPUtime=4.25
/proc/4490/task/4494/stat : 4494 (java) S 4488 4490 2130 0 -1 64 77745 0 0 0 392 33 0 0 16 0 13 0 2000312922 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4495] ppid=4488 vsize=825528 CPUtime=44.67
/proc/4490/task/4495/stat : 4495 (java) R 4488 4490 2130 0 -1 64 122350 0 0 0 4403 64 0 0 25 0 13 0 2000312924 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 106122234 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4496] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4496/stat : 4496 (java) S 4488 4490 2130 0 -1 64 10 0 0 0 0 0 0 0 15 0 13 0 2000312925 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4497] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4497/stat : 4497 (java) S 4488 4490 2130 0 -1 64 6 0 0 0 0 0 0 0 16 0 13 0 2000312925 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4498] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4498/stat : 4498 (java) S 4488 4490 2130 0 -1 64 2 0 0 0 0 0 0 0 25 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4499] ppid=4488 vsize=825528 CPUtime=0.85
/proc/4490/task/4499/stat : 4499 (java) S 4488 4490 2130 0 -1 64 3881 0 0 0 84 1 0 0 17 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4500] ppid=4488 vsize=825528 CPUtime=0.75
/proc/4490/task/4500/stat : 4500 (java) S 4488 4490 2130 0 -1 64 4850 0 0 0 73 2 0 0 17 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4501] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4501/stat : 4501 (java) S 4488 4490 2130 0 -1 64 0 0 0 0 0 0 0 0 25 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4502] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4502/stat : 4502 (java) S 4488 4490 2130 0 -1 64 1 0 0 0 0 0 0 0 15 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4503] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4503/stat : 4503 (java) S 4488 4490 2130 0 -1 64 7 0 0 0 0 0 0 0 16 0 13 0 2000340310 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 273.71
Current children cumulated vsize (KiB) 825528

[startup+276.701 s]
/proc/loadavg: 2.48 2.24 2.12 3/85 4503
/proc/meminfo: memFree=875352/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=825528 CPUtime=275.3
/proc/4490/stat : 4490 (java) S 4488 4490 2130 0 -1 0 307503 0 1 0 27382 148 0 0 18 0 13 0 2000312920 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0
/proc/4490/statm: 206382 175666 1390 9 0 203744 0
[pid=4490/tid=4492] ppid=4488 vsize=825528 CPUtime=219.08
/proc/4490/task/4492/stat : 4492 (java) S 4488 4490 2130 0 -1 64 17794 0 1 0 21897 11 0 0 18 0 13 0 2000312922 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4493] ppid=4488 vsize=825528 CPUtime=4.04
/proc/4490/task/4493/stat : 4493 (java) S 4488 4490 2130 0 -1 64 78109 0 0 0 372 32 0 0 15 0 13 0 2000312922 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4494] ppid=4488 vsize=825528 CPUtime=4.25
/proc/4490/task/4494/stat : 4494 (java) S 4488 4490 2130 0 -1 64 77745 0 0 0 392 33 0 0 16 0 13 0 2000312922 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4495] ppid=4488 vsize=825528 CPUtime=46.27
/proc/4490/task/4495/stat : 4495 (java) R 4488 4490 2130 0 -1 64 124352 0 0 0 4562 65 0 0 25 0 13 0 2000312924 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 106123413 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4496] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4496/stat : 4496 (java) S 4488 4490 2130 0 -1 64 10 0 0 0 0 0 0 0 16 0 13 0 2000312925 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4497] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4497/stat : 4497 (java) S 4488 4490 2130 0 -1 64 6 0 0 0 0 0 0 0 16 0 13 0 2000312925 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4498] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4498/stat : 4498 (java) S 4488 4490 2130 0 -1 64 2 0 0 0 0 0 0 0 25 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4499] ppid=4488 vsize=825528 CPUtime=0.85
/proc/4490/task/4499/stat : 4499 (java) S 4488 4490 2130 0 -1 64 3881 0 0 0 84 1 0 0 17 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4500] ppid=4488 vsize=825528 CPUtime=0.75
/proc/4490/task/4500/stat : 4500 (java) S 4488 4490 2130 0 -1 64 4850 0 0 0 73 2 0 0 17 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4501] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4501/stat : 4501 (java) S 4488 4490 2130 0 -1 64 0 0 0 0 0 0 0 0 25 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4502] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4502/stat : 4502 (java) S 4488 4490 2130 0 -1 64 1 0 0 0 0 0 0 0 15 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4503] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4503/stat : 4503 (java) S 4488 4490 2130 0 -1 64 9 0 0 0 0 0 0 0 17 0 13 0 2000340310 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 275.3
Current children cumulated vsize (KiB) 825528

[startup+278.308 s]
/proc/loadavg: 2.44 2.23 2.11 3/85 4503
/proc/meminfo: memFree=875352/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=825528 CPUtime=276.89
/proc/4490/stat : 4490 (java) S 4488 4490 2130 0 -1 0 310509 0 1 0 27540 149 0 0 18 0 13 0 2000312920 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0
/proc/4490/statm: 206382 175666 1390 9 0 203744 0
[pid=4490/tid=4492] ppid=4488 vsize=825528 CPUtime=219.08
/proc/4490/task/4492/stat : 4492 (java) S 4488 4490 2130 0 -1 64 17794 0 1 0 21897 11 0 0 18 0 13 0 2000312922 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4493] ppid=4488 vsize=825528 CPUtime=4.04
/proc/4490/task/4493/stat : 4493 (java) S 4488 4490 2130 0 -1 64 78109 0 0 0 372 32 0 0 15 0 13 0 2000312922 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4494] ppid=4488 vsize=825528 CPUtime=4.25
/proc/4490/task/4494/stat : 4494 (java) S 4488 4490 2130 0 -1 64 77745 0 0 0 392 33 0 0 16 0 13 0 2000312922 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4495] ppid=4488 vsize=825528 CPUtime=47.86
/proc/4490/task/4495/stat : 4495 (java) R 4488 4490 2130 0 -1 64 127355 0 0 0 4720 66 0 0 25 0 13 0 2000312924 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 106123734 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4496] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4496/stat : 4496 (java) S 4488 4490 2130 0 -1 64 10 0 0 0 0 0 0 0 16 0 13 0 2000312925 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4497] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4497/stat : 4497 (java) S 4488 4490 2130 0 -1 64 6 0 0 0 0 0 0 0 16 0 13 0 2000312925 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4498] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4498/stat : 4498 (java) S 4488 4490 2130 0 -1 64 2 0 0 0 0 0 0 0 25 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4499] ppid=4488 vsize=825528 CPUtime=0.85
/proc/4490/task/4499/stat : 4499 (java) S 4488 4490 2130 0 -1 64 3881 0 0 0 84 1 0 0 17 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4500] ppid=4488 vsize=825528 CPUtime=0.75
/proc/4490/task/4500/stat : 4500 (java) S 4488 4490 2130 0 -1 64 4850 0 0 0 73 2 0 0 17 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4501] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4501/stat : 4501 (java) S 4488 4490 2130 0 -1 64 0 0 0 0 0 0 0 0 25 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4502] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4502/stat : 4502 (java) S 4488 4490 2130 0 -1 64 1 0 0 0 0 0 0 0 15 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4503] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4503/stat : 4503 (java) S 4488 4490 2130 0 -1 64 12 0 0 0 0 0 0 0 16 0 13 0 2000340310 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 276.89
Current children cumulated vsize (KiB) 825528

[startup+278.703 s]
/proc/loadavg: 2.44 2.23 2.11 3/85 4503
/proc/meminfo: memFree=875352/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=825528 CPUtime=277.29
/proc/4490/stat : 4490 (java) S 4488 4490 2130 0 -1 0 310509 0 1 0 27580 149 0 0 18 0 13 0 2000312920 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0
/proc/4490/statm: 206382 175666 1390 9 0 203744 0
[pid=4490/tid=4492] ppid=4488 vsize=825528 CPUtime=219.08
/proc/4490/task/4492/stat : 4492 (java) S 4488 4490 2130 0 -1 64 17794 0 1 0 21897 11 0 0 18 0 13 0 2000312922 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4493] ppid=4488 vsize=825528 CPUtime=4.04
/proc/4490/task/4493/stat : 4493 (java) S 4488 4490 2130 0 -1 64 78109 0 0 0 372 32 0 0 15 0 13 0 2000312922 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4494] ppid=4488 vsize=825528 CPUtime=4.25
/proc/4490/task/4494/stat : 4494 (java) S 4488 4490 2130 0 -1 64 77745 0 0 0 392 33 0 0 16 0 13 0 2000312922 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4495] ppid=4488 vsize=825528 CPUtime=48.25
/proc/4490/task/4495/stat : 4495 (java) R 4488 4490 2130 0 -1 64 127355 0 0 0 4759 66 0 0 25 0 13 0 2000312924 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 106123734 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4496] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4496/stat : 4496 (java) S 4488 4490 2130 0 -1 64 10 0 0 0 0 0 0 0 16 0 13 0 2000312925 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4497] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4497/stat : 4497 (java) S 4488 4490 2130 0 -1 64 6 0 0 0 0 0 0 0 16 0 13 0 2000312925 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4498] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4498/stat : 4498 (java) S 4488 4490 2130 0 -1 64 2 0 0 0 0 0 0 0 25 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4499] ppid=4488 vsize=825528 CPUtime=0.85
/proc/4490/task/4499/stat : 4499 (java) S 4488 4490 2130 0 -1 64 3881 0 0 0 84 1 0 0 17 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4500] ppid=4488 vsize=825528 CPUtime=0.75
/proc/4490/task/4500/stat : 4500 (java) S 4488 4490 2130 0 -1 64 4850 0 0 0 73 2 0 0 17 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4490/tid=4501] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4501/stat : 4501 (java) S 4488 4490 2130 0 -1 64 0 0 0 0 0 0 0 0 25 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4502] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4502/stat : 4502 (java) S 4488 4490 2130 0 -1 64 1 0 0 0 0 0 0 0 15 0 13 0 2000312929 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4490/tid=4503] ppid=4488 vsize=825528 CPUtime=0
/proc/4490/task/4503/stat : 4503 (java) S 4488 4490 2130 0 -1 64 12 0 0 0 0 0 0 0 16 0 13 0 2000340310 845340672 175666 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 277.29
Current children cumulated vsize (KiB) 825528

[startup+278.902 s]
/proc/loadavg: 2.44 2.23 2.11 3/85 4503
/proc/meminfo: memFree=875352/2055920 swapFree=4180456/4192956
[pid=4490] ppid=4488 vsize=0 CPUtime=277.45
/proc/4490/stat : 4490 (java) Z 4488 4490 2130 0 -1 12 310514 0 1 0 27585 160 0 0 16 0 2 0 2000312920 0 0 996147200 0 0 0 0 0 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/4490/statm: 0 0 0 0 0 0 0
Current children cumulated CPU time (s) 277.45
Current children cumulated vsize (KiB) 0

Child status: 1
Real time (s): 278.908
CPU time (s): 277.464
CPU user time (s): 275.853
CPU system time (s): 1.61076
CPU usage (%): 99.4821
Max. virtual memory (cumulated for all children) (KiB): 827208

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 275.853
system time used= 1.61075
maximum resident set size= 0
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 310514
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= 12323
involuntary context switches= 9923

runsolver used 0.375942 second user time and 0.938857 second system time

The end

Launcher Data (download as text)

Begin job on node19 at 2008-07-05 01:16:26
IDJOB=1080829
IDBENCH=57034
IDSOLVER=344
FILE ID=node19/1080829-1215213385
PBS_JOBID= 7881704
Free space on /tmp= 66556 MiB

SOLVER NAME= SAT4J CSP 2008-06-13
BENCH NAME= CPAI08/csp/js-taillard-20-15/normalized-js-taillard-20-15-95-2.xml
COMMAND LINE= java6 -server -Xms650m -Xmx650m -jar HOME/sat4jcsp.jar BENCHNAME
RUNSOLVER COMMAND LINE= /home/evaluation/evaluation/pub/bin/runsolver --timestamp -w /tmp/evaluation-result-1080829-1215213385/watcher-1080829-1215213385 -o /tmp/evaluation-result-1080829-1215213385/solver-1080829-1215213385 -C 1800 -W 2200 -M 900 --output-limit 1,15  java6 -server -Xms650m -Xmx650m -jar HOME/sat4jcsp.jar HOME/instance-1080829-1215213385.xml

TIME LIMIT= 1800 seconds
MEMORY LIMIT= 900 MiB

MD5SUM BENCH= 585e418ff9a750c634826a9ec19df97c
RANDOM SEED=1170005104

node19.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.263
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	: 5931.00
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.263
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	: 5586.94
clflush size	: 64
cache_alignment	: 128
address sizes	: 36 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:      2055920 kB
MemFree:       1575264 kB
Buffers:        104356 kB
Cached:         288808 kB
SwapCached:       6540 kB
Active:         274708 kB
Inactive:       134132 kB
HighTotal:           0 kB
HighFree:            0 kB
LowTotal:      2055920 kB
LowFree:       1575264 kB
SwapTotal:     4192956 kB
SwapFree:      4180456 kB
Dirty:            4884 kB
Writeback:           0 kB
Mapped:          23524 kB
Slab:            57112 kB
Committed_AS:  3530616 kB
PageTables:       1820 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= 66556 MiB
End job on node19 at 2008-07-05 01:21:05