Azure SDK is over 500 MB and growing on each release
https://github.com/Azure/azure-sdk-for-python/issues/17801
The azure SDK is ridiculously large for reasons that I have a hard time understanding. We pip install it for our CI pipelines and the vast majority of the size of our container is coming from the Azure SDK, in the SDK the network directory is taking almost half of the size and this is because there are 39 versions of the SDK.
I have never seen anyone doing such a strange approach to version their API clients. I fail to understand why anyone would even want to use the client from 2015 on a cloud product like Azure.
root@1bba10bd1500:~/.pyenv/versions/3.9.2/lib/python3.9/site-packages/azure/mgmt/network# du -shc * | grep M | sort -n
1.2M aio
2.4M v2015_06_15
3.3M v2016_09_01
3.5M v2016_12_01
3.7M v2017_03_01
4.4M v2017_06_01
4.4M v2017_08_01
4.9M v2017_09_01
5.1M v2017_10_01
5.1M v2017_11_01
5.1M v2018_01_01
5.7M v2018_02_01
6.5M v2018_04_01
6.6M v2018_06_01
6.9M v2018_07_01
8.3M v2018_08_01
8.4M v2018_10_01
8.6M v2018_11_01
8.8M v2018_12_01
9.0M v2019_02_01
9.5M v2019_04_01
10M v2019_06_01
11M v2019_07_01
11M v2019_08_01
11M v2019_09_01
11M v2019_11_01
11M v2019_12_01
12M v2020_03_01
12M v2020_04_01
13M v2020_05_01
13M v2020_06_01
13M v2020_07_01
13M v2020_08_01
259M total
Can the default release only prove the latest version of the client libraries, or at least provide a 'lean' version of the SDK? This release model is certainly not sustainable and is causing useless grief to your users.