Skip to content

Glean

Glean builds “Work AI” — one permissioned index over a company’s apps that powers “intelligent Search, an AI Assistant, and scalable AI agents” across “100+ enterprise SaaS connectors” (Backend JD). Ask in natural language; Glean retrieves the right document, person, or action — filtered to what you are allowed to see — and increasingly acts, not just answers.

Founded 2019 by Arvind Jain (a Distinguished Engineer on Google Search who went on to co-found Rubrik) with three other ex-Google engineers — Vishwanath T R, Tony Gentilcore, Piyush Prahladka (Fortune). The DNA is Google web search, retargeted at the messy, permission-bounded corpus inside a single company.

This is a mature, late-stage build, not an early-stage scramble — and that is the interesting part. The engineering story is how a search engine hardens into enterprise infrastructure: single-tenant isolation, ACL-faithful retrieval, multi-provider model routing, and an eval-gated agent runtime.

  • Series F: $150M at a $7.2B valuation, led by Wellington Management — “Glean today announced it raised $150 million in Series F financing, bringing its valuation to $7.2 billion” (June 10 2025, press release).
  • “Glean rapidly surpassed $100 million in annual recurring revenue (ARR) in its last fiscal year” (press release).
  • “The platform is already powering more than 100 million agent actions annually,” with a stated goal of “one billion agent actions by the end of the year” (press release).
  • ~$768M raised total; third-party trackers put headcount near ~1,600 (Sacra).

A Go-leaning backend, a Bazel monorepo, Kubernetes on a major cloud, and a deliberately model-neutral AI layer. Every row is named in a first-party JD, doc, or repo.

LayerChoiceEvidence
Backend languagesGo (preferred), Python, Java, C++Runtime JD, Context JD, Backend JD
Client / SDK languagesTypeScript, Python, TypeScript, Java, Go SDKsDev platform, Context JD
Build systemBazel monorepo — custom rules/macros, remote executionDev Productivity JD
CI/CDGitHub Actions on Kubernetes + cloud runnersDev Productivity JD
Containers / orchestrationDocker · KubernetesDev Productivity JD, Runtime JD
CloudGCP / AWS / Azure (single-tenant, in customer’s cloud)Security, Runtime JD
IngestionGoogle Dataflow pipelinesData flow
Event / streamingPub/Sub, KafkaRuntime JD
CachingRedis + low-latency data storesRuntime JD
ObservabilityOpenTelemetry tracing, metrics, dashboardsRuntime JD
LLM providersOpenAI · Anthropic · Google Gemini + model routingRuntime JD
Agent interopMCP — single HTTP endpoint into 20+ hostsDev platform
Agent frameworksLangChain, OpenAI Agents SDK, Google ADK, CrewAIDev platform, Toolkit repo
Internal coding AIGitHub Copilot, Cursor, ClaudeDev Productivity JD

The retrieval index, embedding models, and knowledge-graph store aren’t named — reconstructed in Likely internals.

Retrieval is the substrate; agents sit on top

Section titled “Retrieval is the substrate; agents sit on top”

Glean’s core is a hybrid search engine: “the precision of lexical search and the nuanced understanding of vector search—all powered by the additional context and nuance provided by the signals and anchors within our knowledge graph” (hybrid search). Ranking is driven by “countless anchors and signals”“normalization … synonymy … intent classification … document understanding … popularity” and personalization (hybrid search).

The knowledge graph is the moat. It’s a triplet store — “at the core of a knowledge graph is the triplet structure: (subject, predicate, object)” — where “edge properties—such as timestamps, access control, confidence scores, or provenance—can be attached to each relationship” (knowledge graph). It’s built automatically (“automated noun extraction,” “frequency and prominence filtering,” signals like “presence in the titles of key documents”), plus a personal graph that “captures employee activity,” clustering “each atomic action into subtasks” then “higher-level tasks.” Glean’s name for the whole thing: “the system of context.”

On top, agentic reasoning: “agents decompose questions into multi-step plans. Each step is executed by agents using tools, such as search, reasoning, data analysis, employee search, and expert search” (agentic reasoning). The plan phase “run[s] a series of initial questions to the LLM to gather background information” then “rewrite[s] the query into a multi-step plan”; sub-agents “reason about the tools to use” and the system “self-reflect[s]” on “its own confidence in its answer.” Crucially: “the basis for many tools in Glean is search.” The claimed payoff is “a significant increase of 24% in the relevance of responses and actions.”

Glean retrieval + agentic-reasoning pipeline: a user or agent question enters a Plan phase where an LLM gathers background and rewrites the query into a multi-step plan; sub-agents then pick tools (hybrid search, data analysis, employee/expert search, email/calendar/code); the hybrid-search tool combines vector search, lexical search, and anchors-and-signals ranking, all reading from a knowledge graph of (subject, predicate, object) triplets plus a personal graph with edge-level ACLs; results pass through a self-reflection step that assesses confidence before returning a grounded answer or action.

Mermaid source
flowchart LR
classDef src fill:#eef2f8,stroke:#94a3b8,stroke-width:1.5px,color:#0f172a;
classDef data fill:#e8f1fd,stroke:#2563eb,stroke-width:1.5px,color:#0f172a;
classDef kg fill:#eef0fe,stroke:#6366f1,stroke-width:1.5px,color:#0f172a;
classDef agent fill:#eafbf1,stroke:#16a34a,stroke-width:1.5px,color:#0f172a;
classDef io fill:#fdf4e8,stroke:#d97706,stroke-width:1.5px,color:#0f172a;
Q(["User / agent question"]):::io
subgraph Plan["Plan"]
direction TB
LLM0("LLM gathers background<br/>+ rewrites into a multi-step plan"):::agent
end
subgraph Exec["Execute · sub-agents pick tools"]
direction TB
T1("hybrid search"):::agent
T2("data analysis"):::agent
T3("employee / expert search"):::agent
T4("email · calendar · code"):::agent
end
subgraph Retr["Hybrid retrieval · 'the basis for many tools is search'"]
direction TB
Vec("vector search<br/>semantic"):::data
Lex("lexical search<br/>keyword precision"):::data
Sig("anchors &amp; signals<br/>intent · popularity · personalization"):::data
end
KG[("Knowledge graph<br/>triplets (subject,predicate,object)<br/>+ personal graph · edge ACLs")]:::kg
Reflect("Self-reflection<br/>assess confidence in answer"):::agent
Ans(["Grounded answer / action"]):::io
Q --> Plan --> Exec
T1 --> Retr
Vec --- Lex --- Sig
Retr --> KG
KG --> Reflect
T2 --> Reflect
T3 --> Reflect
T4 --> Reflect
Reflect --> Ans

The runtime that hosts this is owned by the Agents Runtime team — “the low-latency, reliable, and secure foundation that powers Glean’s AI agents and assistant experiences at scale,” providing “core runtime services for multi-turn orchestration, tool calling, model routing, memory, streaming, and safety” (Runtime JD). The Context Platform team exposes it outward — SDKs, “agent SDKs and integrations, MCP servers,” and platform actions “such as Code Search, Code Writer, and Memory” built as “reusable platform primitives on top of Glean’s horizontal layers (connectors, security/governance, knowledge graph, memory, model orchestration)” (Context JD).

Deployment: a search engine that runs inside your cloud

Section titled “Deployment: a search engine that runs inside your cloud”

The architectural bet that separates Glean from a generic RAG SaaS: each customer gets “a fully isolated, single-tenant environment,” “either Glean-hosted or in your own AWS, Azure, or GCP cloud” (Security). Ingestion and indexing happen in the customer’s project — “all data processing occurs within your tenant’s project using Google Dataflow pipelines. Your data never leaves your tenant’s environment” (Data flow). Queries hit a tenant-specific endpoint, <tenant_id>-be.glean.com,” after SSO auth, and model calls run under “zero-retention agreements with model providers” (Data flow, Security).

Glean single-tenant deployment and data flow: customer data sources — 100+ SaaS connectors over HTTPS and on-prem sources over VPN/Shared VPC — feed Google Dataflow pipelines that crawl, extract, and map permissions inside a single-tenant project in the customer's own GCP/AWS/Azure cloud (or Glean-hosted); the pipelines build a tenant index plus knowledge graph that never leaves the tenant; an SSO-authenticated employee or agent calls the tenant query endpoint <tenant_id>-be.glean.com via the search/chat/agents API; that endpoint sends permission-filtered RAG context to external LLM providers (OpenAI, Anthropic, Gemini) under zero-retention terms and returns a grounded answer.

Mermaid source
flowchart LR
classDef src fill:#eef2f8,stroke:#94a3b8,stroke-width:1.5px,color:#0f172a;
classDef data fill:#e8f1fd,stroke:#2563eb,stroke-width:1.5px,color:#0f172a;
classDef kg fill:#eef0fe,stroke:#6366f1,stroke-width:1.5px,color:#0f172a;
classDef ext fill:#fdecec,stroke:#e0564f,stroke-width:1.5px,color:#0f172a;
classDef io fill:#fdf4e8,stroke:#d97706,stroke-width:1.5px,color:#0f172a;
subgraph Sources["Customer data sources"]
direction TB
SaaS("100+ SaaS connectors<br/>(over HTTPS)"):::src
OnPrem("On-prem sources<br/>(VPN / Shared VPC)"):::src
end
subgraph Tenant["Single-tenant project · customer's own GCP / AWS / Azure (or Glean-hosted)"]
direction TB
Ingest("Google Dataflow pipelines<br/>crawl · extract · permission mapping"):::data
Index[("Tenant index + knowledge graph<br/>data never leaves the tenant")]:::kg
QE("Query endpoint<br/>&lt;tenant_id&gt;-be.glean.com"):::data
Ingest --> Index --> QE
end
User(["Employee / agent<br/>SSO-authenticated"]):::io
LLM("LLM providers<br/>OpenAI · Anthropic · Gemini<br/>zero-retention"):::ext
SaaS --> Ingest
OnPrem --> Ingest
User -->|"search · chat · agents API"| QE
QE -. "RAG context, permission-filtered" .-> LLM
LLM -. "grounded answer" .-> QE

Founder-led by ex-Google search engineers; ~1,600 people (Sacra). The engineering org, read off the job board, is organized by horizontal platform layer rather than product vertical.

RolePersonSource
Co-founder / CEOArvind Jain (ex-Google Search; Rubrik co-founder)Fortune
Co-foundersVishwanath T R, Tony Gentilcore, Piyush Prahladka (ex-Google)Fortune

The team shape, from the JDs: Agents Runtime (orchestration, routing, memory, streaming, safety — Runtime JD); Context Platform (SDKs, MCP, Code Search/Writer, Memory — Context JD); Backend/Infrastructure (“a highly performant, scalable, secure, permissions-aware system,” “6+ years … distributed systems”Backend JD); and a dedicated Developer Productivity org owning the Bazel monorepo and CI (Dev Productivity JD). Engineering is global, with a “Software Engineer, Product Backend (India)” track (Careers). Posted backend/dev-productivity comp runs roughly $140K–$265K base (Dev Productivity JD).

A monorepo run like Google’s. Developer Productivity “develop[s] and maintain[s] our Bazel monorepo with support for multiple languages,” chasing “hermeticity, caching, reproducibility, and dependency management” and cutting “CI latency through remote execution, caching, and parallelization” (Dev Productivity JD). CI is “GitHub Actions, Kubernetes, and cloud runners.” The Bazel-monorepo-plus-remote-execution choice is the founders’ Google muscle memory applied at ~1,600 engineers.

AI-native engineering, assessed at the door. The same team is chartered to “enable engineers to integrate AI-powered coding assistants (e.g. Github Copilot, Cursor, Claude) into daily workflows” (Dev Productivity JD), and interviews include “an AI-focused exercise or discussion” (Runtime JD, Backend JD).

  1. Own the context layer, rent the model. The knowledge graph and permissioned index are the durable asset; LLMs are multi-provider, routed, and zero-retention (Runtime JD, Security). Glean is structurally insulated from “which model won this quarter.”
  2. A knowledge graph, not just a vector store. Triplets with ACL-bearing edges plus a personal graph give multi-hop reasoning and personalization that raw embeddings can’t — “the system of context” (knowledge graph).
  3. Single-tenant in the customer’s cloud. Heavy operational cost (Dataflow pipelines and a full deployment per tenant) traded for the enterprise’s hardest requirement: “your data never leaves your tenant’s environment” (Data flow).
  4. Permissions as the core invariant. Source ACLs are mapped, maintained, and enforced so retrieval is faithful to what each user may see (Data flow, Security).
  5. Open the platform via MCP. Rather than a closed app, Glean exposes agents and tools through “a single HTTP endpoint” into “20+ MCP hosts” and every major agent framework (Dev platform) — meet developers in Claude, Cursor, ChatGPT.
  6. Google search discipline at startup speed. Bazel monorepo, remote-execution CI, hybrid ranking with hand-built signals — the founders rebuilt web-search engineering for the enterprise corpus.

Reconstructed from public sources only — no insider information. Crawled 2026-06-08 (web search + page fetch; Chrome MCP browsing was declined this session, so no login-walled JDs). Claim tiers: verified (stated on a public page, linked) · inferred (reasoned from a cited signal, confidence flagged) · speculative (best-practice fill-in, labeled). Links are live; pages change, so the supporting quote for each claim is kept in this repo’s evidence map (evidence/glean-evidence-map.md).

#SourceLink
S1Homepage (Work AI platform)https://www.glean.com/
S2Security & deploymenthttps://www.glean.com/security
S3Developer platformhttps://developers.glean.com/
S4Knowledge graph (blog)https://www.glean.com/blog/knowledge-graph-agentic-engine
S5Hybrid search (blog)https://www.glean.com/blog/hybrid-vs-rag-vector
S6Agentic reasoning (blog)https://www.glean.com/blog/agentic-reasoning-future-ai
S7Data flow (docs)https://docs.glean.com/security/architecture/data-flow
S8SWE, Agentic Runtime (JD)https://job-boards.greenhouse.io/gleanwork/jobs/4616929005
S9SWE, Context Platform (JD)https://job-boards.greenhouse.io/gleanwork/jobs/4638008005
S10SWE, Developer Productivity (JD)https://job-boards.greenhouse.io/gleanwork/jobs/4614706005
S11SWE, Backend (JD)https://job-boards.greenhouse.io/gleanwork/jobs/4006731005
S12Careershttps://www.glean.com/careers
S13glean-agent-toolkit (GitHub)https://github.com/gleanwork/glean-agent-toolkit
S14Series F press releasehttps://www.glean.com/press/glean-raises-150m-series-f-at-7-2b-valuation-to-accelerate-enterprise-ai-agent-innovation-globally
S15Sacra (third-party — revenue/headcount)https://sacra.com/c/glean/
S16Fortune (third-party — founder)https://fortune.com/2025/03/27/glean-ceo-arvind-jain-lessons-from-an-ai-unicorn/
ComponentLikely choiceWhy
Index / retrieval enginea proprietary inverted index + embedding store, not a named third-party vector DB”anchors and signals,” “self-learning language model” (hybrid search); no vendor named; ex-Google-Search team would build, not buy
Embedding modelsfine-tuned in-house embeddings alongside provider embeddingshybrid/self-learning search (hybrid search) + multi-provider posture (Runtime JD)
Knowledge-graph storea graph materialized over the tenant index rather than a standalone graph DBtriplets + edge properties derived from indexed content (knowledge graph); no graph DB named
Ranking modellearning-to-rank over the anchor/signal features”self-learning language model” + the explicit signal list (hybrid search)
Memory storeper-tenant store keyed to the knowledge graph”memory” is a named runtime + platform primitive (Runtime JD, Context JD); backing store unstated
Authenterprise SSO (SAML / OIDC)SSO is confirmed at the query boundary (Data flow); IdP breadth not enumerated