Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any good Java thread migration packages?

There has been a tremendous amount of research on migrating Java threads between different JVMs on different machines, but is there some publicly available, maintained, de facto implementation that everyone uses? If there is not one good implementation, but multiple ones, which one do you guys recommend and why?

(Note: I'm not talking about database migrations, I'm not asking about Hadoop, RMI, actors, or looking for any other way of doing distributed computing, I need information specifically on thread migration for Java, not Scala [yes I'm aware of the continuations in bleeding edge] or anything else which can sit on the JVM.)

like image 351
artif Avatar asked Jan 25 '10 08:01

artif


1 Answers

Not sure this is what you are after but...

I know of a couple projects using javaflow to migrate between JVMs. The project needs a few more users to finally see a release though. And contributors that are up to the task are hard to come by. But maybe give it a try. It has a few restrictions/overhead compared to jvm-native migrations.

You might also might want to have a look into this paper about mobile agent migrations.

like image 126
tcurdt Avatar answered Oct 16 '22 00:10

tcurdt