Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateConfig ¶
ValidateConfig is for custom validation rules for the configuration
Types ¶
type AppConfig ¶
type AppConfig struct { Server ServerConfig `koanf:"server"` Database DatabaseConfig `koanf:"database"` TritonServer TritonServerConfig `koanf:"tritonserver"` MgmtBackend MgmtBackendConfig `koanf:"mgmtbackend"` Cache CacheConfig `koanf:"cache"` UsageServer UsageServerConfig `koanf:"usageserver"` PipelineBackend PipelineBackendConfig `koanf:"pipelinebackend"` MaxBatchSizeLimitation MaxBatchSizeConfig `koanf:"maxbatchsizelimitation"` Temporal TemporalConfig `koanf:"temporal"` }
AppConfig defines
var Config AppConfig
Config - Global variable to export
type CacheConfig ¶
type CacheConfig struct {
Redis struct {
RedisOptions redis.Options `koanf:"redisoptions"`
}
}
CacheConfig related to Redis
type DatabaseConfig ¶
type DatabaseConfig struct { Username string `koanf:"username"` Password string `koanf:"password"` Host string `koanf:"host"` Port int `koanf:"port"` Name string `koanf:"name"` Version uint `koanf:"version"` TimeZone string `koanf:"timezone"` Pool struct { IdleConnections int `koanf:"idleconnections"` MaxConnections int `koanf:"maxconnections"` ConnLifeTime time.Duration `koanf:"connlifetime"` } }
DatabaseConfig related to database
type MaxBatchSizeConfig ¶
type MaxBatchSizeConfig struct { Unspecified int `koanf:"unspecified"` Classification int `koanf:"classification"` Detection int `koanf:"detection"` Keypoint int `koanf:"keypoint"` Ocr int `koanf:"ocr"` InstanceSegmentation int `koanf:"instancesegmentation"` SemanticSegmentation int `koanf:"semanticsegmentation"` }
MaxBatchSizeConfig defines the maximum size of the batch of a AI task
type MgmtBackendConfig ¶
type MgmtBackendConfig struct { Host string `koanf:"host"` AdminPort int `koanf:"adminport"` HTTPS struct { Cert string `koanf:"cert"` Key string `koanf:"key"` } }
MgmtBackendConfig related to mgmt-backend
type PipelineBackendConfig ¶
type PipelineBackendConfig struct { Host string `koanf:"host"` Port int `koanf:"port"` HTTPS struct { Cert string `koanf:"cert"` Key string `koanf:"key"` } }
PipelineBackendConfig related to pipeline-backend
type ServerConfig ¶
type ServerConfig struct { Port int `koanf:"port"` HTTPS struct { Cert string `koanf:"cert"` Key string `koanf:"key"` } CORSOrigins []string `koanf:"corsorigins"` Edition string `koanf:"edition"` DisableUsage bool `koanf:"disableusage"` Debug bool `koanf:"debug"` ItMode bool `koanf:"itmode"` MaxDataSize int `koanf:"maxdatasize"` }
ServerConfig defines HTTP server configurations
type TemporalConfig ¶
TemporalConfig related to Temporal
type TritonServerConfig ¶
type TritonServerConfig struct { GrpcURI string `koanf:"grpcuri"` ModelStore string `koanf:"modelstore"` }
TritonServerConfig related to Triton server
type UsageServerConfig ¶
type UsageServerConfig struct { TLSEnabled bool `koanf:"tlsenabled"` Host string `koanf:"host"` Port int `koanf:"port"` }
UsageServerConfig related to usage-server
Click to show internal directories.
Click to hide internal directories.