mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-21 22:00:19 +00:00
cephfs: log clone progress
log cephfs clone progress report during cephfs clone operation Signed-off-by: Nikhil-Ladha <nikhilladha1999@gmail.com>
This commit is contained in:
parent
cea8bf8110
commit
c5da289e54
@ -28,16 +28,17 @@ import (
|
||||
|
||||
// cephFSCloneState describes the status of the clone.
|
||||
type cephFSCloneState struct {
|
||||
state admin.CloneState
|
||||
errno string
|
||||
errorMsg string
|
||||
state admin.CloneState
|
||||
progressReport admin.CloneProgressReport
|
||||
errno string
|
||||
errorMsg string
|
||||
}
|
||||
|
||||
// CephFSCloneError indicates that fetching the clone state returned an error.
|
||||
var CephFSCloneError = cephFSCloneState{}
|
||||
var CephFSCloneError = &cephFSCloneState{}
|
||||
|
||||
// ToError checks the state of the clone if it's not cephFSCloneComplete.
|
||||
func (cs cephFSCloneState) ToError() error {
|
||||
func (cs *cephFSCloneState) ToError() error {
|
||||
switch cs.state {
|
||||
case admin.CloneComplete:
|
||||
return nil
|
||||
@ -54,6 +55,14 @@ func (cs cephFSCloneState) ToError() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (cs *cephFSCloneState) GetProgressReport() admin.CloneProgressReport {
|
||||
return admin.CloneProgressReport{
|
||||
PercentageCloned: cs.progressReport.PercentageCloned,
|
||||
AmountCloned: cs.progressReport.AmountCloned,
|
||||
FilesCloned: cs.progressReport.FilesCloned,
|
||||
}
|
||||
}
|
||||
|
||||
// CreateCloneFromSubvolume creates a clone from a subvolume.
|
||||
func (s *subVolumeClient) CreateCloneFromSubvolume(
|
||||
ctx context.Context,
|
||||
@ -87,7 +96,7 @@ func (s *subVolumeClient) CreateCloneFromSubvolume(
|
||||
return err
|
||||
}
|
||||
|
||||
var cloneState cephFSCloneState
|
||||
var cloneState *cephFSCloneState
|
||||
cloneState, err = s.GetCloneState(ctx)
|
||||
if err != nil {
|
||||
log.ErrorLog(ctx, "failed to get clone state: %v", err)
|
||||
@ -157,7 +166,7 @@ func (s *subVolumeClient) CreateCloneFromSnapshot(
|
||||
}
|
||||
}
|
||||
}()
|
||||
var cloneState cephFSCloneState
|
||||
var cloneState *cephFSCloneState
|
||||
// avoid err variable shadowing
|
||||
cloneState, err = s.GetCloneState(ctx)
|
||||
if err != nil {
|
||||
@ -182,7 +191,7 @@ func (s *subVolumeClient) CreateCloneFromSnapshot(
|
||||
}
|
||||
|
||||
// GetCloneState returns the clone state of the subvolume.
|
||||
func (s *subVolumeClient) GetCloneState(ctx context.Context) (cephFSCloneState, error) {
|
||||
func (s *subVolumeClient) GetCloneState(ctx context.Context) (*cephFSCloneState, error) {
|
||||
fsa, err := s.conn.GetFSAdmin()
|
||||
if err != nil {
|
||||
log.ErrorLog(
|
||||
@ -209,10 +218,11 @@ func (s *subVolumeClient) GetCloneState(ctx context.Context) (cephFSCloneState,
|
||||
errStr = failure.ErrStr
|
||||
}
|
||||
|
||||
state := cephFSCloneState{
|
||||
state: cs.State,
|
||||
errno: errno,
|
||||
errorMsg: errStr,
|
||||
state := &cephFSCloneState{
|
||||
state: cs.State,
|
||||
progressReport: cs.ProgressReport,
|
||||
errno: errno,
|
||||
errorMsg: errStr,
|
||||
}
|
||||
|
||||
return state, nil
|
||||
|
@ -28,11 +28,11 @@ import (
|
||||
func TestCloneStateToError(t *testing.T) {
|
||||
t.Parallel()
|
||||
errorState := make(map[cephFSCloneState]error)
|
||||
errorState[cephFSCloneState{fsa.CloneComplete, "", ""}] = nil
|
||||
errorState[CephFSCloneError] = cerrors.ErrInvalidClone
|
||||
errorState[cephFSCloneState{fsa.CloneInProgress, "", ""}] = cerrors.ErrCloneInProgress
|
||||
errorState[cephFSCloneState{fsa.ClonePending, "", ""}] = cerrors.ErrClonePending
|
||||
errorState[cephFSCloneState{fsa.CloneFailed, "", ""}] = cerrors.ErrCloneFailed
|
||||
errorState[cephFSCloneState{fsa.CloneComplete, fsa.CloneProgressReport{}, "", ""}] = nil
|
||||
errorState[*CephFSCloneError] = cerrors.ErrInvalidClone
|
||||
errorState[cephFSCloneState{fsa.CloneInProgress, fsa.CloneProgressReport{}, "", ""}] = cerrors.ErrCloneInProgress
|
||||
errorState[cephFSCloneState{fsa.ClonePending, fsa.CloneProgressReport{}, "", ""}] = cerrors.ErrClonePending
|
||||
errorState[cephFSCloneState{fsa.CloneFailed, fsa.CloneProgressReport{}, "", ""}] = cerrors.ErrCloneFailed
|
||||
|
||||
for state, err := range errorState {
|
||||
require.ErrorIs(t, state.ToError(), err)
|
||||
|
@ -75,7 +75,7 @@ type SubVolumeClient interface {
|
||||
// CreateCloneFromSubVolume creates a clone from the subvolume.
|
||||
CreateCloneFromSubvolume(ctx context.Context, parentvolOpt *SubVolume) error
|
||||
// GetCloneState returns the clone state of the subvolume.
|
||||
GetCloneState(ctx context.Context) (cephFSCloneState, error)
|
||||
GetCloneState(ctx context.Context) (*cephFSCloneState, error)
|
||||
// CreateCloneFromSnapshot creates a clone from the subvolume snapshot.
|
||||
CreateCloneFromSnapshot(ctx context.Context, snap Snapshot) error
|
||||
// CleanupSnapshotFromSubvolume removes the snapshot from the subvolume.
|
||||
|
@ -128,6 +128,17 @@ func CheckVolExists(ctx context.Context,
|
||||
}
|
||||
err = cloneState.ToError()
|
||||
if errors.Is(err, cerrors.ErrCloneInProgress) {
|
||||
progressReport := cloneState.GetProgressReport()
|
||||
// append progress report only if the progress report parameters are present.
|
||||
if progressReport.PercentageCloned != "" {
|
||||
err = fmt.Errorf("%w. progress report: percentage cloned=%s, amount cloned=%s, files cloned=%s",
|
||||
err,
|
||||
progressReport.PercentageCloned,
|
||||
progressReport.AmountCloned,
|
||||
progressReport.FilesCloned)
|
||||
log.ErrorLog(ctx, err.Error())
|
||||
}
|
||||
|
||||
return nil, err
|
||||
}
|
||||
if errors.Is(err, cerrors.ErrClonePending) {
|
||||
|
Loading…
Reference in New Issue
Block a user