diff --git a/pkg/ddc/alluxio/ufs_internal.go b/pkg/ddc/alluxio/ufs_internal.go index 69b56ee8728..8921195c5b7 100644 --- a/pkg/ddc/alluxio/ufs_internal.go +++ b/pkg/ddc/alluxio/ufs_internal.go @@ -41,6 +41,10 @@ func (e *AlluxioEngine) usedStorageBytesInternal() (value int64, err error) { return } + +// freeStorageBytesInternal returns the amount of free storage space (in bytes) within the Alluxio filesystem. +// It currently returns zero values as the implementation has not been completed. +// TODO: implement the query logic to retrieve the actual free bytes from the Alluxio master. func (e *AlluxioEngine) freeStorageBytesInternal() (value int64, err error) { return }