Hydra: 1.2
defaults: - storage: aws - optional region: ${storage.region} Hydra was notorious for adding 200–400ms to script startup time because it parsed every @dataclass and OmegaConf structure recursively. For long-running training jobs, this didn't matter. For serverless functions or CLIs? It hurt.
If you have ever tried to manage a massive Python configuration file full of nested dictionaries, you know the pain. That is why the open-source community fell in love with (from Facebook Research). It allows you to compose dynamic configurations from multiple files and override anything from the command line. hydra 1.2
This moves Hydra away from rigid inheritance trees (which often broke) toward a more flexible composition model. You can now write: defaults: - storage: aws - optional region: ${storage



