Essential cookies keep authentication working. With your permission, we also use analytics cookies to understand and improve the product. Read our Privacy Policy

DataEngPrep.tech
QuestionsPracticeAI CoachDashboardPricingBlog
ProLogin
Home/Questions/General/Other/What are the different data sources you have used?

What are the different data sources you have used?

General/Otherhard2 min read

Reviewed by Aditya Kumar · Last reviewed 2026-08-08

I've worked with a diverse range of data sources, broadly categorized into databases, APIs, files, streaming platforms, SaaS applications, and modern data lake/lakehouse formats, covering both batch…

🤖 Analyze Your Answer
Frequency
Low
Asked at 1 company
Category
243
questions in General/Other
Difficulty Split
151E|43M|49H
in this category
Total Bank
1,863
across 7 categories
Asked at these companies
Cognizant

Why This Question Matters

This hard-level General/Other question appears frequently in data engineering interviews at companies like Cognizant. While less common, it tests deeper understanding that distinguishes strong candidates.

How to Approach This

This is a senior-level question that tests architectural thinking. Lead with the high-level design, then drill into specifics. Discuss trade-offs explicitly - there is rarely one correct answer. Show awareness of scale, fault tolerance, and operational complexity. The expert answer includes a code example that demonstrates the implementation pattern.

Expert Answer
340 wordsIncludes code

I've worked with a diverse range of data sources, broadly categorized into databases, APIs, files, streaming platforms, SaaS applications, and modern data lake/lakehouse formats, covering both batch and real-time ingestion.

Databases

I frequently extract data from OLTP databases like PostgreSQL, MySQL, and Oracle, and sometimes OLAP systems like Snowflake or BigQuery. Ingestion patterns include Change Data Capture (CDC) using tools like Debezium for near real-time updates, and bulk extracts via SQL queries or database-specific utilities (COPY in Postgres) for batch processing. Challenges include schema evolution and ensuring transactional consistency.
-- Example: Bulk extract for incremental loading
SELECT id, name, created_at, updated_at
FROM public.users
WHERE updated_at >= '{{ last_successful_run_timestamp }}';

APIs

RESTful and GraphQL APIs are common for integrating with external services. Key considerations include managing rate limiting, pagination (e.g., cursor, offset), authentication (OAuth, API keys), and ensuring idempotency for retries.

Files

Files, including CSV, JSON, and especially columnar formats like Parquet and ORC, are stored in cloud object storage (S3, GCS) or HDFS. Columnar formats are preferred for analytical workloads due to superior compression and predicate pushdown, enhancing query performance with engines like Spark.

Streaming Platforms

For real-time data, Apache Kafka and AWS Kinesis are critical for event-driven architectures, ingesting high-throughput streams from application logs or IoT devices. Key considerations involve managing offsets, consumer groups, and ensuring message ordering and delivery guarantees.

SaaS Applications

SaaS platforms like Salesforce or Stripe often require integration via native APIs, webhooks, or managed connectors (Fivetran, Airbyte) which handle schema discovery and incremental loading.

Data Lakes and Lakehouses

Modern data architectures leverage data lakes (e.g., S3 with Parquet) and lakehouse formats like Delta Lake or Apache Iceberg. These provide ACID transactions, schema evolution, and time travel over object storage, serving as robust sources for analytics.

Legacy Systems

Legacy sources like mainframe systems (DB2, flat files) or FTP servers present unique challenges in connectivity, data format parsing, and scheduling.

In the interview, also mention how you handle data quality, error handling, and monitoring for each source type.

⚡
Pro Tip

Red Flag: Generic list. Pro-Move: 'Postgres Debezium CDC; Stripe API with checkpointing; Kafka streams; Fivetran for SaaS; custom Python for APIs with backoff.'

Want all answers as a PDF for offline study?
Seven focused volumes with 750+ in-depth answers — Answer Vault →

Related General/Other Questions

hardHave you worked on Data Warehousing projects?FreemediumHow would you read data from a web API? What steps would you follow after reading the data?FreehardRetrieve the most recent sale_timestamp for each product (Latest Transaction).FreehardWhat is the difference between OLTP and OLAP?FreemediumWhat is the difference between SQL and NoSQL databases?Free

Level up your prep

Recommended
Educative
Educative Unlimited

800+ hands-on courses — Grokking System Design, Coding Patterns, and AI mock interviews for your DE loop.

Start learning →

Some links below are affiliate links. If you buy through them we may earn a small commission at no extra cost to you — it helps keep DataEngPrep free.

According to DataEngPrep.tech, this is one of the most frequently asked General/Other interview questions, reported at 1 company. DataEngPrep.tech maintains an editor-reviewed database of 1,863 data engineering interview questions across 7 categories.

← Back to all questionsMore General/Other questions →
Categories
All QuestionsSQLSpark / Big DataPython / CodingSystem DesignCloud / ToolsBehavioral
By Company
AmazonGoogleDatabricksSnowflakeAWSAzureMicrosoftNetflixUberTCS
Interview Guides
All GuidesTop SQL QuestionsTop Spark QuestionsPySpark QuestionsTop Python QuestionsTop System DesignKafka QuestionsAirflow QuestionsSQL Window FunctionsETL QuestionsData Modeling
Products
AI Interview CoachAnswer AnalyzerSQL PlaygroundResume AnalyzerAnswer Vault PDFsPricing
Company
About & Editorial PolicyContact UsAI DisclosureDisclaimerTerms of ServicePrivacy Policy
© 2026 DataEngPrep.tech. All rights reserved.
AboutBlogContactDisclaimer