Documentation
¶
Index ¶
- Constants
- Variables
- type Config
- func (m *Config) CloneMessageVT() protobuf_go_lite.CloneMessage
- func (m *Config) CloneVT() *Config
- func (this *Config) EqualMessageVT(thatMsg any) bool
- func (this *Config) EqualVT(that *Config) bool
- func (c *Config) EqualsConfig(other config.Config) bool
- func (x *Config) GetCacheSize() int32
- func (c *Config) GetConfigID() string
- func (x *Config) GetKvKeyOpts() *kvkey.Config
- func (x *Config) GetMmapSize() int64
- func (x *Config) GetNoGenerateKey() bool
- func (x *Config) GetNoWriteKey() bool
- func (x *Config) GetPageSize() int32
- func (x *Config) GetPath() string
- func (x *Config) GetStoreConfig() *kvtx.Config
- func (x *Config) GetTable() string
- func (x *Config) GetTempStore() TempStore
- func (x *Config) GetVerbose() bool
- func (x *Config) GetVolumeConfig() *controller.Config
- func (x *Config) MarshalJSON() ([]byte, error)
- func (x *Config) MarshalProtoJSON(s *json.MarshalState)
- func (x *Config) MarshalProtoText() string
- func (m *Config) MarshalToSizedBufferVT(dAtA []byte) (int, error)
- func (m *Config) MarshalToVT(dAtA []byte) (int, error)
- func (m *Config) MarshalVT() (dAtA []byte, err error)
- func (*Config) ProtoMessage()
- func (x *Config) Reset()
- func (m *Config) SizeVT() (n int)
- func (x *Config) String() string
- func (x *Config) UnmarshalJSON(b []byte) error
- func (x *Config) UnmarshalProtoJSON(s *json.UnmarshalState)
- func (m *Config) UnmarshalVT(dAtA []byte) error
- func (c *Config) Validate() error
- type Factory
- func (t *Factory) Construct(ctx context.Context, conf config.Config, opts controller.ConstructOpts) (controller.Controller, error)
- func (t *Factory) ConstructConfig() config.Config
- func (t *Factory) GetConfigID() string
- func (t *Factory) GetControllerID() string
- func (t *Factory) GetVersion() semver.Version
- type Sqlite
- type TempStore
- func (x TempStore) Enum() *TempStore
- func (x TempStore) MarshalJSON() ([]byte, error)
- func (x TempStore) MarshalProtoJSON(s *json.MarshalState)
- func (x TempStore) MarshalProtoText() string
- func (x TempStore) MarshalText() ([]byte, error)
- func (x TempStore) String() string
- func (x *TempStore) UnmarshalJSON(b []byte) error
- func (x *TempStore) UnmarshalProtoJSON(s *json.UnmarshalState)
- func (x *TempStore) UnmarshalText(b []byte) error
Constants ¶
const ControllerID = "hydra/volume/sqlite"
ControllerID identifies the Sqlite volume controller.
Variables ¶
var ( TempStore_name = map[int32]string{ 0: "TempStore_DEFAULT", 1: "TempStore_FILE", 2: "TempStore_MEMORY", } TempStore_value = map[string]int32{ "TempStore_DEFAULT": 0, "TempStore_FILE": 1, "TempStore_MEMORY": 2, } )
Enum value maps for TempStore.
var ConfigID = ControllerID
ConfigID is the id attached to the config objects.
var Version = semver.MustParse("0.0.1")
Version is the version of the sqlite implementation.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
// Path is the file to store the data in.
Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
// Table is the table to store the data in.
// The table will be created on startup if not exists.
Table string `protobuf:"bytes,2,opt,name=table,proto3" json:"table,omitempty"`
// KvKeyOpts are key/value options.
KvKeyOpts *kvkey.Config `protobuf:"bytes,3,opt,name=kv_key_opts,json=kvKeyOpts,proto3" json:"kvKeyOpts,omitempty"`
// Verbose indicates we should log every operation.
Verbose bool `protobuf:"varint,4,opt,name=verbose,proto3" json:"verbose,omitempty"`
// VolumeConfig is the volume controller config.
VolumeConfig *controller.Config `protobuf:"bytes,5,opt,name=volume_config,json=volumeConfig,proto3" json:"volumeConfig,omitempty"`
// StoreConfig is the store configuration for kvtx.
StoreConfig *kvtx.Config `protobuf:"bytes,6,opt,name=store_config,json=storeConfig,proto3" json:"storeConfig,omitempty"`
// NoGenerateKey indicates to skip generating a private key.
// This has no effect if a key already exists.
NoGenerateKey bool `protobuf:"varint,7,opt,name=no_generate_key,json=noGenerateKey,proto3" json:"noGenerateKey,omitempty"`
// NoWriteKey indicates the controller should not write a private key to
// storage if it generates one. This results in an ephemeral volume peer
// identity if there is no key present in the store already.
//
// Has no effect if the store has a peer private key.
NoWriteKey bool `protobuf:"varint,8,opt,name=no_write_key,json=noWriteKey,proto3" json:"noWriteKey,omitempty"`
// CacheSize sets the SQLite cache_size pragma. Positive values are pages,
// negative values are KiB. 0 leaves the SQLite default (-2000, ~2 MiB).
CacheSize int32 `protobuf:"varint,9,opt,name=cache_size,json=cacheSize,proto3" json:"cacheSize,omitempty"`
// MmapSize sets the SQLite mmap_size pragma in bytes. 0 leaves the SQLite
// default (0, mmap disabled). Capped by the compile-time max mmap size.
MmapSize int64 `protobuf:"varint,10,opt,name=mmap_size,json=mmapSize,proto3" json:"mmapSize,omitempty"`
// TempStore selects the SQLite temp_store pragma. Defaults to the SQLite
// compiled default when unset.
TempStore TempStore `protobuf:"varint,11,opt,name=temp_store,json=tempStore,proto3" json:"tempStore,omitempty"`
// PageSize sets the SQLite page_size pragma in bytes. Must be a power of
// two between 512 and 65536. 0 leaves the SQLite default (4096). Only
// takes effect on a fresh database; ignored if the file already exists.
PageSize int32 `protobuf:"varint,12,opt,name=page_size,json=pageSize,proto3" json:"pageSize,omitempty"`
// contains filtered or unexported fields
}
Config is the sqlite volume controller config.
func (*Config) CloneMessageVT ¶
func (m *Config) CloneMessageVT() protobuf_go_lite.CloneMessage
func (*Config) EqualMessageVT ¶
func (*Config) EqualsConfig ¶
EqualsConfig checks if the config is equal to another.
func (*Config) GetCacheSize ¶ added in v0.51.0
func (*Config) GetConfigID ¶
GetConfigID returns the unique string for this configuration type. This string is stored with the encoded config.
func (*Config) GetKvKeyOpts ¶
func (*Config) GetMmapSize ¶ added in v0.51.0
func (*Config) GetNoGenerateKey ¶
func (*Config) GetNoWriteKey ¶
func (*Config) GetPageSize ¶ added in v0.51.0
func (*Config) GetStoreConfig ¶
func (*Config) GetTempStore ¶ added in v0.51.0
func (*Config) GetVerbose ¶
func (*Config) GetVolumeConfig ¶
func (x *Config) GetVolumeConfig() *controller.Config
func (*Config) MarshalJSON ¶
MarshalJSON marshals the Config to JSON.
func (*Config) MarshalProtoJSON ¶
func (x *Config) MarshalProtoJSON(s *json.MarshalState)
MarshalProtoJSON marshals the Config message to JSON.
func (*Config) MarshalProtoText ¶
func (*Config) MarshalToSizedBufferVT ¶
func (*Config) ProtoMessage ¶
func (*Config) ProtoMessage()
func (*Config) UnmarshalJSON ¶
UnmarshalJSON unmarshals the Config from JSON.
func (*Config) UnmarshalProtoJSON ¶
func (x *Config) UnmarshalProtoJSON(s *json.UnmarshalState)
UnmarshalProtoJSON unmarshals the Config message from JSON.
func (*Config) UnmarshalVT ¶
type Factory ¶
type Factory struct {
// contains filtered or unexported fields
}
Factory constructs a sqlite volume.
func (*Factory) Construct ¶
func (t *Factory) Construct( ctx context.Context, conf config.Config, opts controller.ConstructOpts, ) (controller.Controller, error)
Construct constructs the associated controller given configuration.
func (*Factory) ConstructConfig ¶
ConstructConfig constructs an instance of the controller configuration.
func (*Factory) GetConfigID ¶
GetConfigID returns the unique ID for the config.
func (*Factory) GetControllerID ¶
GetControllerID returns the unique ID for the controller.
func (*Factory) GetVersion ¶
GetVersion returns the version of this controller.
type TempStore ¶ added in v0.51.0
type TempStore int32
TempStore selects the SQLite temp_store pragma value.
const ( // TempStore_DEFAULT uses the SQLite-compiled default (file). TempStore_TempStore_DEFAULT TempStore = 0 // TempStore_FILE forces temp tables and indexes onto disk. TempStore_TempStore_FILE TempStore = 1 // TempStore_MEMORY keeps temp tables and indexes in memory. TempStore_TempStore_MEMORY TempStore = 2 )
func (TempStore) MarshalJSON ¶ added in v0.51.0
MarshalJSON marshals the TempStore to JSON.
func (TempStore) MarshalProtoJSON ¶ added in v0.51.0
func (x TempStore) MarshalProtoJSON(s *json.MarshalState)
MarshalProtoJSON marshals the TempStore to JSON.
func (TempStore) MarshalProtoText ¶ added in v0.51.0
func (TempStore) MarshalText ¶ added in v0.51.0
MarshalText marshals the TempStore to text.
func (*TempStore) UnmarshalJSON ¶ added in v0.51.0
UnmarshalJSON unmarshals the TempStore from JSON.
func (*TempStore) UnmarshalProtoJSON ¶ added in v0.51.0
func (x *TempStore) UnmarshalProtoJSON(s *json.UnmarshalState)
UnmarshalProtoJSON unmarshals the TempStore from JSON.
func (*TempStore) UnmarshalText ¶ added in v0.51.0
UnmarshalText unmarshals the TempStore from text.