-
Couldn't load subscription status.
- Fork 5
Description
Specification
Most, if not all, VaultsSecrets handlers transfer binary data. Doing so using plain JSON isn't the most efficient, as the required bandwidth can be as high as 200% of actual data size, making regular JSON extremely inefficient for transferring binary data.
This is solved by the RawHandler, which is able to stream raw bytes of data directly, bypassing the large overhead. However, it also has many issues, like not supporting error serialisation by default. As such, any errors thrown within the context will hit the transport layer, causing a read 0 error.
To solve this, each handler needs to implement its own method of error serialisation and deserialisation. The handler side needs to serialise the errors so they are passed through as binary data, and the client side needs to deserialise the data back into the original error. Serialising and deserialising all possible errors is not feasible, and should not be done either. Only create serialisation and deserialisation handlers for relevant errors that are expected, and raise a generic error for all other, unexpected errors.
Additional context
- Discussion on this topic Polykey#799
Tasks
- Migrate the following to use
RawHandlers-
VaultsSecretsCat -
VaultsSecretsWrite -
VaultsSecretsCopy -
VaultsSecretsMove -
VaultsSecretsEnv
-