{
  "id": 2796062,
  "title": "How Cursor beat Git's scalability shortcomings",
  "url": "https://urgent.news/2026/08/23/how-cursor-beat-gits-scalability-shortcomings",
  "topic": "tech",
  "section": "Tech",
  "published": "2026-08-23T13:45:00.000Z",
  "source": {
    "name": "The Register Science",
    "slug": "the-register-science",
    "url": "https://www.theregister.com/devops/2026/08/23/how-cursor-beat-gits-scalability-shortcomings/5291421"
  },
  "original_language": "en",
  "account": "Recent Git outages at GitHub have highlighted the scalability challenges of managing distributed version control systems. Cursor, a SpaceX subsidiary, has found a solution by building its Git-based repository service, Origin, on object storage. Cursor principal systems engineer Vicent Martí explains the decision and how it addresses the limitations of traditional Git architecture. Git, created by Linus Torvalds, stores data as a content-addressable data store, indexed by SHA-1 hashes of its contents. A Git server must traverse the entire graph, or DAG, to provide certain features, leading to performance issues when scaling. In response, GitHub developed Spokes, keeping multiple synchronized copies of repositories on NVMe disks, but this approach also faces synchronization challenges. Cursor turned to Amazon Web Services' object storage, specifically S3, to store repository changes as immutable objects in a write-ahead log. Pushes are uploaded into S3 in a write-ahead log, while the local \"reference\" copy of the repository, usually on an NVMe disk, is updated simultaneously. This approach allows for faster push ingestion, as it only requires synchronizing the reference transaction with a single local repository instead of a quorum of replicas. The source of truth remains the write-ahead log, and repositories can live anywhere, treated as a warm cache on disk. This method has the potential to handle the scalability issues faced by Git at large scale, as demonstrated by Cursor's Origin service.",
  "summary": "S3 keeps the source of truth while local NVMe repositories do the latency-sensitive work",
  "key_points": [
    "Git's scalability issues highlighted by outages",
    "Cursor builds Origin on object storage to address limitations",
    "Amazon Web Services S3 used for immutable repository changes"
  ],
  "editors_take": null,
  "illustration": null,
  "coverage": {
    "outlets": 2,
    "also_reported_by": [
      {
        "outlet": "The Register",
        "title": "How Cursor beat Git's scalability shortcomings",
        "url": "https://urgent.news/2026/08/23/how-cursor-beat-gits-scalability-shortcomings-2799985",
        "published": "2026-08-23T13:45:00.000Z"
      }
    ]
  },
  "ai_generated": true,
  "disclaimer": "Summaries, key points and the editor’s take are written by software from other outlets’ reporting and may contain errors — always check the linked original."
}