Documentation ¶
Overview ¶
Package datastore provides versioning and persisting supported data types using one of the supported storage engines.
Index ¶
- Constants
- Variables
- func AddToNodeLog(uuid dvid.UUID, msgs []string) error
- func AddToRepoLog(uuid dvid.UUID, msgs []string) error
- func BlockOnUpdating(uuid dvid.UUID, name dvid.InstanceName) error
- func Close() error
- func CloseReopenTest()
- func CloseTest()
- func Commit(uuid dvid.UUID, note string, log []string) error
- func CompiledChart() string
- func CompiledTypes() map[dvid.TypeString]TypeService
- func CompiledURLs() string
- func CopyInstance(uuid dvid.UUID, source, target dvid.InstanceName, c dvid.Config) error
- func DeleteConflicts(uuid dvid.UUID, data DataService, oldParents, newParents []dvid.UUID) error
- func DeleteDataByName(uuid dvid.UUID, name dvid.InstanceName, passcode string) error
- func DeleteDataByVersion(v dvid.VersionID, name dvid.InstanceName, passcode string) error
- func DeleteRepo(uuid dvid.UUID, passcode string) error
- func GetChildrenByVersion(v dvid.VersionID) ([]dvid.VersionID, error)
- func GetNodeLog(uuid dvid.UUID) ([]string, error)
- func GetParentsByVersion(v dvid.VersionID) ([]dvid.VersionID, error)
- func GetRepoAlias(uuid dvid.UUID) (string, error)
- func GetRepoDescription(uuid dvid.UUID) (string, error)
- func GetRepoJSON(uuid dvid.UUID) (string, error)
- func GetRepoLog(uuid dvid.UUID) ([]string, error)
- func GetRepoRoot(uuid dvid.UUID) (dvid.UUID, error)
- func GetRepoRootVersion(v dvid.VersionID) (dvid.VersionID, error)
- func GetStorageBreakdown() (string, error)
- func Initialize(initMetadata bool, iconfig *InstanceConfig) error
- func LockedUUID(uuid dvid.UUID) (bool, error)
- func LockedVersion(v dvid.VersionID) (bool, error)
- func MarshalJSON() ([]byte, error)
- func MatchingUUID(uuidStr string) (dvid.UUID, dvid.VersionID, error)
- func Merge(parents []dvid.UUID, note string, mt MergeType) (dvid.UUID, error)
- func MigrateInstance(uuid dvid.UUID, source dvid.InstanceName, oldStore dvid.Store, c dvid.Config) error
- func ModifyDataConfigByName(uuid dvid.UUID, name dvid.InstanceName, c dvid.Config) error
- func NewRepo(alias, description string, assign *dvid.UUID, passcode string) (dvid.UUID, error)
- func NewTestRepo() (dvid.UUID, dvid.VersionID)
- func NewUUID(assign *dvid.UUID) (dvid.UUID, dvid.VersionID, error)
- func NewVersion(parent dvid.UUID, note string, assign *dvid.UUID) (dvid.UUID, error)
- func NotifySubscribers(e SyncEvent, m SyncMessage) error
- func OpenTest()
- func PushData(d dvid.Data, p *PushSession) error
- func PushRepo(uuid dvid.UUID, target string, config dvid.Config) error
- func Register(t TypeService)
- func ReloadMetadata() error
- func RenameData(uuid dvid.UUID, oldname, newname dvid.InstanceName, passcode string) error
- func SaveDataByUUID(uuid dvid.UUID, data DataService) error
- func SaveDataByVersion(v dvid.VersionID, data DataService) error
- func SetNodeNote(uuid dvid.UUID, note string) error
- func SetRepoAlias(uuid dvid.UUID, alias string) error
- func SetRepoDescription(uuid dvid.UUID, desc string) error
- func SetSyncByJSON(d dvid.Data, uuid dvid.UUID, replace bool, in io.ReadCloser) error
- func SetSyncData(data dvid.Data, syncs dvid.UUIDSet, replace bool) error
- func Shutdown()
- func Types() (map[dvid.URLString]TypeService, error)
- func UUIDFromVersion(v dvid.VersionID) (dvid.UUID, error)
- func VersionFromUUID(uuid dvid.UUID) (dvid.VersionID, error)
- type CommitSyncer
- type Data
- func (d *Data) BackendStore() (dvid.Store, error)
- func (d *Data) Checksum() dvid.Checksum
- func (d *Data) Compression() dvid.Compression
- func (d *Data) DataName() dvid.InstanceName
- func (d *Data) DataUUID() dvid.UUID
- func (d *Data) Equals(d2 *Data) bool
- func (d *Data) GetGraphDB() (storage.GraphDB, error)
- func (d *Data) GetKeyValueBatcher() (storage.KeyValueBatcher, error)
- func (d *Data) GetKeyValueDB() (storage.KeyValueDB, error)
- func (d *Data) GetOrderedKeyValueDB() (storage.OrderedKeyValueDB, error)
- func (d *Data) GetType() TypeService
- func (d *Data) GobDecode(b []byte) error
- func (d *Data) GobEncode() ([]byte, error)
- func (d *Data) InstanceID() dvid.InstanceID
- func (d *Data) IsMutationRequest(action, endpoint string) bool
- func (d *Data) MarshalJSON() ([]byte, error)
- func (d *Data) ModifyConfig(config dvid.Config) error
- func (d *Data) MutAdd(mutID uint64) (newOp bool)
- func (d *Data) MutDelete(mutID uint64)
- func (d *Data) MutDone(mutID uint64)
- func (d *Data) MutWait(mutID uint64)
- func (d *Data) NewMutationID() uint64
- func (d *Data) PushData(p *PushSession) error
- func (d *Data) RootUUID() dvid.UUID
- func (d *Data) SetBackendStore(store dvid.Store)
- func (d *Data) SetDataUUID(uuid dvid.UUID)
- func (d *Data) SetInstanceID(id dvid.InstanceID)
- func (d *Data) SetName(name dvid.InstanceName)
- func (d *Data) SetRootUUID(uuid dvid.UUID)
- func (d *Data) SetSync(syncs dvid.UUIDSet)
- func (d *Data) SyncPending() bool
- func (d *Data) SyncedData() dvid.UUIDSet
- func (d *Data) SyncedNames() []dvid.InstanceName
- func (d *Data) TypeName() dvid.TypeString
- func (d *Data) TypeURL() dvid.URLString
- func (d *Data) TypeVersion() string
- func (d *Data) Versioned() bool
- type DataAvail
- type DataInitializer
- type DataService
- func GetDataByDataUUID(dataUUID dvid.UUID) (DataService, error)
- func GetDataByUUIDName(uuid dvid.UUID, name dvid.InstanceName) (DataService, error)
- func GetDataByVersionName(v dvid.VersionID, name dvid.InstanceName) (DataService, error)
- func NewData(uuid dvid.UUID, t TypeService, name dvid.InstanceName, c dvid.Config) (DataService, error)
- type DataTxInit
- type InstanceConfig
- type InstanceMutator
- type KVMessage
- type MergeType
- type PropertyCopier
- type PushSession
- type Request
- type Response
- type Shutdowner
- type SyncEvent
- type SyncMessage
- type SyncSub
- type SyncSubs
- type Syncer
- type Type
- type TypeMigrator
- type TypeService
- type TypeUpgrader
- type Updater
- type VersionInitializer
- type VersionRemapper
- type VersionedCtx
- func (vctx *VersionedCtx) GetGraphDB() (storage.GraphDB, error)
- func (vctx *VersionedCtx) GetKeyValueDB() (storage.KeyValueDB, error)
- func (vctx *VersionedCtx) GetOrderedKeyValueDB() (storage.OrderedKeyValueDB, error)
- func (vctx *VersionedCtx) String() string
- func (vctx *VersionedCtx) Versioned() bool
- func (vctx *VersionedCtx) VersionedKeyValue(values []*storage.KeyValue) (*storage.KeyValue, error)
Constants ¶
const ( StartDataMsg = "datastore.startData" PutKVMsg = "datastore.putKV" )
const ( WebAddress = "localhost:8657" RPCAddress = "localhost:8658" WebClientDir = "" )
const RepoFormatVersion = 1
The current repo metadata format version
const (
Version = "0.10.0"
)
Variables ¶
var ( ErrManagerNotInitialized = errors.New("datastore repo manager not initialized") ErrBadMergeType = errors.New("bad merge type") ErrInvalidUUID = errors.New("UUID is not present in datastore") ErrInvalidVersion = errors.New("server-specific version id is invalid") ErrInvalidRepoID = errors.New("server-specific repo id is invalid") ErrExistingUUID = errors.New("UUID already exists in datastore") ErrExistingDataName = errors.New("data name already exists") ErrInvalidDataName = errors.New("invalid data instance name") ErrInvalidDataInstance = errors.New("invalid data instance id") ErrInvalidDataUUID = errors.New("invalid data instance UUID") ErrInvalidStore = errors.New("invalid data store") ErrModifyLockedNode = errors.New("can't modify locked node") ErrBranchUnlockedNode = errors.New("can't branch an unlocked node") )
var ( // Compiled is the set of registered datatypes compiled into DVID and // held as a global variable initialized at runtime. Compiled map[dvid.URLString]TypeService )
Functions ¶
func BlockOnUpdating ¶ added in v0.8.4
func BlockOnUpdating(uuid dvid.UUID, name dvid.InstanceName) error
BlockOnUpdating blocks until the given data is not updating from syncs or has events waiting in sync channels. Primarily used during testing.
func CloseReopenTest ¶
func CloseReopenTest()
CloseReopenTest forces close and then reopening of the datastore, useful for testing persistence. We only allow close/reopen when all tests not avaiting close/reopen are finished.
func CompiledChart ¶
func CompiledChart() string
CompiledChart returns a chart (names/urls) of datatypes compiled into this DVID.
func CompiledTypes ¶ added in v0.8.0
func CompiledTypes() map[dvid.TypeString]TypeService
CompiledTypes returns a map of datatypes compiled into this DVID.
func CompiledURLs ¶
func CompiledURLs() string
CompiledURLs returns a list of datatype urls supported by this DVID.
func CopyInstance ¶ added in v0.8.2
CopyInstance copies a data instance locally, perhaps to a different storage engine if the new instance uses a different backend per a data instance-specific configuration. (See sample config.example.toml file in root dvid source directory.)
func DeleteConflicts ¶
DeleteConflicts removes all conflicted kv pairs for the given data instance using the priority established by parents. As a side effect, newParents are modified by new children of parents.
func DeleteDataByName ¶ added in v0.8.3
DeleteDataByName returns a data service given an instance name and UUID.
func DeleteDataByVersion ¶
DeleteDataByVersion returns a data service given an instance name and UUID.
func DeleteRepo ¶
DeleteRepo deletes a Repo holding a node with UUID.
func GetChildrenByVersion ¶
GetChildren returns the child nodes of the given version id.
func GetParentsByVersion ¶
GetParents returns the parent nodes of the given version id.
func GetStorageBreakdown ¶ added in v0.8.5
GetStorageBreakdown returns JSON for all the data instances in the stores.
func Initialize ¶
func Initialize(initMetadata bool, iconfig *InstanceConfig) error
Initialize creates a repositories manager that is handled through package functions.
func LockedUUID ¶
LockedUUID returns true if a given UUID is locked.
func LockedVersion ¶
LockedVersion returns true if a given version is locked.
func MarshalJSON ¶
MarshalJSON returns JSON of object where each repo is a property with root UUID name and value corresponding to repo info.
func MatchingUUID ¶
MatchingUUID returns version identifiers that uniquely matches a uuid string.
func MigrateInstance ¶ added in v0.8.2
func MigrateInstance(uuid dvid.UUID, source dvid.InstanceName, oldStore dvid.Store, c dvid.Config) error
MigrateInstance migrates a data instance locally from an old storage engine to the current configured storage. After completion of the copy, the data instance in the old storage is deleted.
func ModifyDataConfigByName ¶ added in v0.8.3
func NewRepo ¶
NewRepo creates a new Repo and returns its UUID, either an assigned UUID if provided or creating a new UUID.
func NewTestRepo ¶
NewTestRepo returns a new datastore.Repo suitable for testing.
func NewVersion ¶
NewVersion creates a new version as a child of the given parent. If the assign parameter is not nil, the new node is given the UUID.
func NotifySubscribers ¶
func NotifySubscribers(e SyncEvent, m SyncMessage) error
NotifySubscribers sends a message to any data instances subscribed to the event.
func PushData ¶ added in v0.8.2
func PushData(d dvid.Data, p *PushSession) error
PushData transfers all key-value pairs pertinent to the given data instance. Each datatype can implement filters that can restrict the transmitted key-value pairs based on the given FilterSpec. Note that because of the generality of this function, a particular datatype implementation could be much more efficient when implementing filtering. For example, the imageblk datatype could scan its key-values using the ROI to generate keys (since imageblk keys will likely be a vast superset of ROI spans), while this generic routine will scan every key-value pair for a data instance and query the ROI to see if this key is ok to send.
func PushRepo ¶ added in v0.8.2
PushRepo pushes a Repo to a remote DVID server at the target address.
func ReloadMetadata ¶ added in v0.8.0
func ReloadMetadata() error
ReloadMetadata reloads the repositories manager from an existing metadata store. This should only be called while no other requests are ongoing to the datastore package.
func RenameData ¶ added in v0.8.3
RenameData renames a data service given an old instance name and UUID.
func SaveDataByUUID ¶
func SaveDataByUUID(uuid dvid.UUID, data DataService) error
SaveDataByUUID persists metadata for a data instance with given uuid. TODO -- Make this more efficient by storing data metadata separately from repo.
Currently we save entire repo.
func SaveDataByVersion ¶
func SaveDataByVersion(v dvid.VersionID, data DataService) error
SaveDataByVersion persists metadata for a data instance with given version. TODO -- Make this more efficient by storing data metadata separately from repo.
Currently we save entire repo.
func SetSyncByJSON ¶ added in v0.8.3
SetSyncByJSON takes a JSON object of sync names and UUID, and creates the sync graph and sets the data instance's sync. If replace is false (default), the new sync is appended to the current syncs.
func SetSyncData ¶ added in v0.8.3
SetSyncData modfies the manager sync graphs and data instance's sync list. If replace is false (default), the new sync is appended to the current syncs.
func Shutdown ¶
func Shutdown()
Shutdown sends signal for all goroutines for data processing to be terminated.
Types ¶
type CommitSyncer ¶
type CommitSyncer interface { // SyncOnCommit is an asynchronous function that should be called when a node is committed. SyncOnCommit(dvid.UUID, dvid.VersionID) }
CommitSyncer want to be notified when a node is committed.
type Data ¶
type Data struct {
// contains filtered or unexported fields
}
Data is the base struct of repo-specific data instances. It should be embedded in a datatype's DataService implementation and handle datastore-wide key partitioning.
func NewDataService ¶
func NewDataService(t TypeService, rootUUID dvid.UUID, id dvid.InstanceID, name dvid.InstanceName, c dvid.Config) (*Data, error)
NewDataService returns a new Data instance that fulfills the DataService interface. The UUID passed in corresponds to the root UUID of the DAG subgraph that should hold the data. This returned Data struct is usually embedded by datatype-specific data instances. By default, LZ4 and the default checksum is used.
func (*Data) Compression ¶
func (d *Data) Compression() dvid.Compression
func (*Data) DataName ¶
func (d *Data) DataName() dvid.InstanceName
func (*Data) Equals ¶
Equals returns true if the two data instances are identical, not just referring to the same data instance (e.g., different names but same data UUID, etc).
func (*Data) GetGraphDB ¶ added in v0.8.1
GetGraphDB returns a graph store assigned to this data instance. If the store is nil or not available, an error is returned.
func (*Data) GetKeyValueBatcher ¶ added in v0.8.1
func (d *Data) GetKeyValueBatcher() (storage.KeyValueBatcher, error)
GetKeyValueBatcher returns a batch-capable kv data store assigned to this data instance. If the store is nil or not available, an error is returned.
func (*Data) GetKeyValueDB ¶ added in v0.8.1
func (d *Data) GetKeyValueDB() (storage.KeyValueDB, error)
GetKeyValueDB returns a kv data store assigned to this data instance. If the store is nil or not available, an error is returned.
func (*Data) GetOrderedKeyValueDB ¶ added in v0.8.1
func (d *Data) GetOrderedKeyValueDB() (storage.OrderedKeyValueDB, error)
GetOrderedKeyValueDB returns the ordered kv data store assigned to this data instance. If the store is nil or not available, an error is returned.
func (*Data) GetType ¶
func (d *Data) GetType() TypeService
func (*Data) InstanceID ¶
func (d *Data) InstanceID() dvid.InstanceID
func (*Data) IsMutationRequest ¶ added in v0.8.5
IsMutationRequest is the default definition of mutation requests. All POST, PUT, and DELETE actions return true, while others return false.
func (*Data) MarshalJSON ¶
func (*Data) MutAdd ¶ added in v0.8.5
MutAdd adds a wait to this operation. Returns true if this is a new operation for this Data
func (*Data) MutDelete ¶ added in v0.8.5
MutDelete removes a wait for this operation. Should only be done after all MutWait() have completed.
func (*Data) MutWait ¶ added in v0.8.5
MutWait blocks until all operations with the given ID are completed.
func (*Data) NewMutationID ¶ added in v0.8.5
func (*Data) PushData ¶ added in v0.8.2
func (d *Data) PushData(p *PushSession) error
PushData is the base implementation of pushing data instance key-value pairs to a remote DVID without any datatype-specific filtering of data.
func (*Data) SetBackendStore ¶ added in v0.8.1
func (*Data) SetDataUUID ¶ added in v0.8.3
func (*Data) SetInstanceID ¶
func (d *Data) SetInstanceID(id dvid.InstanceID)
func (*Data) SetName ¶ added in v0.8.3
func (d *Data) SetName(name dvid.InstanceName)
func (*Data) SetRootUUID ¶ added in v0.8.3
func (*Data) SetSync ¶ added in v0.8.0
SetSync sets the list of synced UUIDs for this data instance. It does not modify the sync graph.
func (*Data) SyncPending ¶ added in v0.8.5
SyncPending returns true if there are outstanding sync events in this instance's subscription.
func (*Data) SyncedData ¶ added in v0.8.3
SyncedData returns a set of data UUIDs to which it is synced.
func (*Data) SyncedNames ¶
func (d *Data) SyncedNames() []dvid.InstanceName
SyncedNames returns a set of data instance names to which it is synced. Legacy and will be removed after metadata refactor.
func (*Data) TypeName ¶
func (d *Data) TypeName() dvid.TypeString
func (*Data) TypeVersion ¶
type DataAvail ¶
type DataAvail uint8
DataAvail gives the availability of data within a node or whether parent nodes must be traversed to check for key-value pairs.
const ( // For any query, we must also traverse this node's ancestors in the DAG // up to any DataComplete ancestor. Used if a node is marked as archived. DataDelta DataAvail = iota // All key-value pairs are available within this node. DataComplete // Queries are redirected to Root since this is unversioned. DataRoot // Data has been explicitly deleted at this node and is no longer available. DataDeleted )
type DataInitializer ¶ added in v0.8.5
type DataInitializer interface {
InitDataHandlers() error
}
DataInitializer is a data instance that needs to be initialized, e.g., start long-lived goroutines that handle data syncs, etc. Initialization should only constitute supporting data and goroutines and not change the data itself like InstanceMutator, so no saveNeeded flag needs to be returned.
type DataService ¶
type DataService interface { dvid.Data storage.Accessor json.Marshaler Help() string GetType() TypeService // ModifyConfig modifies a configuration in a type-specific way. ModifyConfig(dvid.Config) error // IsMutationRequest returns true if the given HTTP method on the endpoint results in mutations. // This allows datatypes to define actions on an endpoint as immutable even if they use POST. // The endpoint is the keyword immediately following a data instance name in the URL: // /api/node/483f/grayscale/raw/xy/... // In the above URL, "raw" is the endpoint. IsMutationRequest(action, endpoint string) bool // DoRPC handles command line and RPC commands specific to a data type DoRPC(Request, *Response) error // ServeHTTP handles HTTP requests in the context of a particular version. ServeHTTP(dvid.UUID, *VersionedCtx, http.ResponseWriter, *http.Request) // PushData handles DVID-to-DVID transmission of key-value pairs, optionally // delimited by type-specific filter specifications (e.g., "roi:roiname,uuid") // and a set of versions. DataService implementations can automatically embed // this via datastore.Data or can add filters by providing their own PushData(), // Filterer, and Filter implementations. (datatype/imageblk/distributed.go) PushData(*PushSession) error }
DataService is an interface for operations on an instance of a supported datatype.
func GetDataByDataUUID ¶ added in v0.8.3
func GetDataByDataUUID(dataUUID dvid.UUID) (DataService, error)
GetDataByDataUUID returns a data service given a data UUID.
func GetDataByUUIDName ¶ added in v0.8.3
func GetDataByUUIDName(uuid dvid.UUID, name dvid.InstanceName) (DataService, error)
GetDataByUUIDName returns a data service given an instance name and UUID.
func GetDataByVersionName ¶ added in v0.8.3
func GetDataByVersionName(v dvid.VersionID, name dvid.InstanceName) (DataService, error)
GetDataByVersionName returns a data service given an instance name and version.
func NewData ¶
func NewData(uuid dvid.UUID, t TypeService, name dvid.InstanceName, c dvid.Config) (DataService, error)
NewData adds a new, named instance of a datatype to repo. Settings can be passed via the 'config' argument. For example, config["versioned"] with a bool value will specify whether the data is versioned.
type DataTxInit ¶ added in v0.8.1
type DataTxInit struct { Session rpc.SessionID DataName dvid.InstanceName TypeName dvid.TypeString InstanceID dvid.InstanceID }
type InstanceConfig ¶
type InstanceConfig struct { Gen string Start dvid.InstanceID }
InstanceConfig specifies how new instance IDs are generated
type InstanceMutator ¶
type InstanceMutator interface { // Loads all mutable properties and applies any necessary migration to // transform the internal data from the stored to expected version. LoadMutable(root dvid.VersionID, storedVersion, expectedVersion uint64) (saveNeeded bool, err error) }
InstanceMutator provides a hook for data instances to load mutable data on startup. It is assumed that the data instances store data whenever its data mutates, e.g., extents for labelblk or max label for labelvol.
type KVMessage ¶ added in v0.8.1
type KVMessage struct { Session rpc.SessionID KV storage.KeyValue Terminate bool // true if this message is the last txn for this data instance and KV is invalid. }
KVMessage packages a key-value pair for transmission to a remote DVID as well as control of the receiving FSM.
type MergeType ¶
type MergeType uint8
MergeType describes the expectation of processing for the merge, e.g., is it expected to be free of conflicts at the key-value level, require automated type-specific key-value merging, or require external guidance.
const ( // MergeConflictFree assumes that changes in nodes-to-be-merged are disjoint // at the key-value level. MergeConflictFree MergeType = iota // MergeTypeSpecificAuto requires datatype-specific code for merging at each // key-value pair. MergeTypeSpecificAuto // MergeExternalData requires external data to reconcile merging of nodes. MergeExternalData )
type PropertyCopier ¶ added in v0.8.2
type PropertyCopier interface {
CopyPropertiesFrom(DataService, storage.FilterSpec) error
}
PropertyCopier are types that can copy data instance properties from another (typically identically typed) data instance with an optional filter. This is used to create copies of data instances locally or when pushing to a remote DVID.
type PushSession ¶ added in v0.8.2
type PushSession struct { Filter storage.FilterSpec Versions map[dvid.VersionID]struct{} // contains filtered or unexported fields }
PushSession encapsulates parameters necessary for DVID-to-DVID push/pull processing.
func (*PushSession) EndInstancePush ¶ added in v0.8.5
func (p *PushSession) EndInstancePush() error
EndInstancePush terminates a data instance push.
func (*PushSession) SendKV ¶ added in v0.8.5
func (p *PushSession) SendKV(kv *storage.KeyValue) error
SendKV sends a key-value pair. The key-values may be buffered before sending for efficiency of transmission.
func (*PushSession) StartInstancePush ¶ added in v0.8.5
func (p *PushSession) StartInstancePush(d dvid.Data) error
StartInstancePush initiates a data instance push. After some number of Send calls, the EndInstancePush must be called.
type Shutdowner ¶ added in v0.8.5
type Shutdowner interface {
Shutdown()
}
Shutdowner is a data instance that has a function to call during shutdown. Typically, this exits goroutines used for background data processing.
type SyncMessage ¶
SyncMessage describes changes to a data instance for a given version.
type SyncSub ¶
type SyncSub struct { Event SyncEvent Notify dvid.UUID // the data UUID of data instance to notify Ch chan SyncMessage }
SyncSub is a subscription request from an instance to be notified via a channel when a given data instance has a given event.
type Syncer ¶
type Syncer interface { // GetSyncSubs returns the subscriptions that need to be created to keep this data // synced and may launch goroutines that will consume inbound channels of changes // from associated data. GetSyncSubs(dvid.Data) (SyncSubs, error) // SyncedNames returns the set of data instance UUIDs to which the data is synced. SyncedNames() []dvid.InstanceName // SyncedNames returns the set of data instance UUIDs to which the data is synced. SyncedData() dvid.UUIDSet // SyncPending returns true if there are outstanding sync events in this instance's subscription. SyncPending() bool }
Syncer types are typically DataService that know how to sync with other data.
type Type ¶
type Type struct { // Data type name and may not be unique. Name dvid.TypeString // The unique package name that fulfills the DVID Data interface URL dvid.URLString // The version identifier of this datatype code Version string // A list of interface requirements for the backend datastore Requirements *storage.Requirements }
Type identifies the datatype underlying a DataService.
func (*Type) GetStorageRequirements ¶
func (t *Type) GetStorageRequirements() *storage.Requirements
func (*Type) GetTypeName ¶
func (t *Type) GetTypeName() dvid.TypeString
func (*Type) GetTypeURL ¶
func (*Type) GetTypeVersion ¶
type TypeMigrator ¶ added in v0.8.0
type TypeMigrator interface {
MigrateData() (DataService, error)
}
TypeMigrator is an interface for a DataService that can migrate itself to another DataService. A deprecated DataService implementation can implement this interface to auto-convert on metadata load.
type TypeService ¶
type TypeService interface { GetTypeName() dvid.TypeString GetTypeURL() dvid.URLString GetTypeVersion() string GetStorageRequirements() *storage.Requirements // Create an instance of this datatype in the given repo (identified by its root UUID) // with local instance ID and name, passing configuration parameters via dvid.Config. NewDataService(dvid.UUID, dvid.InstanceID, dvid.InstanceName, dvid.Config) (DataService, error) // Help returns a string explaining how to use a datatype's service Help() string // Do executes type-specific commands from command line. Do(Request, *Response) error }
TypeService is an interface all datatype implementations must fulfill. New types can be made by embedding Type and will automatically fulfill the Get* functions.
func TypeServiceByName ¶
func TypeServiceByName(name dvid.TypeString) (TypeService, error)
TypeServiceByName returns a TypeService given a type name. Note that the type name is possibly ambiguous, particularly if using type names across different DVID servers.
func TypeServiceByURL ¶
func TypeServiceByURL(url dvid.URLString) (TypeService, error)
TypeServiceByURL returns a TypeService given its URL. This is the preferred method for accessing datatype implementations since they should work across different DVID servers.
type TypeUpgrader ¶ added in v0.8.4
type TypeUpgrader interface { DataService UpgradeData() (upgraded bool, err error) }
TypeUpgrader is an interface for a DataService that can upgrade itself to another version of data storage. A deprecated DataService implementation can implement this interface to auto-convert on metadata load.
type Updater ¶ added in v0.7.1
func (*Updater) StartUpdate ¶ added in v0.7.1
func (u *Updater) StartUpdate()
func (*Updater) StopUpdate ¶ added in v0.7.1
func (u *Updater) StopUpdate()
type VersionInitializer ¶
VersionInitializer provides a hook for data instances to receive branch (new version) events and modify their properties as needed.
type VersionRemapper ¶ added in v0.8.2
type VersionRemapper interface {
RemapVersions(dvid.VersionMap) error
}
VersionRemapper provides a hook for data instances to remap properties that depend on server-specific version ids. During DVID-to-DVID transfer of data, these version ids need to be remapped as part of the push/pull.
type VersionedCtx ¶
type VersionedCtx struct {
*storage.DataContext
}
VersionedCtx implements storage.VersionedCtx for data instances that have a version DAG.
func NewVersionedCtx ¶
func NewVersionedCtx(data dvid.Data, versionID dvid.VersionID) *VersionedCtx
func (*VersionedCtx) GetGraphDB ¶ added in v0.8.1
func (vctx *VersionedCtx) GetGraphDB() (storage.GraphDB, error)
GetGraphDB returns a graph store associated with this context or an error if one is not available.
func (*VersionedCtx) GetKeyValueDB ¶ added in v0.8.1
func (vctx *VersionedCtx) GetKeyValueDB() (storage.KeyValueDB, error)
GetKeyValueDB returns a key-value store associated with this context on an error if one is unavailable.
func (*VersionedCtx) GetOrderedKeyValueDB ¶ added in v0.8.1
func (vctx *VersionedCtx) GetOrderedKeyValueDB() (storage.OrderedKeyValueDB, error)
GetOrderedKeyValueDB returns an ordered key-value store associated with this context or an error if one is unavailable.
func (*VersionedCtx) String ¶
func (vctx *VersionedCtx) String() string
func (*VersionedCtx) Versioned ¶
func (vctx *VersionedCtx) Versioned() bool
func (*VersionedCtx) VersionedKeyValue ¶
VersionedKeyValue returns the key-value pair corresponding to this key's version given a list of key-value pairs across many versions. If no suitable key-value pair is found or a tombstone is encounterd closest to version, nil is returned.