awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesOpen-source alternativesSelf-hosted softwareBlogPlan du site
ProjetÀ proposHow we rankPresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 dépôts

Awesome GitHub RepositoriesData Location Trackers

Tools for identifying the specific node and shard containing data for a given distribution key.

Distinct from Distributed Data Processing: Distinct from general distributed data processing: focuses on locating data shards for troubleshooting.

Explore 3 awesome GitHub repositories matching data & databases · Data Location Trackers. Refine with filters or upvote what's useful.

Awesome Data Location Trackers GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • ipfs/ipfsAvatar de ipfs

    ipfs/ipfs

    23,137Voir sur GitHub↗

    IPFS is a peer-to-peer hypermedia protocol and content-addressed storage system that identifies data by cryptographic hashes rather than network locations. It enables the creation of a decentralized web by organizing files and directories as directed acyclic graphs of linked content identifiers. The project differentiates itself through the use of a distributed hash table for locating peers and a system of signed records to map human-readable names to changing content. It also provides HTTP gateways that translate standard web requests into peer-to-peer queries, allowing decentralized data to

    Queries distributed hash tables to identify which peers are hosting specific content identifiers.

    ipfsipfs-protocolipfs-web
    Voir sur GitHub↗23,137
  • citusdata/citusAvatar de citusdata

    citusdata/citus

    12,562Voir sur GitHub↗

    Citus is a PostgreSQL extension that transforms a standard database into a distributed system. It functions as a sharding framework and distributed SQL engine, enabling horizontal scaling by partitioning tables across a cluster of nodes. By utilizing a coordinator-worker topology, the system manages metadata and routes queries to the appropriate nodes, allowing for parallel execution of complex operations across distributed data shards. The platform distinguishes itself through its specialized support for multi-tenant architectures and real-time analytical processing. It enables tenant-based

    Identifies the specific worker node and shard containing data for a given tenant or distribution key.

    Ccituscitus-extensiondatabase
    Voir sur GitHub↗12,562
  • jerrylead/sparkinternalsAvatar de JerryLead

    JerryLead/SparkInternals

    5,363Voir sur GitHub↗

    SparkInternals est une référence technique et un guide d'architecture détaillant la conception interne et l'implémentation du moteur de calcul distribué Apache Spark. Il sert d'étude sur l'analyse des moteurs de big data, en se concentrant sur la gestion de l'exécution en cluster et l'interaction entre les nœuds drivers, les exécuteurs et les workers. Le projet fournit une décomposition détaillée de la manière dont les plans logiques sont convertis en étapes d'exécution physiques. Il analyse spécifiquement la mécanique des opérations de shuffle, la gestion de la mémoire et la coordination de la planification des jobs distribués. La documentation couvre un large éventail de capacités de calcul distribué, incluant la planification de l'exécution des requêtes, la gestion des dépendances de données et les stratégies de mise en cache en mémoire. Elle examine également la distribution des tâches, l'exécution parallèle et les processus utilisés pour la reprise sur erreur et la persistance des données.

    Retrieves distributed data segments from multiple worker nodes using a tracker to locate and fetch blocks.

    Voir sur GitHub↗5,363
  1. Home
  2. Data & Databases
  3. Distributed Data Processing
  4. Data Location Trackers

Explorer les sous-tags

  • P2P Provider LocationLocating specific peers hosting a particular content identifier within a P2P network. **Distinct from Data Location Trackers:** Distinct from general data location trackers by utilizing DHTs for peer discovery.
  • Shuffle Block TrackersMechanisms to locate and fetch specific data blocks from remote worker nodes during a shuffle. **Distinct from Data Location Trackers:** Focuses on the active retrieval of shuffle blocks via a tracker, not just static location tracking.