Interface Upgrader
-
- All Known Implementing Classes:
Upgrader8to9
public interface UpgraderThe purpose of this interface is to allow per version upgrade implementations to be created. Keeping the code for upgrading each version separate makes it easier to maintain and understand the upgrade code over time.Upgrade operations should be idempotent. For failure cases upgrade operations may partially complete and then be run again later.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidupgradeMetadata(ServerContext ctx)voidupgradeZookeeper(ServerContext ctx)
-
-
-
Method Detail
-
upgradeZookeeper
void upgradeZookeeper(ServerContext ctx)
-
upgradeMetadata
void upgradeMetadata(ServerContext ctx)
-
-