2021-10-01 15:39:45 +00:00
|
|
|
//go:build !nautilus
|
2021-06-01 09:58:28 +00:00
|
|
|
// +build !nautilus
|
|
|
|
|
|
|
|
package rados
|
|
|
|
|
|
|
|
// #cgo LDFLAGS: -lrados
|
|
|
|
// #include <rados/librados.h>
|
|
|
|
//
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
// Ceph octopus deprecates rados_set_osdmap_full_try() and implements rados_set_pool_full_try()
|
|
|
|
// Ceph octopus deprecates rados_unset_osdmap_full_try() and implements rados_unset_pool_full_try()
|
|
|
|
|
|
|
|
// SetPoolFullTry makes sure to send requests to the cluster despite
|
|
|
|
// the cluster or pool being marked full; ops will either succeed(e.g., delete)
|
|
|
|
// or return EDQUOT or ENOSPC.
|
|
|
|
//
|
|
|
|
// Implements:
|
2023-02-09 17:23:11 +00:00
|
|
|
//
|
|
|
|
// void rados_set_pool_full_try(rados_ioctx_t io);
|
2021-06-01 09:58:28 +00:00
|
|
|
func (ioctx *IOContext) SetPoolFullTry() error {
|
|
|
|
if err := ioctx.validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
C.rados_set_pool_full_try(ioctx.ioctx)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnsetPoolFullTry unsets the flag set by SetPoolFullTry()
|
|
|
|
//
|
|
|
|
// Implements:
|
2023-02-09 17:23:11 +00:00
|
|
|
//
|
|
|
|
// void rados_unset_pool_full_try(rados_ioctx_t io);
|
2021-06-01 09:58:28 +00:00
|
|
|
func (ioctx *IOContext) UnsetPoolFullTry() error {
|
|
|
|
if err := ioctx.validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
C.rados_unset_pool_full_try(ioctx.ioctx)
|
|
|
|
return nil
|
|
|
|
}
|