The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
RapidProM error when executing Conformance checking
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
Tagged:
0
Answers
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,
Jonas