2 Repos
Mapping of configuration data structures into strongly typed language structs using tags.
Distinct from Struct Mapping: Specifically targets application configuration mapping rather than general hash-to-struct decoding for data processing.
Explore 2 awesome GitHub repositories matching data & databases · Configuration. Refine with filters or upvote what's useful.
Dieses Projekt ist ein Microservice-Framework für den Aufbau skalierbarer Backend-Systeme in Go. Es bietet eine Architektur für verteilte Systeme mit integrierter Unterstützung für Service-Discovery, Load-Balancing und Mechanismen zur Fehlertoleranz. Das Framework zeichnet sich durch eine Domain-Driven-Layered-Architektur und ein Remote-First-Konfigurationssystem aus, das Einstellungen zwischen Remote-Speichern und lokalen Dateien mit automatischem Failover synchronisiert. Es implementiert ein hochperformantes Kommunikationsmodell unter Verwendung von gRPC für unäre und Streaming-Datenaustausche sowie Echtzeit-Benachrichtigungssysteme zur Verwaltung persistenter Client-Verbindungen. Das System deckt ein breites Spektrum verteilter Funktionen ab, darunter Traffic-Management mittels Circuit-Breaking und Rate-Limiting sowie Observability durch Distributed Tracing, zentralisiertes Logging und Health-Monitoring. Zudem sind Dateninfrastruktur-Tools wie probabilistische Bloom-Filter, verteiltes Locking und tokenbasierte Service-Authentifizierung enthalten. Das Projekt umfasst Deployment-Unterstützung für containerisierte Elasticsearch- und HBase-Umgebungen.
Automatically maps configuration data from files into strongly typed Go structs.
koanf is a configuration management library for Go designed to load, merge, and unmarshal application settings from multiple sources into structured objects. It functions as a multi-source config loader that aggregates data from environment variables, files, and remote providers into a single unified map. The system utilizes a pluggable architecture for parsing and data abstraction, allowing it to transform bytes from formats such as JSON, YAML, and TOML into nested maps. It supports dynamic configuration watching to monitor external sources and trigger automatic reloads when settings change.
Maps configuration keys to strongly typed Go structs using custom tags for easier access in application logic.