Skip to content
Advertisement

Ubuntu kernel kills CPLEX ILP process due to out of memory

I’m working with the ILOG CPLEX library in Java to solve an ILP problem. I’m using the default settings and did not adjust any parameters. I used the example code which I found online in samples for my main loop:

JavaScript

I launched my jar on an Ubuntu 14 system with 24GB RAM and let it solve larger problems. When my problem becomes too big to solve with 24GB RAM I expect CPLEX to return false from the solve method. Instead, my CPLEX keeps running endlessly until my kernel kills the process. I verified this by checking kern.log:

JavaScript

This is my first time working with CPLEX and I was wondering how I can make it so that CPLEX will return false to the solve method when it runs out of memory to work with (rather than starving the system resources)?

I tried looking this up online and found some C++ threads about the WorkMem and TreeLimit parameters but I am unable to find how I can configure these with the Java library.

Is anyone able to help me out further please? Thanks.

EDIT: Here is the CPLEX log

JavaScript

It goes on until the kernel kills it.

Advertisement

Answer

To change the WorkMem parameter, you’d do something like this:

JavaScript

See the documentation for TreeLimit and MIP.Strategy.File. While looking into this, I spotted a minor problem in the TreeLimit documentation. It mentions 128MB there (the old default value of WorkMem), but it should be 2048MB instead. This is being fixed.

You can find many examples of how to change parameters in the examples shipped with CPLEX (e.g., MIPex3.java, etc., which can be found in the examples sub-directory).

For more information see running out of memory.

All of the links here are for CPLEX 12.6.2, but you should be able to select the documentation for different versions in the knowledge center if you have something else installed.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement