Does RabbitMQ server [partially] support downgrade? #12124
-
I understand that the generic answer for this generic question is 'no'. But maybe there are only few well-known breaking versions, that can't be skipped while downgrading, and besides those versions downgrade is allowed? E.g. I suppose that downgrades from
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
We have previously explained in several different discussions that some data migrations are irreversible inherently, and others are irreversible because our small team won't spend our time on them. They are rare for patch releases but can still happen. They are fairly common between feature/minor releases. And for 4.0, it's a guarantee that a number of important internal changes was lined up as it is a new major release in 12 years. Blue-Green deployment should be used for environments that have reasons to believe they may need to downgrade. In fact, Blue-Green deployments is the only safe way to downgrade as well, at least as long as the older cluster would accept a definition file from the newer one. Which is fairly likely. |
Beta Was this translation helpful? Give feedback.
-
@inikulshin our team won't spend more time on any downgrading questions. You know the answer. You know about Blue-Green deployments. Anyone who wants to test downgrades will have to do them on their own and face the consequences (primarily of in-place downgrades) without any support from the core team. |
Beta Was this translation helpful? Give feedback.
We have previously explained in several different discussions that some data migrations are irreversible inherently, and others are irreversible because our small team won't spend our time on them.
They are rare for patch releases but can still happen. They are fairly common between feature/minor releases. And for 4.0, it's a guarantee that a number of important internal changes was lined up as it is a new major release in 12 years.
Blue-Green deployment should be used for environments that have reasons to believe they may need to downgrade. In fact, Blue-Green deployments is the only safe way to downgrade as well, at least as long as the older cluster would accept a definition file from …