An interactive knowledge graph analysis of Juan Sequeda's field dispatch from Gartner Data & Analytics London 2026 — covering the AI ROI crisis, context layers, vendor strategy, governance singularity, iron-thread methodology, and data community insights.
Juan Sequeda's approximately tenth Gartner D&A conference — this time in London, May 2026 — delivered six themed sections of practitioner-grounded takeaways. The article pulls no punches: 4 out of 5 AI initiatives are failing, CDOs are ranked third by CEOs in AI savviness, and the industry is still calling 2026 "the year of the foundation" — again.
The article covers: the AI ROI crisis and its statistical evidence; context layers as mainstream AI infrastructure; the three CDMP vendor strategy options; governance singularity as eight domains converge; the iron-thread / pay-as-you-go methodology for avoiding waterfall anti-patterns; and the power of the data community.
Title: Gartner Data & Analytics London May 2026: My Honest No-BS Takeaways
Author: Juan Sequeda, Principal Scientist at ServiceNow
Event: Gartner Data & Analytics London, organized by Gartner
Gartner defines three AI adoption archetypes. Juan Sequeda challenges the AI-Cautious archetype as a legitimate organizational strategy — calling it a posture that leaves organizations behind, not a viable path forward.
| Metric | Figure |
|---|---|
| AI ROI Rate 2025 | 1 in 5 AI initiatives achieving ROI |
| Agent Cost Concern Gap | 6/10 IT leaders concerned; only 1/10 D&A leaders |
| AI FinOps Adoption | 47% of European organizations have financial guardrails |
| Data Engineering Effectiveness | Only 26% rate data engineering as highly effective |
| Governance Readiness | Only 13% say D&A governance can lead AI; 90% say architecture needs overhaul |
| KE Starting Point Poll | 60% starting with semantic layers; 40% straight to ontologies/KGs |
Gartner 2026: "Semantics, knowledge graphs and ontologies are no longer niche technologies but essential components of AI-ready data infrastructure." The talk by Andres Garcia-Rodeja on building a context layer drew a packed room with 30 minutes of post-session Q&A on basic foundational questions — a clear signal that this is now mainstream territory.
Ontologies, business glossaries, metrics definitions. The foundational semantic layer — where data catalogs and metadata tools have traditionally focused.
Entities, activities, and environmental conditions — what is actually happening in the business right now, not after the fact.
Tracking of data, the processes it went through, decisions made, actions taken, outcomes that resulted.
Context already exists in every organization — in systems, processes, people's heads, institutional and tacit knowledge. It is fragmented and poorly managed, not missing. No vendor can sell it to you.
When reliability and trust are required, use semantics-powered deterministic reasoning, not probabilistic LLM inference. Knowledge graphs and ontologies are the backbone for trustworthy agentic AI.
The CDMP (Converged Data Management Platform) vendor strategy panel featured Gartner analysts Ehtisham Zaidi, Robert Thanaraj, and Roxane Edjlali, moderated by Daniel Cota.
The next competitive battleground is not who owns your data, but who owns your metadata. App vendors already know their domain's semantics; hyperscalers and ISVs are still trying to infer what app vendors already know.
Governance keynote by Anurag Raj — Juan calls it one of the best sessions at the conference.
AI is forcing the convergence of eight governance domains into a single blurring scope. These boundaries are dissolving whether organizations plan for it or not.
Data contracts bridge upstream operational governance and downstream analytical governance, carrying schema, lineage, SLAs, and quality metrics.
Six policy types (definitions/models, quality, security, privacy, ethics, lifecycle) translated into enforceable executable code.
Operations teams govern daily — managing data entry rules, maintaining source correctness, notifying teams of changes — but don't call it governance. The D&A world has ignored this upstream activity.
"What the industry is not talking about." Juan Sequeda's practitioner methodologies for avoiding the waterfall foundation anti-pattern.
Start from a business outcome, identify the minimum foundation needed to support it, execute end-to-end delivering value while building the foundation simultaneously. Repeat per use case. The opposite of waterfall-first-then-value. Published 2019 for knowledge graph design.
Follow one specific, important piece of data from its operational origin through every system, governance checkpoint, analytics process, and decision it influences — and map the round trip back to operations. Forces cross-team dialogue and makes abstract governance concrete.
Organizations hear "build the foundation first" and enter waterfall mode: big foundation project, then next layer, then next — nothing delivered, everyone loses patience. The industry desperately needs use-case-by-use-case methodologies to counter this cycle.
Interactive D3.js visualization of the companion RDF/Turtle knowledge graph. Switch between Basic and Advanced modes; filter by node type, density, and predicates; click nodes to open their URIBurner resolver page.
Per Juan Sequeda's Gartner London 2026 takeaways — a practical seven-step guide.
Identify the specific business outcome you want to achieve and work backwards to the minimum data, context, and governance foundation needed. Resist defining the full foundation before the first use case.
Context cannot be purchased. Inventory your existing ontologies, business glossaries, metrics definitions, operational rules, and tacit institutional knowledge before evaluating any context platform product.
Assess where your data gravity lives, your cloud commitment, and the tier of each vendor: Strategic (future direction) vs Critical (mission-critical today). These dimensions are independent.
Map the key data flows between operational systems and downstream analytics. Define data contracts specifying schema, lineage, SLAs, and quality metrics. Bring both teams into the same conversation.
Select one important piece of data. Follow it from operational origin through every system, governance checkpoint, analytics process, and decision it influences. Map the full round trip back to operations.
Coming from BI and star schemas? Start with semantic layers. Coming from operational data integration? Go straight to ontologies and knowledge graphs.
When trust and auditability matter, use semantics-powered deterministic reasoning grounded in ontologies and knowledge graphs — not probabilistic LLM inference alone.
Explore this knowledge graph interactively via the URIBurner SPARQL endpoint — a Virtuoso-backed Linked Data server. Each query targets the named graph https://linkeddata.uriburner.com/DAV/demos/daas/gartner-da-london-2026-juan-sequeda-claude_sonnet4.ttl where this knowledge graph is hosted.
PREFIX schema: <http://schema.org/>
PREFIX : <https://juansequeda.substack.com/p/gartner-data-and-analytics-london#>
SELECT ?stat ?statName ?statValue ?thesisName
FROM <https://linkeddata.uriburner.com/DAV/demos/daas/gartner-da-london-2026-juan-sequeda-claude_sonnet4.ttl>
WHERE {
?stat a :Statistic ;
schema:name ?statName ;
schema:value ?statValue .
OPTIONAL { ?stat :supportsThesis ?thesis . ?thesis schema:name ?thesisName . }
}
ORDER BY ?statName
PREFIX schema: <http://schema.org/>
SELECT ?person ?personName ?orgName ?title
FROM <https://linkeddata.uriburner.com/DAV/demos/daas/gartner-da-london-2026-juan-sequeda-claude_sonnet4.ttl>
WHERE {
?person a schema:Person ;
schema:name ?personName .
OPTIONAL { ?person schema:worksFor ?org . ?org schema:name ?orgName . }
OPTIONAL { ?person schema:jobTitle ?title . }
}
ORDER BY ?personName
PREFIX schema: <http://schema.org/>
PREFIX : <https://juansequeda.substack.com/p/gartner-data-and-analytics-london#>
SELECT ?sectionName ?insightName ?insightDesc
FROM <https://linkeddata.uriburner.com/DAV/demos/daas/gartner-da-london-2026-juan-sequeda-claude_sonnet4.ttl>
WHERE {
:article schema:hasPart ?section .
?section a :ConferenceTakeaway ;
schema:name ?sectionName ;
:hasInsight ?insight .
?insight schema:name ?insightName .
OPTIONAL { ?insight schema:description ?insightDesc . }
}
ORDER BY ?section ?insightName
PREFIX schema: <http://schema.org/>
PREFIX : <https://juansequeda.substack.com/p/gartner-data-and-analytics-london#>
SELECT ?domain ?domainName
FROM <https://linkeddata.uriburner.com/DAV/demos/daas/gartner-da-london-2026-juan-sequeda-claude_sonnet4.ttl>
WHERE {
?domain a :GovernanceDomain ;
schema:name ?domainName .
}
ORDER BY ?domainName
Entity hyperlinks throughout this page use URIBurner describe links — a Virtuoso-backed Linked Data resolver — via the describe/?url={uri} pattern over RDF hash IRIs. Use the quick-explore links below or open the SPARQL endpoint directly.
Generated using kg-generator, rdf-infographic-skill
Linked Data resolver: URIBurner — Virtuoso-backed Linked Data resolver/server platform · Source delivery: juansequeda.substack.com