Documentation ¶
Index ¶
- func NewNoopExecutorsFactory() node.ExecutorsFactory
- func NewNoopExecutorsFactoryWithConfig(config noop_executor.ExecutorConfig) node.ExecutorsFactory
- func NewNoopNodeDependencyInjector() node.NodeDependencyInjector
- func NewNoopPublishersFactory() node.PublishersFactory
- func NewNoopPublishersFactoryWithConfig(config noop_publisher.PublisherConfig) node.PublishersFactory
- func NewNoopStorageProvidersFactory() node.StorageProvidersFactory
- func NewNoopStorageProvidersFactoryWithConfig(config noop_storage.StorageConfig) node.StorageProvidersFactory
- type CloserWithContext
- type ConfigOption
- func WithAllowListedLocalPaths(paths []string) ConfigOption
- func WithAtLeastOneNode() ConfigOption
- func WithAuthSecret(secret string) ConfigOption
- func WithBacalhauConfigOverride(cfg types.Bacalhau) ConfigOption
- func WithBasePath(path string) ConfigOption
- func WithCPUProfilingFile(path string) ConfigOption
- func WithDefaultPublisher(publisher types.DefaultPublisherConfig) ConfigOption
- func WithDependencyInjector(injector node.NodeDependencyInjector) ConfigOption
- func WithDisabledFeatures(disable node.FeatureConfig) ConfigOption
- func WithMemoryProfilingFile(path string) ConfigOption
- func WithNodeOverrides(overrides ...node.NodeConfig) ConfigOption
- func WithNumberOfBadComputeActors(count int) ConfigOption
- func WithNumberOfComputeOnlyNodes(count int) ConfigOption
- func WithNumberOfHybridNodes(count int) ConfigOption
- func WithNumberOfRequesterOnlyNodes(count int) ConfigOption
- func WithSelfSignedCertificate(cert string, key string) ConfigOption
- func WithSystemConfig(cfg node.SystemConfig) ConfigOption
- type DevStack
- type DevStackConfig
- type DevstackTLSSettings
- type MetadataStore
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewNoopExecutorsFactory ¶
func NewNoopExecutorsFactory() node.ExecutorsFactory
func NewNoopExecutorsFactoryWithConfig ¶
func NewNoopExecutorsFactoryWithConfig(config noop_executor.ExecutorConfig) node.ExecutorsFactory
func NewNoopNodeDependencyInjector ¶
func NewNoopNodeDependencyInjector() node.NodeDependencyInjector
Noop implementations of node factories used to mock certain components, which is useful for testing.
func NewNoopPublishersFactory ¶
func NewNoopPublishersFactory() node.PublishersFactory
func NewNoopPublishersFactoryWithConfig ¶ added in v0.3.25
func NewNoopPublishersFactoryWithConfig(config noop_publisher.PublisherConfig) node.PublishersFactory
func NewNoopStorageProvidersFactory ¶
func NewNoopStorageProvidersFactory() node.StorageProvidersFactory
func NewNoopStorageProvidersFactoryWithConfig ¶
func NewNoopStorageProvidersFactoryWithConfig(config noop_storage.StorageConfig) node.StorageProvidersFactory
Types ¶
type CloserWithContext ¶
type ConfigOption ¶ added in v1.0.4
type ConfigOption = func(cfg *DevStackConfig)
func WithAllowListedLocalPaths ¶ added in v1.0.4
func WithAllowListedLocalPaths(paths []string) ConfigOption
func WithAtLeastOneNode ¶ added in v1.5.0
func WithAtLeastOneNode() ConfigOption
func WithAuthSecret ¶ added in v1.3.0
func WithAuthSecret(secret string) ConfigOption
func WithBacalhauConfigOverride ¶ added in v1.5.0
func WithBacalhauConfigOverride(cfg types.Bacalhau) ConfigOption
func WithBasePath ¶ added in v1.5.0
func WithBasePath(path string) ConfigOption
func WithCPUProfilingFile ¶ added in v1.0.4
func WithCPUProfilingFile(path string) ConfigOption
func WithDefaultPublisher ¶ added in v1.5.0
func WithDefaultPublisher(publisher types.DefaultPublisherConfig) ConfigOption
func WithDependencyInjector ¶ added in v1.0.4
func WithDependencyInjector(injector node.NodeDependencyInjector) ConfigOption
func WithDisabledFeatures ¶ added in v1.0.4
func WithDisabledFeatures(disable node.FeatureConfig) ConfigOption
func WithMemoryProfilingFile ¶ added in v1.0.4
func WithMemoryProfilingFile(path string) ConfigOption
func WithNodeOverrides ¶ added in v1.0.4
func WithNodeOverrides(overrides ...node.NodeConfig) ConfigOption
func WithNumberOfBadComputeActors ¶ added in v1.0.4
func WithNumberOfBadComputeActors(count int) ConfigOption
func WithNumberOfComputeOnlyNodes ¶ added in v1.0.4
func WithNumberOfComputeOnlyNodes(count int) ConfigOption
func WithNumberOfHybridNodes ¶ added in v1.0.4
func WithNumberOfHybridNodes(count int) ConfigOption
func WithNumberOfRequesterOnlyNodes ¶ added in v1.0.4
func WithNumberOfRequesterOnlyNodes(count int) ConfigOption
func WithSelfSignedCertificate ¶ added in v1.2.1
func WithSelfSignedCertificate(cert string, key string) ConfigOption
func WithSystemConfig ¶ added in v1.5.0
func WithSystemConfig(cfg node.SystemConfig) ConfigOption
type DevStack ¶
func Setup ¶ added in v1.0.4
func Setup( ctx context.Context, cm *system.CleanupManager, opts ...ConfigOption, ) (*DevStack, error)
func (*DevStack) GetNodeIds ¶
func (*DevStack) PrintNodeInfo ¶
type DevStackConfig ¶ added in v1.0.4
type DevStackConfig struct { BacalhauConfig types.Bacalhau SystemConfig node.SystemConfig NodeDependencyInjector node.NodeDependencyInjector NodeOverrides []node.NodeConfig // DevStackOptions NumberOfHybridNodes int // Number of nodes to start in the cluster NumberOfRequesterOnlyNodes int // Number of nodes to start in the cluster NumberOfComputeOnlyNodes int // Number of nodes to start in the cluster NumberOfBadComputeActors int // Number of compute nodes to be bad actors CPUProfilingFile string MemoryProfilingFile string BasePath string }
func (*DevStackConfig) MarshalZerologObject ¶ added in v1.0.4
func (o *DevStackConfig) MarshalZerologObject(e *zerolog.Event)
func (*DevStackConfig) Validate ¶ added in v1.0.4
func (o *DevStackConfig) Validate() error
type DevstackTLSSettings ¶ added in v1.2.1
type MetadataStore ¶ added in v1.5.0
type MetadataStore struct {
// contains filtered or unexported fields
}
MetadataStore is a simple in-memory implementation of repo's system_metadata store that is useful for testing and development.
func NewMetadataStore ¶ added in v1.5.0
func NewMetadataStore() *MetadataStore
func (*MetadataStore) InstanceID ¶ added in v1.5.0
func (m *MetadataStore) InstanceID() string
func (*MetadataStore) ReadLastUpdateCheck ¶ added in v1.5.0
func (m *MetadataStore) ReadLastUpdateCheck() (time.Time, error)
func (*MetadataStore) WriteLastUpdateCheck ¶ added in v1.5.0
func (m *MetadataStore) WriteLastUpdateCheck(time time.Time) error
Click to show internal directories.
Click to hide internal directories.