Originally posted by: StefanRopke
We have implemented a column generation algorithm that uses CPLEX 12.9.0 for solving the master and sub-problem. Unfortunately, it seems like we once in a while gets stuck while solving the sub-problem (which is a MIP). We have put a time limit on the sub-problem solves by setting CPX_PARAM_DETTILIM = 100000 so I think we can rule out that we have just encountered a hard sub-problem (the program is stuck for hours). The issue is non-deterministic, the problem may or may not occur when solving a specific instance. We believe that our column generation code is deterministic. Computations take place on a Linux cluster where we are submitting jobs using IBM LSF (https://en.wikipedia.org/wiki/Platform_LSF). The problem seems to only occur (or perhaps it's just more pronounced) when we have submitted multiple jobs to LSF. We do not use all threads of the computers in the cluster so multiple instances of our program may be running on the same computer.
The algorithm is programmed in Julia v1.1.1 and we are using CPLEX.jl v0.5.0 and JuMP.jl 0.18.5 as an interface to CPLEX. When solving the sub-problem we allow CPLEX to use multiple threads (in the case below we used 4 threads).
When the program gets stuck in the sub-problem it is eventually stopped by the queuing system and we get a stack trace. An example of the stack trace is shown below. I interpret this as CPLEX waiting for a condition using pthread_cond_wait. I guess that "_380e5c4656a6f664b227344161da1705" and so on are function names that have been obfuscated. iI the function names can be translated back to something meaningful, then perhaps someone in the CPLEX team can use this to provide us a hint to why we are stuck, based on the stack-trace?
Best regards,
Stefan
signal (2): Interrupt
in expression starting at /zhome/e7/c/23631/clusterDikuSVN/Julia/AutoDec/AutoDecCMD.jl:69
pthread_cond_wait at /lib64/libpthread.so.0 (unknown line)
_380e5c4656a6f664b227344161da1705 at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_a2c676a7e5fa4ef62804ea26f60b6985 at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_489ebd4c5c9af8d527368ef7798879f4 at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_c1c77f10ee3987dbacd6e1ff57562a0d at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_458c27ff5e8b53b24f24b11298e4748a at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_6874c3b6b6be3f68ecba8390ec5eef57 at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_f68671c86e58ee857262d57e613a989e at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_6461e05fddcc3cd8f9bc66780cf8fd0f at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_d8cf0d78b73b992f462a67ac0246cadf at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_a5ac66bf2a77f76a39d6d39cb35ec3b8 at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_8727296eaaa73edeafa0b13f8264cf6b at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_c61c6b0d728c97d9284b71d6d09582c0 at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_00d3484724425db51115f7f77592bc7d at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_c69cadd8f44da6e42b444e6f0807896a at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_6874c3b6b6be3f68ecba8390ec5eef57 at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_0ff8510b91f0240cafe918f6ab601dab at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_cac20a5c347b91b75f3929b6cf82c567 at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_5ce57952ba3c58d45c4ff1caf38ccdb0 at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
_8bd0e61f623cb30e4bf612edcfdd2080 at /apps/cplex/cplex129/cplex/bin/x86-64_linux/libcplex1290.so (unknown line)
optimize! at /zhome/e7/c/23631/.julia/packages/CPLEX/NzxB3/src/cpx_solve.jl:7 [inlined]
optimize! at /zhome/e7/c/23631/.julia/packages/CPLEX/NzxB3/src/CplexSolverInterface.jl:185
#CPLEXOptimizers#DecisionOptimization