Trace number 4263408

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 2017-07-05? 522.58099 292.49301

General information on the benchmark

NameMagicSquare/MagicSquare-sum-s1/
MagicSquare-23-sum.xml
MD5SUMd4be5d2e2f36b13e59ce195ffddd0d7a
Bench CategoryCSP (decision problem)
Best result obtained on this benchmark
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark
Satisfiable
(Un)Satisfiability was proved
Number of variables529
Number of constraints49
Number of domains1
Minimum domain size529
Maximum domain size529
Distribution of domain sizes[{"size":529,"count":529}]
Minimum variable degree3
Maximum variable degree5
Distribution of variable degrees[{"degree":3,"count":484},{"degree":4,"count":44},{"degree":5,"count":1}]
Minimum constraint arity23
Maximum constraint arity529
Distribution of constraint arities[{"arity":23,"count":48},{"arity":529,"count":1}]
Number of extensional constraints0
Number of intensional constraints0
Distribution of constraint types[{"type":"allDifferent","count":1},{"type":"sum","count":48}]
Optimization problemNO
Type of objective

Solver Data

522.47/292.24	Aug 13, 2017 2:49:50 PM org.sat4j.reader.XMLCSP3Reader parseInstance
522.47/292.24	INFO: Runtime exception
522.47/292.24	java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeExpression(TseitinBasedIntensionCtrEncoder.java:77)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encode(TseitinBasedIntensionCtrEncoder.java:58)
522.47/292.24		at org.sat4j.csp.constraints3.CountingCtrBuilder.buildCtrSum(CountingCtrBuilder.java:88)
522.47/292.24		at org.sat4j.csp.constraints3.CountingCtrBuilder.buildCtrSum(CountingCtrBuilder.java:50)
522.47/292.24		at org.sat4j.reader.XMLCSP3Reader.buildCtrSum(XMLCSP3Reader.java:571)
522.47/292.24		at org.xcsp.parser.loaders.CtrLoaderInteger.sum(CtrLoaderInteger.java:477)
522.47/292.24		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:151)
522.47/292.24		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
522.47/292.24		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:440)
522.47/292.24		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
522.47/292.24		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
522.47/292.24		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
522.47/292.24		at org.xcsp.parser.XCallbacks.loadGroup(XCallbacks.java:406)
522.47/292.24		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
522.47/292.24		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
522.47/292.24		at org.sat4j.reader.XMLCSP3Reader.loadInstance(XMLCSP3Reader.java:328)
522.47/292.24		at org.sat4j.reader.XMLCSP3Reader.parseInstance(XMLCSP3Reader.java:293)
522.47/292.24		at org.sat4j.reader.Reader.parseInstance(Reader.java:73)
522.47/292.24		at org.sat4j.AbstractLauncher.readProblem(AbstractLauncher.java:201)
522.47/292.24		at org.sat4j.csp.CSPLauncher.readProblem(CSPLauncher.java:95)
522.47/292.24		at org.sat4j.AbstractLauncher.run(AbstractLauncher.java:255)
522.47/292.24		at org.sat4j.csp.CSPLauncher.main(CSPLauncher.java:119)
522.47/292.24	Caused by: java.lang.reflect.InvocationTargetException
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
522.47/292.24		... 22 more
522.47/292.24	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
522.47/292.24		... 27 more
522.47/292.24	Caused by: java.lang.reflect.InvocationTargetException
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
522.47/292.24		... 28 more
522.47/292.24	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
522.47/292.24		... 33 more
522.47/292.24	Caused by: java.lang.reflect.InvocationTargetException
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
522.47/292.24		... 34 more
522.47/292.24	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
522.47/292.24		... 39 more
522.47/292.24	Caused by: java.lang.reflect.InvocationTargetException
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
522.47/292.24		... 40 more
522.47/292.24	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
522.47/292.24		... 45 more
522.47/292.24	Caused by: java.lang.reflect.InvocationTargetException
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
522.47/292.24		... 46 more
522.47/292.24	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
522.47/292.24		... 51 more
522.47/292.24	Caused by: java.lang.reflect.InvocationTargetException
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
522.47/292.24		... 52 more
522.47/292.24	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
522.47/292.24		... 57 more
522.47/292.24	Caused by: java.lang.reflect.InvocationTargetException
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
522.47/292.24		... 58 more
522.47/292.24	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
522.47/292.24		... 63 more
522.47/292.24	Caused by: java.lang.reflect.InvocationTargetException
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
522.47/292.24		... 64 more
522.47/292.24	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
522.47/292.24		... 69 more
522.47/292.24	Caused by: java.lang.reflect.InvocationTargetException
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
522.47/292.24		... 70 more
522.47/292.24	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
522.47/292.24		... 75 more
522.47/292.24	Caused by: java.lang.reflect.InvocationTargetException
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
522.47/292.24		... 76 more
522.47/292.24	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:127)
522.47/292.24		... 81 more
522.47/292.24	Caused by: java.lang.reflect.InvocationTargetException
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:125)
522.47/292.24		... 81 more
522.47/292.24	Caused by: java.lang.OutOfMemoryError: Java heap space
522.47/292.24		at org.sat4j.core.Vec.ensure(Vec.java:176)
522.47/292.24		at org.sat4j.core.Vec.push(Vec.java:183)
522.47/292.24		at org.sat4j.minisat.core.Solver.addConstr(Solver.java:1967)
522.47/292.24		at org.sat4j.minisat.core.Solver.addClause(Solver.java:426)
522.47/292.24		at org.sat4j.csp.CspSatSolverDecorator.addClause(CspSatSolverDecorator.java:147)
522.47/292.24		at org.sat4j.tools.SolverDecorator.addClause(SolverDecorator.java:236)
522.47/292.24		at org.sat4j.csp.intension.CspToPBSolverDecorator.addClause(CspToPBSolverDecorator.java:85)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.buildImplVar(TseitinBasedIntensionCtrEncoder.java:528)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorAdd(TseitinBasedIntensionCtrEncoder.java:158)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:125)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
522.47/292.24		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
522.47/292.24		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
522.47/292.24		at java.lang.reflect.Method.invoke(Method.java:498)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
522.47/292.24		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
522.47/292.24	
522.53/292.44	c SAT4J: a SATisfiability library for Java (c) 2004-2013 Artois University and CNRS
522.53/292.44	c This is free software under the dual EPL/GNU LGPL licenses.
522.53/292.44	c See www.sat4j.org for details.
522.53/292.44	c That software uses the Rhino library from the Mozilla project.
522.53/292.44	c version CUSTOM.v20170705
522.53/292.44	c java.runtime.name	Java(TM) SE Runtime Environment
522.53/292.44	c java.vm.name		Java HotSpot(TM) 64-Bit Server VM
522.53/292.44	c java.vm.version	25.131-b11
522.53/292.44	c java.vm.vendor	Oracle Corporation
522.53/292.44	c sun.arch.data.model	64
522.53/292.44	c java.version		1.8.0_131
522.53/292.44	c os.name		Linux
522.53/292.44	c os.version		3.10.0-514.16.1.el7.x86_64
522.53/292.44	c os.arch		amd64
522.53/292.44	c Free memory 		499604488
522.53/292.44	c Max memory 		7247757312
522.53/292.44	c Total memory 		504889344
522.53/292.44	c Number of processors 	4
522.53/292.44	c c --- Begin Solver configuration ---
522.53/292.44	c org.sat4j.pb.constraints.CompetResolutionPBLongMixedWLClauseCardConstrDataStructure@2b71fc7e
522.53/292.44	c Learn all clauses as in MiniSAT
522.53/292.44	c LOGGER=java.util.logging.Logger@25f38edc claDecay=0.999 varDecay=0.95 conflictBoundIncFactor=1.5 initConflictBound=100 
522.53/292.44	c VSIDS like heuristics from MiniSAT using a heap lightweight component caching from RSAT taking into account the objective function
522.53/292.44	c No reason simplification
522.53/292.44	c Glucose 2.1 dynamic restart strategy
522.53/292.44	c Glucose 2 learned constraints deletion strategy (LBD updated on propagation) with timer check every 1000 if the learned constraints reach increasing bounds: 5000 step 1000
522.53/292.44	c timeout=2147483s
522.53/292.44	c DB Simplification allowed=false
522.53/292.44	c Listener: org.sat4j.minisat.core.VoidTracing@1a86f2f1
522.53/292.44	c --- End Solver configuration ---
522.53/292.44	c starts		: 0
522.53/292.44	c conflicts		: 0
522.53/292.44	c decisions		: 0
522.53/292.44	c propagations		: 0
522.53/292.44	c inspects		: 0
522.53/292.44	c shortcuts		: 0
522.53/292.44	c learnt literals	: 0
522.53/292.44	c learnt binary clauses	: 0
522.53/292.44	c learnt ternary clauses	: 0
522.53/292.44	c learnt constraints	: 0
522.53/292.44	c ignored constraints	: 0
522.53/292.44	c root simplifications	: 0
522.53/292.44	c removed literals (reason simplification)	: 0
522.53/292.44	c reason swapping (by a shorter reason)	: 0
522.53/292.44	c Calls to reduceDB	: 0
522.53/292.44	c Number of update (reduction) of LBD	: 0
522.53/292.44	c Imported unit clauses	: 0
522.53/292.44	c number of reductions to clauses (during analyze)	: 0
522.53/292.44	c number of learned constraints concerned by reduction	: 0
522.53/292.44	c number of learning phase by resolution	: 0
522.53/292.44	c number of learning phase by cutting planes	: 0
522.53/292.44	c number of rounding to 1 operations	: 0
522.53/292.44	c number of easy rounding to 1 operations (no literal elimination needed)	: 0
522.53/292.44	c number of reductions of the coefficients by power 2 	: 0
522.53/292.44	c number of right shift for reduction by power 2 	: 0
522.53/292.44	c number of reductions of the coefficients by GCD over coefficients 	: 0
522.53/292.44	c speed (assignments/second)	: 0.0
522.53/292.44	c non guided choices	0
522.53/292.44	c learnt constraints type 
522.53/292.44	s UNKNOWN

Verifier Data


Watcher Data

runsolver version 3.4.0 (svn: 3012) Copyright (C) 2010-2013 Olivier ROUSSEL

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

NUMA information:
  number of nodes: 2
  memory of node 0: 16374 MiB (11771 MiB free)
  memory of node 1: 16384 MiB (15642 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4263408-1502629163/watcher-4263408-1502629163 -o /tmp/evaluation-result-4263408-1502629163/solver-4263408-1502629163 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node132-1502602071-18557 --watchdog 2580 java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar HOME/instance-4263408-1502629163.xml 

running on 4 cores: 1,3,5,7

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2550 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 15872000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 15923200 KiB
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
solver pid=24853, runsolver pid=24850
Current StackSize limit: 8192 KiB


[startup+0.100138 s]*
/proc/loadavg: 2.02 2.08 2.19 3/206 24859
/proc/meminfo: memFree=28063004/32770624 swapFree=67108776/67108860
[pid=24853] ppid=24850 vsize=10085108 memory=18068 CPUtime=0.01 cores=1,3,5,7
/proc/24853/stat : 24853 (java) S 24850 24853 7084 0 -1 1077944320 3897 0 0 0 1 0 0 0 20 0 8 0 162569085 10327150592 4517 18446744073709551615 4194304 4196468 140735163748064 140735163730608 140265424715511 0 0 1 16784584 18446744073709551615 0 0 17 3 0 0 8 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
/proc/24853/statm: 2521277 4517 2049 1 0 2510774 0
[pid=24853/tid=24855] ppid=24850 vsize=10085108 memory=-6439968830534014599 CPUtime=0.01 cores=1,3,5,7
/proc/24853/task/24855/stat : 24855 (java) R 24850 24853 7084 0 -1 4202560 2565 0 0 0 1 0 0 0 20 0 8 0 162569094 10327150592 4583 18446744073709551615 4194304 4196468 140735163748064 140265428955568 140265408795998 0 4 1 16784584 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24856] ppid=24850 vsize=10085108 memory=6735269665564437106 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24856/stat : 24856 (java) S 24850 24853 7084 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 8 0 162569094 10327150592 4583 18446744073709551615 4194304 4196468 140735163748064 140265381681680 140265424725717 0 4 1 16784584 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24857] ppid=24850 vsize=10085108 memory=140205090129536 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24857/stat : 24857 (java) S 24850 24853 7084 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 8 0 162569094 10327150592 4583 18446744073709551615 4194304 4196468 140735163748064 140265380629136 140265424725717 0 4 1 16784584 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24858] ppid=24850 vsize=10085108 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24858/stat : 24858 (java) S 24850 24853 7084 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 8 0 162569094 10327150592 4583 18446744073709551615 4194304 4196468 140735163748064 140265379576080 140265424725717 0 4 1 16784584 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24859] ppid=24850 vsize=10085108 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24859/stat : 24859 (java) S 24850 24853 7084 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 8 0 162569094 10327150592 4583 18446744073709551615 4194304 4196468 140735163748064 140265032178064 140265424725717 0 4 1 16784584 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24860] ppid=24850 vsize=10085108 memory=140205090129536 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24860/stat : 24860 (java) S 24850 24853 7084 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 8 0 162569096 10327150592 4583 18446744073709551615 4194304 4196468 140735163748064 140264988760816 140265424726658 0 0 1 16784584 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24861] ppid=24850 vsize=10085108 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24861/stat : 24861 (java) S 24850 24853 7084 0 -1 1077944384 32 0 0 0 0 0 0 0 20 0 8 0 162569096 10327150592 4583 18446744073709551615 4194304 4196468 140735163748064 140264987705936 140265424725717 0 4 1 16784584 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
Current children cumulated CPU time: 0.01 s
Current children cumulated vsize: 10085108 KiB
Current children cumulated memory: 18068 KiB

[startup+0.210068 s]*
/proc/loadavg: 2.02 2.08 2.19 3/215 24868
/proc/meminfo: memFree=28058012/32770624 swapFree=67108776/67108860
[pid=24853] ppid=24850 vsize=10551156 memory=24184 CPUtime=0.07 cores=1,3,5,7
/proc/24853/stat : 24853 (java) S 24850 24853 7084 0 -1 1077944320 5065 0 0 0 6 1 0 0 20 0 15 0 162569085 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140735163730608 140265424715511 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 8 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
/proc/24853/statm: 2637789 6046 2618 1 0 2627261 0
[pid=24853/tid=24855] ppid=24850 vsize=10551156 memory=8318255677412212789 CPUtime=0.05 cores=1,3,5,7
/proc/24853/task/24855/stat : 24855 (java) R 24850 24853 7084 0 -1 4202560 3168 0 0 0 5 0 0 0 20 0 15 0 162569094 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140265428941200 140265424737437 0 4 1 16800974 0 0 0 -1 3 0 0 6 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24856] ppid=24850 vsize=10551156 memory=329 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24856/stat : 24856 (java) S 24850 24853 7084 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 162569094 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140265381681680 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24857] ppid=24850 vsize=10551156 memory=3546224845146277536 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24857/stat : 24857 (java) S 24850 24853 7084 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 162569094 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140265380629136 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24858] ppid=24850 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24858/stat : 24858 (java) S 24850 24853 7084 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 162569094 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140265379576080 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24859] ppid=24850 vsize=10551156 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24859/stat : 24859 (java) S 24850 24853 7084 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 162569094 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140265032178064 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24860] ppid=24850 vsize=10551156 memory=140205090129536 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24860/stat : 24860 (java) S 24850 24853 7084 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 162569096 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140264988760816 140265424726658 0 0 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24861] ppid=24850 vsize=10551156 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24861/stat : 24861 (java) S 24850 24853 7084 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 162569096 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140264987707040 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24862] ppid=24850 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24862/stat : 24862 (java) S 24850 24853 7084 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 162569096 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140264986653936 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24863] ppid=24850 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24863/stat : 24863 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140264985602512 140265424734107 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24864] ppid=24850 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24864/stat : 24864 (java) S 24850 24853 7084 0 -1 1077944384 303 0 0 0 0 0 0 0 20 0 15 0 162569099 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140264984549616 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24865] ppid=24850 vsize=10551156 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24865/stat : 24865 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140264983497072 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24866] ppid=24850 vsize=10551156 memory=140205090129536 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24866/stat : 24866 (java) S 24850 24853 7084 0 -1 1077944384 222 0 0 0 0 0 0 0 20 0 15 0 162569099 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140264982444016 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24867] ppid=24850 vsize=10551156 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24867/stat : 24867 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140264981391712 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24868] ppid=24850 vsize=10551156 memory=140205090129536 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24868/stat : 24868 (java) S 24850 24853 7084 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 162569106 10804383744 6046 18446744073709551615 4194304 4196468 140735163748064 140264980339760 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
Current children cumulated CPU time: 0.07 s
Current children cumulated vsize: 10551156 KiB
Current children cumulated memory: 24184 KiB

[startup+0.310363 s]*
/proc/loadavg: 2.02 2.08 2.19 3/215 24868
/proc/meminfo: memFree=28045688/32770624 swapFree=67108776/67108860
[pid=24853] ppid=24850 vsize=10551156 memory=35988 CPUtime=0.22 cores=1,3,5,7
/proc/24853/stat : 24853 (java) S 24850 24853 7084 0 -1 1077944320 8318 0 0 0 20 2 0 0 20 0 15 0 162569085 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140735163730608 140265424715511 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 8 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
/proc/24853/statm: 2637789 8997 2861 1 0 2627261 0
[pid=24853/tid=24855] ppid=24850 vsize=10551156 memory=-8774313645642428999 CPUtime=0.16 cores=1,3,5,7
/proc/24853/task/24855/stat : 24855 (java) R 24850 24853 7084 0 -1 4202560 5982 0 0 0 14 2 0 0 20 0 15 0 162569094 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140265428954000 140265424737437 0 4 1 16800974 0 0 0 -1 5 0 0 6 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24856] ppid=24850 vsize=10551156 memory=4872558044660077418 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24856/stat : 24856 (java) S 24850 24853 7084 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 162569094 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140265381681680 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24857] ppid=24850 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24857/stat : 24857 (java) S 24850 24853 7084 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 162569094 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140265380629136 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24858] ppid=24850 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24858/stat : 24858 (java) S 24850 24853 7084 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 162569094 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140265379576080 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24859] ppid=24850 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24859/stat : 24859 (java) S 24850 24853 7084 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 162569094 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140265032178064 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24860] ppid=24850 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24860/stat : 24860 (java) S 24850 24853 7084 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 162569096 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140264988760816 140265424726658 0 0 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24861] ppid=24850 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24861/stat : 24861 (java) S 24850 24853 7084 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 162569096 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140264987707040 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24862] ppid=24850 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24862/stat : 24862 (java) S 24850 24853 7084 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 162569096 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140264986653936 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24863] ppid=24850 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24863/stat : 24863 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140264985602512 140265424734107 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24864] ppid=24850 vsize=10551156 memory=0 CPUtime=0.01 cores=1,3,5,7
/proc/24853/task/24864/stat : 24864 (java) S 24850 24853 7084 0 -1 1077944384 502 0 0 0 1 0 0 0 20 0 15 0 162569099 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140264984549616 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24865] ppid=24850 vsize=10551156 memory=0 CPUtime=0.01 cores=1,3,5,7
/proc/24853/task/24865/stat : 24865 (java) S 24850 24853 7084 0 -1 1077944384 74 0 0 0 1 0 0 0 20 0 15 0 162569099 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140264983497072 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24866] ppid=24850 vsize=10551156 memory=140205090129536 CPUtime=0.03 cores=1,3,5,7
/proc/24853/task/24866/stat : 24866 (java) S 24850 24853 7084 0 -1 1077944384 391 0 0 0 3 0 0 0 20 0 15 0 162569099 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140264982444016 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24867] ppid=24850 vsize=10551156 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24867/stat : 24867 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140264981391712 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24868] ppid=24850 vsize=10551156 memory=140205090129536 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24868/stat : 24868 (java) S 24850 24853 7084 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 162569106 10804383744 8997 18446744073709551615 4194304 4196468 140735163748064 140264980339760 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
Current children cumulated CPU time: 0.22 s
Current children cumulated vsize: 10551156 KiB
Current children cumulated memory: 35988 KiB

[startup+0.701628 s]
/proc/loadavg: 2.02 2.08 2.19 3/215 24868
/proc/meminfo: memFree=28022536/32770624 swapFree=67108776/67108860
[pid=24853] ppid=24850 vsize=10551232 memory=343600 CPUtime=1.15 cores=1,3,5,7
/proc/24853/stat : 24853 (java) S 24850 24853 7084 0 -1 1077944320 11458 0 0 0 99 16 0 0 20 0 15 0 162569085 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140735163730608 140265424715511 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 8 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
/proc/24853/statm: 2637808 85900 3068 1 0 2627261 0
[pid=24853/tid=24855] ppid=24850 vsize=10551232 memory=140209385096831 CPUtime=0.47 cores=1,3,5,7
/proc/24853/task/24855/stat : 24855 (java) S 24850 24853 7084 0 -1 1077944384 7473 0 0 0 42 5 0 0 20 0 15 0 162569094 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140265428952768 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 6 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24856] ppid=24850 vsize=10551232 memory=-7452431979323206951 CPUtime=0.05 cores=1,3,5,7
/proc/24853/task/24856/stat : 24856 (java) R 24850 24853 7084 0 -1 4202560 106 0 0 0 3 2 0 0 20 0 15 0 162569094 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140265381681680 140265409739214 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24857] ppid=24850 vsize=10551232 memory=0 CPUtime=0.04 cores=1,3,5,7
/proc/24853/task/24857/stat : 24857 (java) R 24850 24853 7084 0 -1 4202560 111 0 0 0 3 1 0 0 20 0 15 0 162569094 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140265380629136 140265409739326 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24858] ppid=24850 vsize=10551232 memory=5889 CPUtime=0.05 cores=1,3,5,7
/proc/24853/task/24858/stat : 24858 (java) R 24850 24853 7084 0 -1 4202560 114 0 0 0 3 2 0 0 20 0 15 0 162569094 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140265379576080 140265409743394 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24859] ppid=24850 vsize=10551232 memory=0 CPUtime=0.05 cores=1,3,5,7
/proc/24853/task/24859/stat : 24859 (java) R 24850 24853 7084 0 -1 4202560 109 0 0 0 3 2 0 0 20 0 15 0 162569094 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140265032177952 140265409739214 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24860] ppid=24850 vsize=10551232 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24860/stat : 24860 (java) S 24850 24853 7084 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 162569096 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140264988759328 140265424725717 0 0 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24861] ppid=24850 vsize=10551232 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24861/stat : 24861 (java) S 24850 24853 7084 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 162569096 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140264987707040 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24862] ppid=24850 vsize=10551232 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24862/stat : 24862 (java) S 24850 24853 7084 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 15 0 162569096 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140264986653936 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24863] ppid=24850 vsize=10551232 memory=140204979645968 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24863/stat : 24863 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140264985602512 140265424734107 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24864] ppid=24850 vsize=10551232 memory=140204979663649 CPUtime=0.16 cores=1,3,5,7
/proc/24853/task/24864/stat : 24864 (java) S 24850 24853 7084 0 -1 1077944384 952 0 0 0 16 0 0 0 20 0 15 0 162569099 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140264984549616 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24865] ppid=24850 vsize=10551232 memory=288230600329142066 CPUtime=0.11 cores=1,3,5,7
/proc/24853/task/24865/stat : 24865 (java) S 24850 24853 7084 0 -1 1077944384 342 0 0 0 11 0 0 0 20 0 15 0 162569099 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140264983497072 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24866] ppid=24850 vsize=10551232 memory=13849655444265308 CPUtime=0.14 cores=1,3,5,7
/proc/24853/task/24866/stat : 24866 (java) S 24850 24853 7084 0 -1 1077944384 805 0 0 0 14 0 0 0 20 0 15 0 162569099 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140264982444016 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24867] ppid=24850 vsize=10551232 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24867/stat : 24867 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140264981391712 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24868] ppid=24850 vsize=10551232 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24868/stat : 24868 (java) S 24850 24853 7084 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 162569106 10804461568 85900 18446744073709551615 4194304 4196468 140735163748064 140264980339760 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
Current children cumulated CPU time: 1.15 s
Current children cumulated vsize: 10551232 KiB
Current children cumulated memory: 343600 KiB

[startup+1.50161 s]
/proc/loadavg: 2.02 2.08 2.19 5/215 24868
/proc/meminfo: memFree=27490736/32770624 swapFree=67108776/67108860
[pid=24853] ppid=24850 vsize=10551232 memory=652116 CPUtime=2.59 cores=1,3,5,7
/proc/24853/stat : 24853 (java) S 24850 24853 7084 0 -1 1077944320 13463 0 0 0 229 30 0 0 20 0 15 0 162569085 10804461568 163029 18446744073709551615 4194304 4196468 140735163748064 140735163730608 140265424715511 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 8 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
/proc/24853/statm: 2637808 163029 3079 1 0 2627261 0
[pid=24853/tid=24855] ppid=24850 vsize=10551232 memory=-8774313645642428999 CPUtime=1.19 cores=1,3,5,7
/proc/24853/task/24855/stat : 24855 (java) S 24850 24853 7084 0 -1 1077944384 7863 0 0 0 111 8 0 0 20 0 15 0 162569094 10804461568 163029 18446744073709551615 4194304 4196468 140735163748064 140265428954560 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 6 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24856] ppid=24850 vsize=10551232 memory=0 CPUtime=0.14 cores=1,3,5,7
/proc/24853/task/24856/stat : 24856 (java) R 24850 24853 7084 0 -1 4202560 225 0 0 0 9 5 0 0 20 0 15 0 162569094 10804461568 163029 18446744073709551615 4194304 4196468 140735163748064 140265381681680 140265409737689 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24857] ppid=24850 vsize=10551232 memory=596280 CPUtime=0.13 cores=1,3,5,7
/proc/24853/task/24857/stat : 24857 (java) R 24850 24853 7084 0 -1 4202560 228 0 0 0 9 4 0 0 20 0 15 0 162569094 10804461568 163029 18446744073709551615 4194304 4196468 140735163748064 140265380629336 140265409742930 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24858] ppid=24850 vsize=10551232 memory=0 CPUtime=0.13 cores=1,3,5,7
/proc/24853/task/24858/stat : 24858 (java) R 24850 24853 7084 0 -1 4202560 226 0 0 0 9 4 0 0 20 0 15 0 162569094 10804461568 163029 18446744073709551615 4194304 4196468 140735163748064 140265379576080 140265409742731 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24859] ppid=24850 vsize=10551232 memory=0 CPUtime=0.13 cores=1,3,5,7
/proc/24853/task/24859/stat : 24859 (java) R 24850 24853 7084 0 -1 4202560 216 0 0 0 9 4 0 0 20 0 15 0 162569094 10804461568 163029 18446744073709551615 4194304 4196468 140735163748064 140265032178064 140265409739166 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24860] ppid=24850 vsize=10551232 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24860/stat : 24860 (java) S 24850 24853 7084 0 -1 1077944384 211 0 0 0 0 0 0 0 20 0 15 0 162569096 10804461568 163029 18446744073709551615 4194304 4196468 140735163748064 140264988759328 140265424725717 0 0 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24861] ppid=24850 vsize=10551232 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24861/stat : 24861 (java) S 24850 24853 7084 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 162569096 10804461568 163029 18446744073709551615 4194304 4196468 140735163748064 140264987707040 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24862] ppid=24850 vsize=10551232 memory=280409959269984 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24862/stat : 24862 (java) S 24850 24853 7084 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 15 0 162569096 10804461568 163029 18446744073709551615 4194304 4196468 140735163748064 140264986653936 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24863] ppid=24850 vsize=10551232 memory=288230621803970871 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24863/stat : 24863 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804461568 163029 18446744073709551615 4194304 4196468 140735163748064 140264985602512 140265424734107 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24864] ppid=24850 vsize=10551232 memory=13563786715989427 CPUtime=0.33 cores=1,3,5,7
/proc/24853/task/24864/stat : 24864 (java) S 24850 24853 7084 0 -1 1077944384 1231 0 0 0 33 0 0 0 20 0 15 0 162569099 10804461568 163029 18446744073709551615 4194304 4196468 140735163748064 140264984549616 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24865] ppid=24850 vsize=10551232 memory=0 CPUtime=0.29 cores=1,3,5,7
/proc/24853/task/24865/stat : 24865 (java) S 24850 24853 7084 0 -1 1077944384 1052 0 0 0 29 0 0 0 20 0 15 0 162569099 10804461568 163029 18446744073709551615 4194304 4196468 140735163748064 140264983497072 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24866] ppid=24850 vsize=10551232 memory=0 CPUtime=0.16 cores=1,3,5,7
/proc/24853/task/24866/stat : 24866 (java) S 24850 24853 7084 0 -1 1077944384 848 0 0 0 16 0 0 0 20 0 15 0 162569099 10804461568 163029 18446744073709551615 4194304 4196468 140735163748064 140264982444016 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24867] ppid=24850 vsize=10551232 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24867/stat : 24867 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804461568 163029 18446744073709551615 4194304 4196468 140735163748064 140264981391712 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0

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

[pid=24853/tid=24867] ppid=24850 vsize=10551232 memory=1224 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24867/stat : 24867 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264981391712 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24868] ppid=24850 vsize=10551232 memory=4600 CPUtime=0.12 cores=1,3,5,7
/proc/24853/task/24868/stat : 24868 (java) S 24850 24853 7084 0 -1 1077944384 587 0 0 0 8 4 0 0 20 0 15 0 162569106 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264980339760 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
Current children cumulated CPU time: 508.32 s
Current children cumulated vsize: 10551232 KiB
Current children cumulated memory: 8087284 KiB

[startup+289.601 s]
/proc/loadavg: 2.97 2.29 2.22 6/213 24877
/proc/meminfo: memFree=19296132/32770624 swapFree=67108776/67108860
[pid=24853] ppid=24850 vsize=10551232 memory=8087284 CPUtime=514.49 cores=1,3,5,7
/proc/24853/stat : 24853 (java) S 24850 24853 7084 0 -1 1077944320 353085 0 0 0 50726 723 0 0 20 0 15 0 162569085 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140735163730608 140265424715511 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 8 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
/proc/24853/statm: 2637808 2021821 3103 1 0 2627261 0
[pid=24853/tid=24855] ppid=24850 vsize=10551232 memory=-8774313645642428999 CPUtime=197.13 cores=1,3,5,7
/proc/24853/task/24855/stat : 24855 (java) S 24850 24853 7084 0 -1 1077944384 25359 0 0 0 19696 17 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265428928144 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 6 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24856] ppid=24850 vsize=10551232 memory=288230621803970871 CPUtime=74.47 cores=1,3,5,7
/proc/24853/task/24856/stat : 24856 (java) R 24850 24853 7084 0 -1 4202560 56077 0 0 0 7279 168 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265381681488 140265417343719 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24857] ppid=24850 vsize=10551232 memory=8087284 CPUtime=75.58 cores=1,3,5,7
/proc/24853/task/24857/stat : 24857 (java) R 24850 24853 7084 0 -1 4202560 102416 0 0 0 7374 184 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265380629336 140265409704985 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24858] ppid=24850 vsize=10551232 memory=4044 CPUtime=74.89 cores=1,3,5,7
/proc/24853/task/24858/stat : 24858 (java) R 24850 24853 7084 0 -1 4202560 47307 0 0 0 7322 167 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265379576200 140265417343719 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24859] ppid=24850 vsize=10551232 memory=8087284 CPUtime=75.22 cores=1,3,5,7
/proc/24853/task/24859/stat : 24859 (java) R 24850 24853 7084 0 -1 4202560 79236 0 0 0 7346 176 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265032177872 140265417343719 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24860] ppid=24850 vsize=10551232 memory=8087284 CPUtime=15.83 cores=1,3,5,7
/proc/24853/task/24860/stat : 24860 (java) S 24850 24853 7084 0 -1 1077944384 34553 0 0 0 1580 3 0 0 20 0 15 0 162569096 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264988759376 140265424725717 0 0 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24861] ppid=24850 vsize=10551232 memory=1296 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24861/stat : 24861 (java) S 24850 24853 7084 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 15 0 162569096 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264987707104 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24862] ppid=24850 vsize=10551232 memory=2460 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24862/stat : 24862 (java) S 24850 24853 7084 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 15 0 162569096 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264986653952 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24863] ppid=24850 vsize=10551232 memory=8087284 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24863/stat : 24863 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264985602512 140265424734107 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24864] ppid=24850 vsize=10551232 memory=5768 CPUtime=0.51 cores=1,3,5,7
/proc/24853/task/24864/stat : 24864 (java) S 24850 24853 7084 0 -1 1077944384 2515 0 0 0 51 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264984549664 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24865] ppid=24850 vsize=10551232 memory=2008 CPUtime=0.45 cores=1,3,5,7
/proc/24853/task/24865/stat : 24865 (java) S 24850 24853 7084 0 -1 1077944384 2284 0 0 0 45 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264983497120 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24866] ppid=24850 vsize=10551232 memory=11368 CPUtime=0.18 cores=1,3,5,7
/proc/24853/task/24866/stat : 24866 (java) S 24850 24853 7084 0 -1 1077944384 1366 0 0 0 18 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264982443776 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24867] ppid=24850 vsize=10551232 memory=1224 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24867/stat : 24867 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264981391712 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24868] ppid=24850 vsize=10551232 memory=4156 CPUtime=0.12 cores=1,3,5,7
/proc/24853/task/24868/stat : 24868 (java) S 24850 24853 7084 0 -1 1077944384 587 0 0 0 8 4 0 0 20 0 15 0 162569106 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264980339760 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
Current children cumulated CPU time: 514.49 s
Current children cumulated vsize: 10551232 KiB
Current children cumulated memory: 8087284 KiB

[startup+291.201 s]
/proc/loadavg: 3.05 2.32 2.23 6/213 24877
/proc/meminfo: memFree=19296132/32770624 swapFree=67108776/67108860
[pid=24853] ppid=24850 vsize=10551232 memory=8087284 CPUtime=520.67 cores=1,3,5,7
/proc/24853/stat : 24853 (java) S 24850 24853 7084 0 -1 1077944320 353142 0 0 0 51343 724 0 0 20 0 15 0 162569085 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140735163730608 140265424715511 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 8 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
/proc/24853/statm: 2637808 2021821 3103 1 0 2627261 0
[pid=24853/tid=24855] ppid=24850 vsize=10551232 memory=-8774313645642428999 CPUtime=197.13 cores=1,3,5,7
/proc/24853/task/24855/stat : 24855 (java) S 24850 24853 7084 0 -1 1077944384 25359 0 0 0 19696 17 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265428928144 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 6 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24856] ppid=24850 vsize=10551232 memory=8087284 CPUtime=76 cores=1,3,5,7
/proc/24853/task/24856/stat : 24856 (java) R 24850 24853 7084 0 -1 4202560 56077 0 0 0 7432 168 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265381681800 140265417343719 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24857] ppid=24850 vsize=10551232 memory=988 CPUtime=77.18 cores=1,3,5,7
/proc/24853/task/24857/stat : 24857 (java) R 24850 24853 7084 0 -1 4202560 102473 0 0 0 7534 184 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265380629336 140265409416129 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24858] ppid=24850 vsize=10551232 memory=8087284 CPUtime=76.41 cores=1,3,5,7
/proc/24853/task/24858/stat : 24858 (java) R 24850 24853 7084 0 -1 4202560 47307 0 0 0 7473 168 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265379575888 140265417343719 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24859] ppid=24850 vsize=10551232 memory=6944656592455097440 CPUtime=76.75 cores=1,3,5,7
/proc/24853/task/24859/stat : 24859 (java) R 24850 24853 7084 0 -1 4202560 79236 0 0 0 7499 176 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265032178184 140265417343719 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24860] ppid=24850 vsize=10551232 memory=288230621803970871 CPUtime=15.83 cores=1,3,5,7
/proc/24853/task/24860/stat : 24860 (java) S 24850 24853 7084 0 -1 1077944384 34553 0 0 0 1580 3 0 0 20 0 15 0 162569096 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264988759376 140265424725717 0 0 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24861] ppid=24850 vsize=10551232 memory=1296 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24861/stat : 24861 (java) S 24850 24853 7084 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 15 0 162569096 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264987707104 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24862] ppid=24850 vsize=10551232 memory=2460 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24862/stat : 24862 (java) S 24850 24853 7084 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 15 0 162569096 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264986653952 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24863] ppid=24850 vsize=10551232 memory=1836 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24863/stat : 24863 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264985602512 140265424734107 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24864] ppid=24850 vsize=10551232 memory=796 CPUtime=0.51 cores=1,3,5,7
/proc/24853/task/24864/stat : 24864 (java) S 24850 24853 7084 0 -1 1077944384 2515 0 0 0 51 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264984549664 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24865] ppid=24850 vsize=10551232 memory=636 CPUtime=0.45 cores=1,3,5,7
/proc/24853/task/24865/stat : 24865 (java) S 24850 24853 7084 0 -1 1077944384 2284 0 0 0 45 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264983497120 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24866] ppid=24850 vsize=10551232 memory=1796 CPUtime=0.18 cores=1,3,5,7
/proc/24853/task/24866/stat : 24866 (java) S 24850 24853 7084 0 -1 1077944384 1366 0 0 0 18 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264982443776 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24867] ppid=24850 vsize=10551232 memory=960 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24867/stat : 24867 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264981391712 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24868] ppid=24850 vsize=10551232 memory=1236 CPUtime=0.12 cores=1,3,5,7
/proc/24853/task/24868/stat : 24868 (java) S 24850 24853 7084 0 -1 1077944384 587 0 0 0 8 4 0 0 20 0 15 0 162569106 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264980339760 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
Current children cumulated CPU time: 520.67 s
Current children cumulated vsize: 10551232 KiB
Current children cumulated memory: 8087284 KiB

[startup+292.001 s]*
/proc/loadavg: 3.05 2.32 2.23 3/213 24877
/proc/meminfo: memFree=19296132/32770624 swapFree=67108776/67108860
[pid=24853] ppid=24850 vsize=10551232 memory=8087284 CPUtime=522.27 cores=1,3,5,7
/proc/24853/stat : 24853 (java) S 24850 24853 7084 0 -1 1077944320 353142 0 0 0 51503 724 0 0 20 0 15 0 162569085 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140735163730608 140265424715511 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 8 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
/proc/24853/statm: 2637808 2021821 3103 1 0 2627261 0
[pid=24853/tid=24855] ppid=24850 vsize=10551232 memory=2240 CPUtime=197.13 cores=1,3,5,7
/proc/24853/task/24855/stat : 24855 (java) S 24850 24853 7084 0 -1 1077944384 25359 0 0 0 19696 17 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265428928144 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 6 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24856] ppid=24850 vsize=10551232 memory=4872558044660077418 CPUtime=76.27 cores=1,3,5,7
/proc/24853/task/24856/stat : 24856 (java) S 24850 24853 7084 0 -1 1077944384 56077 0 0 0 7459 168 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265381681680 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24857] ppid=24850 vsize=10551232 memory=2008 CPUtime=77.46 cores=1,3,5,7
/proc/24853/task/24857/stat : 24857 (java) S 24850 24853 7084 0 -1 1077944384 102473 0 0 0 7562 184 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265380629136 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24858] ppid=24850 vsize=10551232 memory=11368 CPUtime=76.68 cores=1,3,5,7
/proc/24853/task/24858/stat : 24858 (java) S 24850 24853 7084 0 -1 1077944384 47307 0 0 0 7500 168 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265379576080 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24859] ppid=24850 vsize=10551232 memory=1224 CPUtime=77.02 cores=1,3,5,7
/proc/24853/task/24859/stat : 24859 (java) S 24850 24853 7084 0 -1 1077944384 79236 0 0 0 7526 176 0 0 20 0 15 0 162569094 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140265032178064 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24860] ppid=24850 vsize=10551232 memory=4600 CPUtime=16.36 cores=1,3,5,7
/proc/24853/task/24860/stat : 24860 (java) R 24850 24853 7084 0 -1 4202560 34553 0 0 0 1633 3 0 0 20 0 15 0 162569096 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264988759376 140265409711856 0 0 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24861] ppid=24850 vsize=10551232 memory=1440 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24861/stat : 24861 (java) S 24850 24853 7084 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 15 0 162569096 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264987707104 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24862] ppid=24850 vsize=10551232 memory=1724 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24862/stat : 24862 (java) S 24850 24853 7084 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 15 0 162569096 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264986653952 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24863] ppid=24850 vsize=10551232 memory=988 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24863/stat : 24863 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264985602512 140265424734107 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24864] ppid=24850 vsize=10551232 memory=12320 CPUtime=0.51 cores=1,3,5,7
/proc/24853/task/24864/stat : 24864 (java) S 24850 24853 7084 0 -1 1077944384 2515 0 0 0 51 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264984549664 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24865] ppid=24850 vsize=10551232 memory=1196 CPUtime=0.45 cores=1,3,5,7
/proc/24853/task/24865/stat : 24865 (java) S 24850 24853 7084 0 -1 1077944384 2284 0 0 0 45 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264983497120 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24866] ppid=24850 vsize=10551232 memory=15884 CPUtime=0.18 cores=1,3,5,7
/proc/24853/task/24866/stat : 24866 (java) S 24850 24853 7084 0 -1 1077944384 1366 0 0 0 18 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264982443776 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24867] ppid=24850 vsize=10551232 memory=4044 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24867/stat : 24867 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 162569099 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264981391712 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24868] ppid=24850 vsize=10551232 memory=39512 CPUtime=0.12 cores=1,3,5,7
/proc/24853/task/24868/stat : 24868 (java) S 24850 24853 7084 0 -1 1077944384 587 0 0 0 8 4 0 0 20 0 15 0 162569106 10804461568 2021821 18446744073709551615 4194304 4196468 140735163748064 140264980339760 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
Current children cumulated CPU time: 522.27 s
Current children cumulated vsize: 10551232 KiB
Current children cumulated memory: 8087284 KiB

[startup+292.401 s]
/proc/loadavg: 3.05 2.32 2.23 3/213 24877
/proc/meminfo: memFree=19296132/32770624 swapFree=67108776/67108860
[pid=24853] ppid=24850 vsize=10684512 memory=8088172 CPUtime=522.53 cores=1,3,5,7
/proc/24853/stat : 24853 (java) S 24850 24853 7084 0 -1 1077944320 353964 0 0 0 51528 725 0 0 20 0 16 0 162569085 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140735163730608 140265424715511 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 8 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
/proc/24853/statm: 2671128 2022043 3147 1 0 2660543 0
[pid=24853/tid=24855] ppid=24850 vsize=10684512 memory=68504 CPUtime=197.17 cores=1,3,5,7
/proc/24853/task/24855/stat : 24855 (java) S 24850 24853 7084 0 -1 1077944384 25881 0 0 0 19699 18 0 0 20 0 16 0 162569094 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140265428956192 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 6 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24856] ppid=24850 vsize=10684512 memory=1296 CPUtime=76.27 cores=1,3,5,7
/proc/24853/task/24856/stat : 24856 (java) S 24850 24853 7084 0 -1 1077944384 56077 0 0 0 7459 168 0 0 20 0 16 0 162569094 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140265381681680 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24857] ppid=24850 vsize=10684512 memory=2460 CPUtime=77.46 cores=1,3,5,7
/proc/24853/task/24857/stat : 24857 (java) S 24850 24853 7084 0 -1 1077944384 102473 0 0 0 7562 184 0 0 20 0 16 0 162569094 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140265380629136 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24858] ppid=24850 vsize=10684512 memory=1836 CPUtime=76.68 cores=1,3,5,7
/proc/24853/task/24858/stat : 24858 (java) S 24850 24853 7084 0 -1 1077944384 47307 0 0 0 7500 168 0 0 20 0 16 0 162569094 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140265379576080 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24859] ppid=24850 vsize=10684512 memory=796 CPUtime=77.02 cores=1,3,5,7
/proc/24853/task/24859/stat : 24859 (java) S 24850 24853 7084 0 -1 1077944384 79236 0 0 0 7526 176 0 0 20 0 16 0 162569094 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140265032178064 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24860] ppid=24850 vsize=10684512 memory=8087284 CPUtime=16.57 cores=1,3,5,7
/proc/24853/task/24860/stat : 24860 (java) S 24850 24853 7084 0 -1 1077944384 34643 0 0 0 1654 3 0 0 20 0 16 0 162569096 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140264988760816 140265424726658 0 0 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24861] ppid=24850 vsize=10684512 memory=8087284 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24861/stat : 24861 (java) S 24850 24853 7084 0 -1 1077944384 37 0 0 0 0 0 0 0 20 0 16 0 162569096 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140264987707104 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24862] ppid=24850 vsize=10684512 memory=39512 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24862/stat : 24862 (java) S 24850 24853 7084 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 16 0 162569096 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140264986653952 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24863] ppid=24850 vsize=10684512 memory=636 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24863/stat : 24863 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 162569099 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140264985602512 140265424734107 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24864] ppid=24850 vsize=10684512 memory=1796 CPUtime=0.51 cores=1,3,5,7
/proc/24853/task/24864/stat : 24864 (java) S 24850 24853 7084 0 -1 1077944384 2515 0 0 0 51 0 0 0 20 0 16 0 162569099 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140264984549616 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24865] ppid=24850 vsize=10684512 memory=960 CPUtime=0.45 cores=1,3,5,7
/proc/24853/task/24865/stat : 24865 (java) S 24850 24853 7084 0 -1 1077944384 2284 0 0 0 45 0 0 0 20 0 16 0 162569099 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140264983497072 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24866] ppid=24850 vsize=10684512 memory=1236 CPUtime=0.19 cores=1,3,5,7
/proc/24853/task/24866/stat : 24866 (java) S 24850 24853 7084 0 -1 1077944384 1528 0 0 0 19 0 0 0 20 0 16 0 162569099 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140264982444016 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24867] ppid=24850 vsize=10684512 memory=2240 CPUtime=0 cores=1,3,5,7
/proc/24853/task/24867/stat : 24867 (java) S 24850 24853 7084 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 162569099 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140264981391712 140265424725717 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
[pid=24853/tid=24868] ppid=24850 vsize=10684512 memory=4288 CPUtime=0.12 cores=1,3,5,7
/proc/24853/task/24868/stat : 24868 (java) S 24850 24853 7084 0 -1 1077944384 587 0 0 0 8 4 0 0 20 0 16 0 162569106 10940940288 2022043 18446744073709551615 4194304 4196468 140735163748064 140264980339760 140265424726658 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 36851712 140735163756944 140735163757097 140735163757097 140735163760591 0
Current children cumulated CPU time: 522.53 s
Current children cumulated vsize: 10684512 KiB
Current children cumulated memory: 8088172 KiB

Child status: 0
Real time (s): 292.493
CPU time (s): 522.581
CPU user time (s): 515.284
CPU system time (s): 7.29711
CPU usage (%): 178.665
Max. virtual memory (cumulated for all children) (KiB): 10684512
Max. memory (cumulated for all children) (KiB): 8088172

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 515.284
system time used= 7.29711
maximum resident set size= 8088744
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 354026
page faults= 0
swaps= 0
block input operations= 0
block output operations= 408
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 12552
involuntary context switches= 3797


# summary of solver processes directly reported to runsolver:
#   pid: 24853
#   total CPU time (s): 522.581
#   total CPU user time (s): 515.284
#   total CPU system time (s): 7.29711

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 1.66519 second user time and 2.83636 second system time

The end

Launcher Data

Begin job on node132 at 2017-08-13 14:44:58
IDJOB=4263408
IDBENCH=133226
IDSOLVER=2651
FILE ID=node132/4263408-1502629163
RUNJOBID= node132-1502602071-18557
PBS_JOBID= 
Free space on /tmp= 62028 MiB

SOLVER NAME= sat4j-CSP 2017-07-05
BENCH NAME= XCSP17/MagicSquare/MagicSquare-sum-s1/MagicSquare-23-sum.xml
COMMAND LINE= java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4263408-1502629163/watcher-4263408-1502629163 -o /tmp/evaluation-result-4263408-1502629163/solver-4263408-1502629163 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node132-1502602071-18557 --watchdog 2580  java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar HOME/instance-4263408-1502629163.xml

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

MD5SUM BENCH= d4be5d2e2f36b13e59ce195ffddd0d7a
RANDOM SEED=1867301766

node132.alineos.net Linux 3.10.0-514.16.1.el7.x86_64 #1 SMP Wed Apr 12 15:04:24 UTC 2017

/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor:
performance

/proc/cpuinfo:
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.74
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 16
initial apicid	: 16
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 2
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.74
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 3
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 18
initial apicid	: 18
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 4
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 4
initial apicid	: 4
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.74
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 5
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 20
initial apicid	: 20
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 6
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 6
initial apicid	: 6
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.74
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 7
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 22
initial apicid	: 22
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        28071644 kB
MemAvailable:   28313376 kB
Buffers:          226640 kB
Cached:           339632 kB
SwapCached:           84 kB
Active:          4123084 kB
Inactive:         165324 kB
Active(anon):    3669948 kB
Inactive(anon):   101948 kB
Active(file):     453136 kB
Inactive(file):    63376 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:      67108860 kB
SwapFree:       67108776 kB
Dirty:              1580 kB
Writeback:             4 kB
AnonPages:       3722040 kB
Mapped:            76244 kB
Shmem:             49768 kB
Slab:             108900 kB
SReclaimable:      82112 kB
SUnreclaim:        26788 kB
KernelStack:        3488 kB
PageTables:        12160 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    5180988 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      354332 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   3579904 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      114048 kB
DirectMap2M:    33431552 kB

Free space on /tmp at the end= 62028 MiB
End job on node132 at 2017-08-13 14:49:51