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
the rados-sdk branch has WIP on porting the cls to the RADOS sdk. Known things that the SDK does not provide yet (not an exhaustive list, as we're still investigating):
the other methods that the sdk doesn’t expose are the ones that work with lists of keys for the object map (cls_cxx_map_set_vals and cls_cxx_map_get_vals)
some alternatives to solving these:
find different ways to accomplish the same without requiring more functionality exposed via the sdk header.
expose it on our fork, and open a PR.
open an issue on the upstream repo and wait for the community to address that.
The text was updated successfully, but these errors were encountered:
the
rados-sdk
branch has WIP on porting the cls to the RADOS sdk. Known things that the SDK does not provide yet (not an exhaustive list, as we're still investigating):ENCODE
,ENCODE_FINISH
, ... macros. For example they’re used here https://github.com/uccross/skyhookdm-ceph-cls/blob/nautilus/src/cls/cls_tabular.h#L141 . Those are defined in a privateinclude/encoding.h
header.cls_cxx_map_set_vals
andcls_cxx_map_get_vals
)some alternatives to solving these:
The text was updated successfully, but these errors were encountered: