How do I upgrade from OptaPlanner to Timefold?
Learn how to upgrade from Optaplanner to Timefold.
Upgrade from OptaPlanner to Timefold Solver Community Edition today. It only takes 2 minutes.
Run the command below to upgrade your code automatically. Do a test run of the solver and commit the changes. If it doesn’t work, just revert it instead and submit an issue. We’ll fix it with the highest priority.
mvn org.openrewrite.maven:rewrite-maven-plugin:5.38.1:run -Drewrite.recipeArtifactCoordinates=ai.timefold.solver:timefold-solver-migration:1.13.0 -Drewrite.activeRecipes=ai.timefold.solver.migration.ToLatest
curl https://timefold.ai/product/upgrade/upgrade-timefold.gradle > upgrade-timefold.gradle ; gradle -Dorg.gradle.jvmargs=-Xmx2G -Dorg.gradle.jvmargs='-Dfile.encoding=UTF-8' --init-script upgrade-timefold.gradle rewriteRun -DtimefoldSolverVersion=1.13.0 ; rm upgrade-timefold.gradle
Timefold Solver 1.x does not support scoreDRL
, nor is it upgraded automatically.
If you’re still using scoreDRL
from OptaPlanner 7.x,
please upgrade to Constraint Streams first.
Why would I switch from OptaPlanner to Timefold?
Because it’s better:
-
Continuity, responsiveness, know-how and stability: The entire Timefold company is focused on building the best possible planning optimization software and helping you succeed with it. Timefold Solver has many bugfixes and security fixes since it forked from OptaPlanner. We also added powerful new features and enhancements.
-
Performance: Timefold is twice as fast as OptaPlanner out-of-the-box.
-
Distribution size: Cloud deployments love lightweight components. Timefold has all the features of OptaPlanner, but a
jar-with-dependencies
assembly of the same Hello World program is 41% smaller:Timefold Solver has fewer dependencies. This also speeds up your Maven or Gradle build.
-
Documentation: We are constantly improving the documentation and fine-tuning the quickstarts. It’s easier to get started with Timefold than with OptaPlanner.
How do the OptaPlanner and Timefold versions relate?
-
Timefold 0.8.x is a replacement for OptaPlanner 8. It supports Java 11, Java 17, Spring Boot 2, Quarkus 2 and Java EE 8. It has reached its End of Life and is no longer supported.
-
Timefold 1.x is a replacement for OptaPlanner 9. It supports Java 17+, Spring Boot 3, Quarkus 3 and Jakarta EE 10.
Is Timefold Backward Compatible with OptaPlanner?
Yes, except for the branding changes.
Run timefold-migration to automatically change all your code locally. It’s a quick, single command for Maven or Gradle. Then test those changes and commit them. Alternatively, apply the following changes manually.
Timefold Solver 1.x is backward compatible with OptaPlanner 8.x, except that:
-
Minimum Java 17 (LTS). Java 21 (LTS) and the latest Java version are also supported.
-
The Maven/Gradle GAVs changed:
-
The groupId changed from
org.optaplanner
toai.timefold.solver
. -
The artifactIds changed from
optaplanner-*
totimefold-solver-*
. -
ArtifactIds containing
persistence-
changed fromoptaplanner-persistence-*
totimefold-solver-*
.-
For example,
optaplanner-persistence-jackson
changed totimefold-solver-jackson
.
-
-
-
The import statements changed accordingly:
-
import org.optaplanner…;
changed toimport ai.timefold.solver…;
. -
import org.optaplanner.persistence…;
changed toimport ai.timefold.solver…;
too.
-
-
The JEE dependencies changed from
javax
tojakarta
to accommodate Spring 3 and Quarkus 3.-
This is the same difference as between OptaPlanner 8.x and OptaPlanner 9.x.
-
-
The
OptaPlannerJacksonModule
class is now calledTimefoldJacksonModule
. -
The deprecated
scoreDRL
support is removed, because Drools with its transitive dependencies have been removed entirely. -
The unsecure module
persistence-xstream
is removed, because of old, unresolved CVEs in XStream. -
The deprecated, undocumented
ScoreHibernateType
has been removed because of Jakarta. Use JPA’sScoreConverter
instead.
All other deprecated code remains, to make upgrading easy.