Sourcegraph Architecture Overview

This is a high level overview of Sourcegraph's architecture so you can understand how our systems fit together. You can click on each component to jump to its respective code repository or subtree.

To re-generate this diagram from the architecture.dot file with Graphviz, run: dot -Tsvg -o architecture.svg architecture.dot.

Clients

We maintain multiple Sourcegraph clients:

These clients generally communicate with a Sourcegraph instance (either https://sourcegraph.com or a private customer instance) through our GraphQL API. There are also a small number of REST endpoints for specific use-cases.

Services

Our backend is composed of multiple services:

  • Most are Go services found in the cmd folder.
  • Syntect server is our syntax highlighting service written in Rust. It is not horizontally scalable so only 1 replica is supported.
  • LSIF server provide precise code intelligence based on the LSIF data format. It is written in TypeScript.
  • zoekt-indexserver and zoekt-webserver provide indexed search. They are written in Go.

Infrastructure

Guides

Here are some guides to help you understand how multiple systems fit together: