RapidProM error when executing Conformance checking
lutsa21
New Altair Community Member
I installed RapidProM and most operators work fine. However, when I try to execute the conformance checking operator I get the following error. I'm using MacOS.
Process failed: class org.rapidprom.operators.conformance.ConformanceAnalysisOperator tried to access private method 'void com.google.common.util.concurrent.SimpleTimeLimiter.<init>(java.util.concurrent.ExecutorService)' (org.rapidprom.operators.conformance.ConformanceAnalysisOperator is in unnamed module of loader com.rapidminer.tools.plugin.PluginClassLoader @455824ad; com.google.common.util.concurrent.SimpleTimeLimiter is in unnamed module of loader 'app')
Please help! thank you
Process failed: class org.rapidprom.operators.conformance.ConformanceAnalysisOperator tried to access private method 'void com.google.common.util.concurrent.SimpleTimeLimiter.<init>(java.util.concurrent.ExecutorService)' (org.rapidprom.operators.conformance.ConformanceAnalysisOperator is in unnamed module of loader com.rapidminer.tools.plugin.PluginClassLoader @455824ad; com.google.common.util.concurrent.SimpleTimeLimiter is in unnamed module of loader 'app')
Please help! thank you
0
Answers
-
same issue
0 -
Hi,
RapidProM is a third party extension. The used method was deprecated and later made private in 2017.
The Extension would have to be rebuild against RapidMiner 10.
For this issue it should be enough to use the "new" static SimpleTimeLimiter.create(ExecutorService) method instead of new SimpleTimeLimiter(ExecutorService). But there might be other things that also fail.
Greetings,
Jonas1