Does anything like the Antithesis hypervisor exist as open source? The closest I've seen is Qemu record/replay, but that's very slow (no KVM acceleration, no multicore), and broken in current Qemu versions (replayed system just gets stuck).
Debugging in the Multiverse
21–30 of 62 posts
Re: Debugging in the Multiverse
#22How does this tooling deal with that?
Re: Debugging in the Multiverse
#23Pretty much no software, even when run deterministically, is bijective. There are almost always cases where two different states map to the same state. How does this tooling deal with that?
The "onto" direction doesn't really matter.
Re: Debugging in the Multiverse
#24Re: Debugging in the Multiverse
#25Does anything like the Antithesis hypervisor exist as open source? The closest I've seen is Qemu record/replay, but that's very slow (no KVM acceleration, no multicore), and broken in current Qemu versions (replayed system just gets stuck).
There's languages that support time travel debugging, like RR for GDB, or smalltalk, but no open source system wide thing like Antithesis that I know of yet.
Re: Debugging in the Multiverse
#26Pretty much no software, even when run deterministically, is bijective. There are almost always cases where two different states map to the same state. How does this tooling deal with that?
This makes the mapping "injective": https://antithesis.com/blog/deterministic_hypervisor/ The "onto" direction doesn't really matter.
Re: Debugging in the Multiverse
#27Earlier quoted context omitted.
This makes the mapping "injective": https://antithesis.com/blog/deterministic_hypervisor/ The "onto" direction doesn't really matter.
How can it reverse time? Does it record a stack of every decision point?
Re: Debugging in the Multiverse
#28Re: Debugging in the Multiverse
#29I don't really see a fit for the automated testing product in our stack at the moment, but I would love to use a time traveling hypervisor that I can hop into whenever I'd like.
Currently, it seems your pricing is pretty focused on the automated testing service. Do you have pricing or plans that offer just the deterministic dev environment?
Re: Debugging in the Multiverse
#30Earlier quoted context omitted.
Yes, unfortunately we have not figured out how to rewind time in the real world yet. When we do, there are a lot of choices I'm going to revisit...
... but the intro makes it sound like this system is valuable in investigating bugs that occurred in prod systems: > I’ve been involved in too many production outages and emergencies whose aftermath felt just like that. Eventually all the alerts and alarms get resolved and the error rates creep back down. And then what? Cordon the servers off with yellow police tape? The bug that caused the outage is there in your co…