Documentation ¶
Overview ¶
Package datasync contains interfaces for syncing data from robots to the app.viam.com cloud.
Index ¶
Constants ¶
const FailedDir = "failed"
FailedDir is a subdirectory of the capture directory that holds any files that could not be synced.
Variables ¶
var ( // InitialWaitTimeMillis defines the time to wait on the first retried upload attempt. InitialWaitTimeMillis = atomic.NewInt32(1000) // RetryExponentialFactor defines the factor by which the retry wait time increases. RetryExponentialFactor = atomic.NewInt32(2) )
var MaxUnaryFileSize = int64(units.MB)
MaxUnaryFileSize is the max number of bytes to send using the unary DataCaptureUpload, as opposed to the StreamingDataCaptureUpload.
var UploadChunkSize = 64 * 1024
UploadChunkSize defines the size of the data included in each message of a FileUpload stream.
Functions ¶
func SetFileLastModifiedMillis ¶ added in v0.17.0
func SetFileLastModifiedMillis(lastModifiedMillis int)
SetFileLastModifiedMillis allows configuring the time to wait in milliseconds to check if a file has been modified for arbitrary file uploads.
Types ¶
type Manager ¶
Manager is responsible for enqueuing files in captureDir and uploading them to the cloud.
func NewManager ¶ added in v0.0.6
func NewManager(identity string, client v1.DataSyncServiceClient, logger logging.Logger, captureDir string) (Manager, error)
NewManager returns a new syncer.
func NewNoopManager ¶ added in v0.2.25
func NewNoopManager() Manager
NewNoopManager returns a noop sync manager that does nothing.
type ManagerConstructor ¶ added in v0.0.6
type ManagerConstructor func(identity string, client v1.DataSyncServiceClient, logger logging.Logger, captureDir string) (Manager, error)
ManagerConstructor is a function for building a Manager.