awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectServer MCPDespreCum realizăm clasamentulPresă
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
Qihoo360 avatar

Qihoo360/Atlas

0
View on GitHub↗
4,629 stele·1,139 fork-uri·C·GPL-2.0·4 vizualizări

Atlas

Atlas este un proxy de bază de date MySQL și un sistem middleware conceput pentru a gestiona traficul între clienți și clusterele de baze de date. Acesta funcționează ca un gateway de bază de date de înaltă disponibilitate și middleware de sharding, oferind un punct de intrare tolerant la erori pentru rutare, load balancing și gestionarea conexiunilor la baza de date.

Proiectul se diferențiază printr-o combinație de separare citire-scriere, care direcționează interogările către serverele primare sau replici, și sharding-ul datelor pentru a distribui informațiile pe mai multe instanțe backend. Utilizează un pooler de conexiuni pentru a reduce overhead-ul stabilirii de noi sesiuni și implementează rutarea conștientă de protocol pentru a intercepta și direcționa cererile clienților.

Sistemul include capabilități pentru monitorizarea sănătății și failover automat pentru a asigura un serviciu continuu. Suportă controlul administrativ asupra disponibilității serverului backend, filtrarea IP-urilor clienților pentru controlul accesului și un mecanism pentru upgrade-uri fără downtime prin devierea traficului bazată pe semnal. Integritatea tranzacțiilor este gestionată prin rollback-uri automate la deconectarea neașteptată a clientului.

Features

  • MySQL Proxy Middleware - Acts as high-performance middleware designed to proxy and route traffic for MySQL database clusters.
  • Connection Pool Managers - Provides a connection pooler to maintain reusable database sessions and reduce the overhead of establishing new connections.
  • Database Sharding - Provides architectural partitioning of large datasets across multiple MySQL database nodes for horizontal scaling.
  • Shard-Based Retrieval - Maps database requests to specific backend instances by hashing identifiers to determine the target data shard.
  • MySQL Connection Poolers - Manages reusable database connections to reduce the overhead of creating new sessions for every request.
  • MySQL Database Sharding - Provides middleware strategies for partitioning and distributing MySQL data across multiple server nodes.
  • Read-Write Splitting - Separates database read and write operations by directing queries to replicas and modifications to the primary server.
  • Sharding Middleware - Provides a proxy layer that abstracts data distribution and routes queries between applications and MySQL shards.
  • Gateway High Availability - Provides a fault-tolerant entry point that ensures availability of the database gateway layer via load balancing.
  • High Availability Clustering - Ensures continuous service availability by distributing traffic across multiple proxy instances to eliminate single points of failure.
  • Database High Availability - Ensures continuous database access through automated failover and health monitoring of MySQL nodes.
  • Traffic Load Balancers - Distributes client requests across multiple backend MySQL servers with automated failover logic.
  • Database Connection Pooling - Maintains a pool of reusable MySQL database connections to reduce the overhead of establishing new sessions.
  • Protocol-Aware Routing - Intercepts MySQL client requests and directs traffic based on parsed database protocol logic.
  • Protocol-Aware Request Routings - Intercepts MySQL client requests and routes traffic to backends based on the parsed database protocol.
  • Transaction Management - Manages the transaction lifecycle by automatically rolling back active operations upon unexpected client disconnects.
  • Backend Availability Managers - Allows transitioning backend database servers online or offline without interrupting the overall availability of the service.
  • Load Balancer Health Management - Implements a health-checking system that monitors backend MySQL nodes and redirects traffic away from unresponsive servers.
  • Zero-Downtime Upgrades - Implements a process for updating service binaries using signaling to divert traffic and avoid dropping active connections.
  • Upgrade Signaling - Uses system signals to drain active connections and facilitate zero-downtime version upgrades.
  • Connection-Based Rollbacks - Automatically rolls back active transactions when a client disconnects unexpectedly to prevent data corruption.
  • Upstream Health Monitoring - Implements a health-check system to monitor backend server availability and ensure traffic is routed only to healthy nodes.
  • Administrative Control Interfaces - Offers an administrative interface to toggle backend database nodes online or offline without restarting servers.
  • Databases and Storage - MySQL-based data middleware for read-write splitting and sharding.

Istoric stele

Graficul istoricului de stele pentru qihoo360/atlasGraficul istoricului de stele pentru qihoo360/atlas

Căutare AI

Explorează mai multe repository-uri excelente

Descrie ce ai nevoie în limbaj simplu — AI-ul sortează mii de proiecte open source selectate în funcție de relevanță.

Start searching with AI

Întrebări frecvente

Ce face qihoo360/atlas?

Atlas este un proxy de bază de date MySQL și un sistem middleware conceput pentru a gestiona traficul între clienți și clusterele de baze de date. Acesta funcționează ca un gateway de bază de date de înaltă disponibilitate și middleware de sharding, oferind un punct de intrare tolerant la erori pentru rutare, load balancing și gestionarea conexiunilor la baza de date.

Care sunt principalele funcționalități ale qihoo360/atlas?

Principalele funcționalități ale qihoo360/atlas sunt: MySQL Proxy Middleware, Connection Pool Managers, Database Sharding, Shard-Based Retrieval, MySQL Connection Poolers, MySQL Database Sharding, Read-Write Splitting, Sharding Middleware.

Care sunt câteva alternative open-source pentru qihoo360/atlas?

Alternativele open-source pentru qihoo360/atlas includ: flike/kingshard — Kingshard is a MySQL database proxy and sharding middleware that routes SQL traffic between clients and multiple… sysown/proxysql — ProxySQL is a database proxy designed to route and balance traffic between applications and MySQL or PostgreSQL… pgsty/pigsty — Pigsty is a full-stack orchestration suite for deploying, monitoring, and managing high-availability PostgreSQL… crunchydata/postgres-operator — This project is a Kubernetes operator designed for deploying and managing production PostgreSQL database clusters… postgresml/pgcat — Pgcat is a PostgreSQL middleware solution providing connection pooling, sharding, load balancing, and failover… ravendb/ravendb — RavenDB is a multi-model NoSQL document database designed for high-performance, ACID-compliant data storage. It…

Alternative open-source pentru Atlas

Proiecte open-source similare, clasificate după numărul de funcționalități comune cu Atlas.
  • flike/kingshardAvatar flike

    flike/kingshard

    6,414Vezi pe GitHub↗

    Kingshard is a MySQL database proxy and sharding middleware that routes SQL traffic between clients and multiple database nodes. It functions as a load balancer, read-write splitter, and SQL query firewall to manage how data is accessed and distributed across a database infrastructure. The system implements data sharding using hash, range, or date strategies to split tables across multiple nodes. It enables read-write splitting by directing data modification requests to a master node while distributing read-only queries across a pool of slave replicas. The proxy provides traffic management t

    Gokingshardmysqlmysql-proxy
    Vezi pe GitHub↗6,414
  • sysown/proxysqlAvatar sysown

    sysown/proxysql

    6,843Vezi pe GitHub↗

    ProxySQL is a database proxy designed to route and balance traffic between applications and MySQL or PostgreSQL servers. It provides database high availability by monitoring backend server health and automatically rerouting traffic to healthy nodes during failover events to prevent downtime. The system integrates with generative AI models by proxying requests through a protocol handler, creating a bridge that allows large language models to access structured data. The project includes capabilities for traffic management through automatic failover routing and cluster topology discovery. It op

    C++
    Vezi pe GitHub↗6,843
  • pgsty/pigstyAvatar pgsty

    pgsty/pigsty

    4,703Vezi pe GitHub↗

    Pigsty is a full-stack orchestration suite for deploying, monitoring, and managing high-availability PostgreSQL clusters and their supporting infrastructure. It functions as a cluster management platform and high-availability suite that automates failover, manages virtual IPs, and ensures data consistency through distributed consensus. The project distinguishes itself by providing a comprehensive database infrastructure-as-code framework and a dedicated observability stack. It incorporates a backup and recovery manager supporting point-in-time recovery via S3-compatible object storage, alongs

    Shellgraphicsinfrapostgres
    Vezi pe GitHub↗4,703
  • crunchydata/postgres-operatorAvatar CrunchyData

    CrunchyData/postgres-operator

    4,423Vezi pe GitHub↗

    This project is a Kubernetes operator designed for deploying and managing production PostgreSQL database clusters using declarative configurations. It functions as a controller that synchronizes the actual state of database clusters with a desired state, providing a system for high availability orchestration, automated backup and recovery, and containerized database administration. The operator distinguishes itself through a comprehensive data protection suite that supports point-in-time recovery, multi-mode backups to cloud object storage, and cluster cloning. It ensures continuous availabil

    Go
    Vezi pe GitHub↗4,423
Vezi toate cele 30 alternative pentru Atlas→