What Is a Data Architect Responsible For?
The person who decides where every important number in the business lives, how it flows, and who is allowed to see it. A working map of the role, its layers, its people, and its day.
The Big Idea, in One Breath
A data architect designs how information moves, is stored, and is understood across an entire organisation — from the raw feed to the report on a screen.
Every company runs on numbers. Customer counts, order totals, cost per unit, retention curves, sensor readings. The data architect is the person who decides where those numbers live, how they get from where they were created to where they will be used, and who is allowed to touch them along the way.
They do not usually build the dashboards, and they do not write the machine learning models. They design the plumbing underneath both, and the shared vocabulary that lets ten teams say “active customer” and mean the same thing.
Think of a city’s water utility. You do not think about it much until it fails. Somewhere behind the scenes there is a person who decides where the reservoirs go, how the treatment plants connect, which pipes carry drinking water and which carry irrigation, and how the meters get read. The data architect is that person, but for information rather than water.
Sources are the springs and rivers. Ingestion pipelines are the treatment plants. The warehouse is the reservoir. Dashboards and APIs are the taps in the buildings. Governance is the water-quality report the city publishes every quarter. When one of those links is missing, the whole thing tastes wrong.
What a Data Architect Really Is
Not a database administrator. Not a data engineer. A senior designer whose product is the shape of the company’s data.
The confusion starts with the fact that three closely related roles all touch tables and pipelines every day: the DBA, the data engineer, and the data architect. Each one is real, each one is different, and knowing the difference is the fastest way to understand what the architect actually owns.
Database Administrator
Keeps a specific database healthy: backups, tuning, patching, capacity, uptime. Vertical scope, one system deep.
Data Engineer
Builds and runs the pipelines: ingestion, ETL, orchestration, streaming, transformations. Horizontal, hands-on, day-to-day flow of data.
Data Architect
Designs the shape: which stores exist, how they connect, what the models look like, which policies govern them. Sets the frame the DBA and engineer work inside.
Data Scientist / Analyst
The consumer. Uses whatever the architect built to answer business questions, train models, and produce insight.
You can run a small company with no data architect at all — someone senior on the engineering team just makes the calls. You cannot run a large one without at least a part-time equivalent, because the number of stores, the number of consumers, and the number of regulatory obligations grow past what any single team can hold in their head.
DBAs care about one database. Engineers care about the flow. The architect cares about the map.
The Core Responsibilities
Five things stay on the architect’s desk no matter what team they sit in.
Titles vary. Companies argue about what the role includes and what it does not. But if you look at what data architects actually do — and what quietly breaks when the role is missing — the same five responsibilities show up again and again.
Design the data models
Decide what entities exist, what attributes they carry, and how they relate. This is the foundation everything else stands on.
Choose and place the stores
Relational, columnar, key-value, document, graph, lake, warehouse, cache. Which store belongs where, and why.
Design the flow
How data leaves source systems, gets cleaned and transformed, lands in the warehouse or lake, and reaches its consumers. Batch, streaming, or both.
Set the rules
Naming, ownership, retention, quality thresholds, access, lineage. Anything the platform will honour by policy rather than by luck.
Explain it, defend it, evolve it
Onboard new teams onto the model. Say no to shortcuts that would break it. Migrate it forward as the business changes.
Notice what is not on this list. Writing the day-to-day Airflow DAGs, tuning a slow query for one report, restoring last night’s backup. Those belong to engineers and DBAs. The architect might help debug when the failure is architectural — a bad model, a wrong choice of store, a broken contract between systems — but the ordinary operational work is not theirs.
The Three Layers of a Data Model
One idea, three levels of detail. Move too fast between them and everything gets muddled.
When a data architect draws a model, they are almost always drawing it three times — once in the language of the business, once in the language of the schema, and once in the language of the specific storage engine. Each layer refines the one above without contradicting it.
Conceptual: the business vocabulary
Nouns and verbs the business already uses. Customer. Order. Shipment. Refund. No columns, no keys, no types. Just the entities, their most important attributes, and the relationships between them. Non-technical stakeholders should recognise their own world in this picture.
Logical: the schema, tech-agnostic
Now the entities become tables (or documents, or nodes). Every attribute gets a type, every relationship gets a cardinality, every primary key and foreign key is spelled out. This layer is portable — the same logical model could be implemented in Postgres, in Snowflake, in Cassandra.
Physical: the actual database
Now it lives in a specific engine. Indexes on the columns that will be filtered. Partitions on the columns that will be scanned. Clustering keys, materialised views, storage tiers. Choices here are shaped by the query patterns, not by the business.
Skipping the conceptual layer and going straight to tables. When you do this, the schema quietly encodes assumptions no one wrote down, and the moment the business changes shape, the model does not know how to bend.
Data Architects and Data Governance
Governance is where the architect stops being a schema designer and starts being a policy designer.
Governance is a scary word for a very ordinary idea: making sure the right people see the right data, and that when a number shows up on a slide, you can trace it back to where it came from.
A data architect does not personally write the access policies for every table — that would not scale. They design the system that lets those policies exist and be enforced consistently. Five pieces show up in almost every serious governance setup.
Ownership
Every dataset has a named owner. If no one owns it, no one maintains it, and it silently rots.
Classification
PII, financial, health, public. The label determines the rules. No label, no path to production.
Lineage
For any number in a report, you can walk backwards through every transformation to the source row that produced it.
Quality
Freshness, completeness, uniqueness, referential integrity. Monitored, alerted, visible.
Access
Role-based, attribute-based, or both. Reviewed. Auditable. Revocable in minutes, not weeks.
Retention
How long each class of data lives, and how it is deleted. Regulators care. Storage bills care. Users forget until they need it.
Governance is not paperwork. It is the difference between a data platform you can trust and a spreadsheet you keep emailing around.
Types of Data Architects
The role has fanned out. Five common variants, each with a different centre of gravity.
“Data architect” is a small title covering a big surface. In the last decade the field has fanned out into several specialisations that share the same core skills but pull in different directions.
Enterprise Data Architect
Looks at the whole organisation. Sets the reference architecture, the shared master data, the cross-domain policies. Works at the org chart altitude.
Solution / Application Data Architect
Designs the data model for one product or platform end-to-end. Closest to the delivery team. Ships schemas alongside features.
Cloud / Platform Data Architect
Owns the cloud data stack: warehouse, lakehouse, ingestion, orchestration, catalog. Fluent in one or more clouds.
Analytics / BI Architect
Designs the reporting layer: semantic models, metric definitions, marts. The bridge between the warehouse and the dashboard.
Master Data / MDM Architect
Focuses on the shared entities every system agrees on: customer, product, employee. Golden records, matching, stewardship.
Domain Variants
Streaming, ML platform, security & privacy, integration. Same core, different specialisation.
Small companies collapse most of these into one person. Larger ones separate them. When a job description says just “data architect”, the first useful question at the interview is: which of these is really the job?
A Day in the Life
Meetings, models, and a lot of asking “what does that number mean?”.
The exact hours differ from person to person, but the rhythm of the day is remarkably consistent across companies. Design work in short blocks, questions and unblockings in between, and one or two longer sessions where they actually get to think.
Morning: standup and inbox triage
Quick check-in with the data platform team. Answer overnight questions from analysts and engineers. Flag anything that is actually a design issue rather than a bug.
Mid-morning: model review
Sit with a delivery team walking through a new feature. Look at the tables they are proposing. Push back on ones that duplicate existing data, or that quietly redefine an entity in a subtly different way.
Midday: business conversation
Meet a product owner or an analyst. Half the meeting is business context; half is turning that context into a rough logical model on a whiteboard.
Afternoon: deep design block
Two undisturbed hours on something that matters: a migration plan, a new domain model, a governance policy the platform will enforce.
Late afternoon: governance and review
Approve access requests. Review a new dataset’s classification. Sign off on a schema change PR. Chase down the owner of an orphan table.
Evening: reading and writing
Update a design doc, read one paper or one vendor benchmark, write a short note about a decision so the team does not have to relitigate it next quarter.
The Skills Toolbox
Three families — modelling, platforms, and people — and the architect has to be at least competent in all three.
Nobody is world-class at everything on this list. The strongest architects are excellent at modelling, very good at platforms, and unusually good at explaining both to non-technical stakeholders.
Data modelling
Conceptual, logical, physical. Normalisation, dimensional modelling, star and snowflake schemas, data vault, wide event tables.
SQL, deeply
Not just writing queries — reading execution plans, understanding join strategies, spotting the model problem hiding behind the slow query.
Warehouses & lakes
At least one of Snowflake, BigQuery, Redshift, Databricks. How they store, partition, price, and scale.
Ingestion & streaming
Batch pipelines, CDC, Kafka-style streams, orchestration with Airflow / Dagster / Prefect. Enough to design; enough to review.
Cloud fundamentals
Networking, IAM, storage tiers, cost models. The architect must understand how a design becomes a monthly bill.
Security & compliance
PII, GDPR, HIPAA, SOX — whichever apply. Encryption, masking, tokenisation, retention.
Communication
Explaining a dimensional model to a marketer. Writing a design doc a new engineer can read in one sitting.
Influence without authority
Most people whose systems will be affected do not report to the architect. Politeness, patience, and a good written trail are essential.
Who a Data Architect Works With
Almost everyone who touches a number. That is why the calendar looks the way it does.
The architect is a hub role. If you drew a map of the people they interact with in a normal fortnight, it would fan out to almost every function that produces or consumes data.
| Partner | What they need from the architect |
|---|---|
| Data engineers | Models to build against, contracts between systems, decisions when a design is ambiguous. |
| Analysts / scientists | A trustworthy layer to query, consistent definitions of core metrics, lineage they can point at. |
| Product managers | Realistic estimates for “can we measure X?”, feedback on how a new feature will land in the data model. |
| Software architects | Alignment on how operational systems emit events, and how those events feed the analytical world. |
| Security & compliance | Classification, access reviews, encryption and masking design, audit evidence. |
| Business stakeholders | A shared definition of every important entity and metric. One agreed answer to “what is a customer?”. |
| Vendors | Cost, capability and roadmap comparisons for the tools that will run the platform for years. |
A data architect who spends all their time with engineers and none with the business will end up with a beautiful, expensive platform that answers the wrong questions.
Fixing Data Silos, Step by Step
The single most common problem the role is hired to solve. Here is the shape of a real fix.
A data silo is what happens when a team — usually for good local reasons — builds its own store, its own definitions, and its own reports, and never quite connects them to the rest of the company. Multiply that by a few departments and you have a business that cannot answer basic questions about itself.
You do not fix silos by shouting about them. You fix them by patient, sequenced work.
Map what exists
Inventory every store, dashboard and pipeline. No judgement, just the map. Most companies discover they own twice as many as they thought.
Agree the core entities
Sit each stakeholder team down. Force a single definition of customer, product, order, employee. Write it down. Get it signed.
Build a shared foundation
A conformed layer in the warehouse. Golden records. A catalog everyone can search. Not to replace the silos yet, just to sit alongside them.
Migrate one high-value report
Pick a report that lots of people use and prove it in the shared layer. Retire its silo version. Now the shared layer has customers, not just a diagram.
Establish the governance
Ownership, classification, quality checks, access. Make the shared layer the safest and most convenient place to be.
Migrate the rest, on a schedule
Silos come down one at a time, with owners and dates. What cannot move stays connected via a documented interface.
What this needs
- Executive backing for the definitions
- Real time from stakeholder teams
- A platform capable of hosting the shared layer
- Patience — measured in quarters, not sprints
Ways it fails
- Treated as an IT project, not a business change
- No named owner for the conformed layer
- “Shared” but no team uses it
- The old silos are never actually retired
Common Myths, Cleared Up
The role attracts confident opinions from people who have not sat in the chair. A few of them are worth answering directly.
“A data architect is just a DBA with a fancier title.”
A DBA keeps one database healthy. A data architect decides which databases exist, what shape they take, how they connect, and how the whole platform is governed. Different job, different scope, different skill mix. Some architects do come from a DBA background, but so do many who come from engineering, analytics or software architecture.
“Data architecture is only about storage.”
Storage is the visible half. The invisible half — models, contracts, quality, access, lineage, retention — is where the leverage is. Get the storage right and the models wrong, and the platform is fast and useless. Get the storage wrong and the models right, and you have a tuning problem, not a design one.
“Once the data model is built, the job is done.”
The business does not sit still. Products change, regulations tighten, teams reorganise, new sources arrive. A living model is one that a small group of people, led by the architect, evolve continuously. The day nobody is evolving it is the day it starts to drift out of usefulness.
“Data architects slow everything down.”
They can, if the process is bad. A good architect adds review only where the cost of a mistake is high — shared entities, cross-team contracts, regulated data — and gets out of the way everywhere else. Slowness usually means the boundary between “architected” and “delivery-owned” is drawn in the wrong place, not that the role is unnecessary.
Key Takeaways
The whole guide, compressed into a handful of lines you can carry into your next conversation about data.
Remember This
- The role is a designer, not an operator. The data architect designs the shape of the data platform; engineers and DBAs build and run inside that shape.
- Three layers, one truth. Conceptual for the business, logical for the schema, physical for the storage engine. Skip any one and you pay for it later.
- Governance is not paperwork. Ownership, classification, lineage, quality, access, retention. Without them, the numbers cannot be trusted.
- Types matter. Enterprise, solution, cloud, analytics, MDM. Same core skills, very different day. Ask which one a job actually is.
- Silos are the day job. Most data architects are hired because the same customer appears three different ways. The fix is patient and sequenced, not heroic.
- Half the work is talking. Business stakeholders, engineers, analysts, security. The best architects are unusually good writers and unusually patient explainers.
- The model is alive. A data architecture that is not being evolved is a data architecture that is quietly rotting.