You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 28, 2023. It is now read-only.
This has been solved but want to document it with the solution.
We need a later version of AWS to take advantage of some new APIs, including starting a shard iterator from a timestamp. Only available in 1.11.x, the latest version. The only issue this causes is with the jackson dependencies, since AWS uses a newer version (2.6.6) than airlift (2.4.4). Since those jackson JARs are provided in Presto we must exclude them here. When using this older version of Jackson, we need to supply a system property in jvm.config to avoid invoking new code:
-Dcom.amazonaws.sdk.disableCbor=true
The Cbor format is only in the newer versions of Jackson: 2.5.x and 2.6.x.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This has been solved but want to document it with the solution.
We need a later version of AWS to take advantage of some new APIs, including starting a shard iterator from a timestamp. Only available in 1.11.x, the latest version. The only issue this causes is with the jackson dependencies, since AWS uses a newer version (2.6.6) than airlift (2.4.4). Since those jackson JARs are provided in Presto we must exclude them here. When using this older version of Jackson, we need to supply a system property in jvm.config to avoid invoking new code:
The Cbor format is only in the newer versions of Jackson: 2.5.x and 2.6.x.
The text was updated successfully, but these errors were encountered: