Spaces:
Running
Running
File size: 12,682 Bytes
287a0bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 |
use async_trait::async_trait;
use figment::providers::{Env, Format, Serialized, Yaml};
use serde::Deserialize;
use crate::errors::ChromaError;
const DEFAULT_CONFIG_PATH: &str = "./chroma_config.yaml";
const ENV_PREFIX: &str = "CHROMA_";
#[derive(Deserialize)]
/// # Description
/// The RootConfig for all chroma services this is a YAML file that
/// is shared between all services, and secondarily, fields can be
/// populated from environment variables. The environment variables
/// are prefixed with CHROMA_ and are uppercase. Values in the envionment
/// variables take precedence over values in the YAML file.
/// By default, it is read from the current working directory,
/// with the filename chroma_config.yaml.
pub(crate) struct RootConfig {
// The root config object wraps the worker config object so that
// we can share the same config file between multiple services.
pub worker: WorkerConfig,
}
impl RootConfig {
/// # Description
/// Load the config from the default location.
/// # Returns
/// The config object.
/// # Panics
/// - If the config file cannot be read.
/// - If the config file is not valid YAML.
/// - If the config file does not contain the required fields.
/// - If the config file contains invalid values.
/// - If the environment variables contain invalid values.
/// # Notes
/// The default location is the current working directory, with the filename chroma_config.yaml.
/// The environment variables are prefixed with CHROMA_ and are uppercase.
/// Values in the envionment variables take precedence over values in the YAML file.
pub(crate) fn load() -> Self {
return Self::load_from_path(DEFAULT_CONFIG_PATH);
}
/// # Description
/// Load the config from a specific location.
/// # Arguments
/// - path: The path to the config file.
/// # Returns
/// The config object.
/// # Panics
/// - If the config file cannot be read.
/// - If the config file is not valid YAML.
/// - If the config file does not contain the required fields.
/// - If the config file contains invalid values.
/// - If the environment variables contain invalid values.
/// # Notes
/// The environment variables are prefixed with CHROMA_ and are uppercase.
/// Values in the envionment variables take precedence over values in the YAML file.
pub(crate) fn load_from_path(path: &str) -> Self {
// Unfortunately, figment doesn't support environment variables with underscores. So we have to map and replace them.
// Excluding our own environment variables, which are prefixed with CHROMA_.
let mut f = figment::Figment::from(Env::prefixed("CHROMA_").map(|k| match k {
k if k == "num_indexing_threads" => k.into(),
k if k == "my_ip" => k.into(),
k => k.as_str().replace("__", ".").into(),
}));
if std::path::Path::new(path).exists() {
f = figment::Figment::from(Yaml::file(path)).merge(f);
}
// Apply defaults - this seems to be the best way to do it.
// https://github.com/SergioBenitez/Figment/issues/77#issuecomment-1642490298
f = f.join(Serialized::default(
"worker.num_indexing_threads",
num_cpus::get(),
));
let res = f.extract();
match res {
Ok(config) => return config,
Err(e) => panic!("Error loading config: {}", e),
}
}
}
#[derive(Deserialize)]
/// # Description
/// The primary config for the worker service.
/// ## Description of parameters
/// - my_ip: The IP address of the worker service. Used for memberlist assignment. Must be provided
/// - num_indexing_threads: The number of indexing threads to use. If not provided, defaults to the number of cores on the machine.
/// - pulsar_tenant: The pulsar tenant to use. Must be provided.
/// - pulsar_namespace: The pulsar namespace to use. Must be provided.
/// - assignment_policy: The assignment policy to use. Must be provided.
/// # Notes
/// In order to set the enviroment variables, you must prefix them with CHROMA_WORKER__<FIELD_NAME>.
/// For example, to set my_ip, you would set CHROMA_WORKER__MY_IP.
/// Each submodule that needs to be configured from the config object should implement the Configurable trait and
/// have its own field in this struct for its Config struct.
pub(crate) struct WorkerConfig {
pub(crate) my_ip: String,
pub(crate) my_port: u16,
pub(crate) num_indexing_threads: u32,
pub(crate) pulsar_tenant: String,
pub(crate) pulsar_namespace: String,
pub(crate) pulsar_url: String,
pub(crate) kube_namespace: String,
pub(crate) assignment_policy: crate::assignment::config::AssignmentPolicyConfig,
pub(crate) memberlist_provider: crate::memberlist::config::MemberlistProviderConfig,
pub(crate) ingest: crate::ingest::config::IngestConfig,
pub(crate) sysdb: crate::sysdb::config::SysDbConfig,
pub(crate) segment_manager: crate::segment::config::SegmentManagerConfig,
pub(crate) storage: crate::storage::config::StorageConfig,
}
/// # Description
/// A trait for configuring a struct from a config object.
/// # Notes
/// This trait is used to configure structs from the config object.
/// Components that need to be configured from the config object should implement this trait.
#[async_trait]
pub(crate) trait Configurable {
async fn try_from_config(worker_config: &WorkerConfig) -> Result<Self, Box<dyn ChromaError>>
where
Self: Sized;
}
#[cfg(test)]
mod tests {
use super::*;
use figment::Jail;
#[test]
fn test_config_from_default_path() {
Jail::expect_with(|jail| {
let _ = jail.create_file(
"chroma_config.yaml",
r#"
worker:
my_ip: "192.0.0.1"
my_port: 50051
num_indexing_threads: 4
pulsar_tenant: "public"
pulsar_namespace: "default"
pulsar_url: "pulsar://localhost:6650"
kube_namespace: "chroma"
assignment_policy:
RendezvousHashing:
hasher: Murmur3
memberlist_provider:
CustomResource:
memberlist_name: "worker-memberlist"
queue_size: 100
ingest:
queue_size: 100
sysdb:
Grpc:
host: "localhost"
port: 50051
segment_manager:
storage_path: "/tmp"
storage:
S3:
bucket: "chroma"
"#,
);
let config = RootConfig::load();
assert_eq!(config.worker.my_ip, "192.0.0.1");
assert_eq!(config.worker.num_indexing_threads, 4);
assert_eq!(config.worker.pulsar_tenant, "public");
assert_eq!(config.worker.pulsar_namespace, "default");
assert_eq!(config.worker.kube_namespace, "chroma");
Ok(())
});
}
#[test]
fn test_config_from_specific_path() {
Jail::expect_with(|jail| {
let _ = jail.create_file(
"random_path.yaml",
r#"
worker:
my_ip: "192.0.0.1"
my_port: 50051
num_indexing_threads: 4
pulsar_tenant: "public"
pulsar_namespace: "default"
pulsar_url: "pulsar://localhost:6650"
kube_namespace: "chroma"
assignment_policy:
RendezvousHashing:
hasher: Murmur3
memberlist_provider:
CustomResource:
memberlist_name: "worker-memberlist"
queue_size: 100
ingest:
queue_size: 100
sysdb:
Grpc:
host: "localhost"
port: 50051
segment_manager:
storage_path: "/tmp"
storage:
S3:
bucket: "chroma"
"#,
);
let config = RootConfig::load_from_path("random_path.yaml");
assert_eq!(config.worker.my_ip, "192.0.0.1");
assert_eq!(config.worker.num_indexing_threads, 4);
assert_eq!(config.worker.pulsar_tenant, "public");
assert_eq!(config.worker.pulsar_namespace, "default");
assert_eq!(config.worker.kube_namespace, "chroma");
Ok(())
});
}
#[test]
#[should_panic]
fn test_config_missing_required_field() {
Jail::expect_with(|jail| {
let _ = jail.create_file(
"chroma_config.yaml",
r#"
worker:
num_indexing_threads: 4
"#,
);
let _ = RootConfig::load();
Ok(())
});
}
#[test]
fn test_missing_default_field() {
Jail::expect_with(|jail| {
let _ = jail.create_file(
"chroma_config.yaml",
r#"
worker:
my_ip: "192.0.0.1"
my_port: 50051
pulsar_tenant: "public"
pulsar_namespace: "default"
kube_namespace: "chroma"
pulsar_url: "pulsar://localhost:6650"
assignment_policy:
RendezvousHashing:
hasher: Murmur3
memberlist_provider:
CustomResource:
memberlist_name: "worker-memberlist"
queue_size: 100
ingest:
queue_size: 100
sysdb:
Grpc:
host: "localhost"
port: 50051
segment_manager:
storage_path: "/tmp"
storage:
S3:
bucket: "chroma"
"#,
);
let config = RootConfig::load();
assert_eq!(config.worker.my_ip, "192.0.0.1");
assert_eq!(config.worker.num_indexing_threads, num_cpus::get() as u32);
Ok(())
});
}
#[test]
fn test_config_with_env_override() {
Jail::expect_with(|jail| {
let _ = jail.set_env("CHROMA_WORKER__MY_IP", "192.0.0.1");
let _ = jail.set_env("CHROMA_WORKER__MY_PORT", 50051);
let _ = jail.set_env("CHROMA_WORKER__PULSAR_TENANT", "A");
let _ = jail.set_env("CHROMA_WORKER__PULSAR_NAMESPACE", "B");
let _ = jail.set_env("CHROMA_WORKER__KUBE_NAMESPACE", "C");
let _ = jail.set_env("CHROMA_WORKER__PULSAR_URL", "pulsar://localhost:6650");
let _ = jail.create_file(
"chroma_config.yaml",
r#"
worker:
assignment_policy:
RendezvousHashing:
hasher: Murmur3
memberlist_provider:
CustomResource:
memberlist_name: "worker-memberlist"
queue_size: 100
ingest:
queue_size: 100
sysdb:
Grpc:
host: "localhost"
port: 50051
segment_manager:
storage_path: "/tmp"
storage:
S3:
bucket: "chroma"
"#,
);
let config = RootConfig::load();
assert_eq!(config.worker.my_ip, "192.0.0.1");
assert_eq!(config.worker.my_port, 50051);
assert_eq!(config.worker.num_indexing_threads, num_cpus::get() as u32);
assert_eq!(config.worker.pulsar_tenant, "A");
assert_eq!(config.worker.pulsar_namespace, "B");
assert_eq!(config.worker.kube_namespace, "C");
Ok(())
});
}
}
|