milvus/internal/streamingnode/server/walmanager/manager.go

34 lines
1.1 KiB
Go

package walmanager
import (
"context"
"github.com/milvus-io/milvus/internal/streamingnode/server/wal"
"github.com/milvus-io/milvus/pkg/streaming/util/types"
)
var _ Manager = (*managerImpl)(nil)
// Manager is the interface for managing the wal instances.
type Manager interface {
// Open opens a wal instance for the channel on this Manager.
// Return `IgnoreOperation` error if the channel is not found.
// Return `UnmatchedChannelTerm` error if the channel term is not matched.
Open(ctx context.Context, channel types.PChannelInfo) error
// GetAvailableWAL returns a available wal instance for the channel.
// Return nil if the wal instance is not found.
GetAvailableWAL(channel types.PChannelInfo) (wal.WAL, error)
// GetAllAvailableWALInfo returns all available channel info.
GetAllAvailableChannels() ([]types.PChannelInfo, error)
// Remove removes the wal instance for the channel.
// Return `IgnoreOperation` error if the channel is not found.
// Return `UnmatchedChannelTerm` error if the channel term is not matched.
Remove(ctx context.Context, channel types.PChannelInfo) error
// Close these manager and release all managed WAL.
Close()
}