First, I want to confirm. Are you serializing each automorphism key separately or you are trying to serialize the full map (all keys) at once? You would need to use the former approach.
One automorphism key requires roughly 16 \ell d_{num} N\left(1 + \frac{1}{d_{num}}\right) bytes, where \ell is the number of RNS limbs (close to multiplicative depth), d_{num} is the number of digits in hybrid key switching (by default set to 3), and N is the ring dimension (using 2^{16} or 2^{17}). You can estimate the size of each key for your setting from this. It should not be higher than 1GB for all practically reasonable settings.
If you need more granular serialization, you could serialize each DCRTPoly
separately (size is reduced by 2 \ell \left(1 + \frac{1}{d_{num}}\right)). You would need your custom serialization logic for this.