File System Registry¶
This registry uses fsspec to support cloud object stores. Install fsspec with the backend you need:
| Backend | Install |
|---|---|
| Local paths | uv add 'yads[fs]' |
| S3 | uv add 'yads[s3]' |
| Azure Blob Storage | uv add 'yads[abfs]' |
| Google Cloud Storage | uv add 'yads[gcs]' |
| Backend | Install |
|---|---|
| Local paths | pip install "yads[fs]" |
| S3 | pip install "yads[s3]" |
| Azure Blob Storage | pip install "yads[abfs]" |
| Google Cloud Storage | pip install "yads[gcs]" |
FileSystemRegistry
¶
Bases: BaseRegistry
Filesystem-based registry using fsspec for multi-cloud support.
Stores specs in a simple directory structure:
{base_path}/
└── {url_encoded_spec_name}/
└── versions/
├── 1.yaml
├── 2.yaml
└── 3.yaml
The registry assigns monotonically increasing version numbers automatically. If a spec with identical content (excluding version) is registered, the existing version number is returned.
Thread Safety
This implementation is not thread-safe. Concurrent registrations may result in race conditions. For production use, ensure only one process (e.g., a CI/CD pipeline) has write access to the registry.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
base_path
|
str
|
Base path for the registry. Can be local path or cloud URL: - Local: "/path/to/registry" - S3: "s3://bucket/registry/" - GCS: "gs://bucket/registry/" - Azure: "az://container/registry/" |
required |
logger
|
Logger | None
|
Optional logger for registry operations. If None, creates a default logger at "yads.registries.filesystem". |
None
|
**fsspec_kwargs
|
Any
|
Additional arguments passed to fsspec for authentication and configuration (e.g., profile="production" for S3). |
{}
|
Raises:
| Type | Description |
|---|---|
RegistryConnectionError
|
If the base path is invalid or inaccessible. |
Example
# Local registry
registry = FileSystemRegistry("/data/specs")
# S3 with specific profile
registry = FileSystemRegistry(
"s3://my-bucket/schemas/",
profile="production"
)
# With custom logger
import logging
logger = logging.getLogger("my_app.registry")
registry = FileSystemRegistry("/data/specs", logger=logger)
Source code in src/yads/registries/filesystem_registry.py
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 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 | |
__init__(base_path, logger=None, serializer=None, **fsspec_kwargs)
¶
Initialize the FileSystemRegistry.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
base_path
|
str
|
Base path for the registry storage. |
required |
logger
|
Logger | None
|
Optional logger instance. |
None
|
serializer
|
SpecSerializer | None
|
Optional spec serializer override used for YAML exports. |
None
|
**fsspec_kwargs
|
Any
|
Additional fsspec configuration. |
{}
|
Source code in src/yads/registries/filesystem_registry.py
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 | |
exists(name)
¶
Check if a spec exists in the registry.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The fully qualified spec name. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if the spec exists, False otherwise. |
Source code in src/yads/registries/filesystem_registry.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | |
get(name, version=None)
¶
Retrieve a spec by name and optional version.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The fully qualified spec name. |
required |
version
|
int | None
|
Optional version number. If None, retrieves latest. |
None
|
Returns:
| Type | Description |
|---|---|
YadsSpec
|
The requested YadsSpec with version field set. |
Raises:
| Type | Description |
|---|---|
SpecNotFoundError
|
If the spec or version doesn't exist. |
RegistryError
|
If retrieval fails. |
Source code in src/yads/registries/filesystem_registry.py
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 | |
list_versions(name)
¶
List all available versions for a spec.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The fully qualified spec name. |
required |
Returns:
| Type | Description |
|---|---|
list[int]
|
Sorted list of version numbers, or empty list if not found. |
Raises:
| Type | Description |
|---|---|
RegistryError
|
If listing fails. |
Source code in src/yads/registries/filesystem_registry.py
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 | |
register(spec)
¶
Register a spec and assign it a version number.
If the spec content matches the latest version (excluding the version field), returns the existing version number without creating a new entry.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
spec
|
YadsSpec
|
The YadsSpec to register. |
required |
Returns:
| Type | Description |
|---|---|
int
|
The assigned or existing version number. |
Raises:
| Type | Description |
|---|---|
InvalidSpecNameError
|
If |
RegistryError
|
If registration fails. |
Source code in src/yads/registries/filesystem_registry.py
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 | |