Sunil Kumar Reddy
I design and operate real-time streaming pipelines, cloud-native ETL systems, and scalable data architectures — moving hundreds of millions of events per day with sub-second latency and exactly-once guarantees.

Engineering data systems that don't sleep
Daily Events Processed
Pipeline Failures Reduced
Faster Analytics Delivery
Cloud Platforms Mastered
Apache Airflow PR (in review)
Degrees in Computer Apps
I'm a Data Engineer based in Bangalore, focused on the systems that keep modern data moving: high-throughput streaming pipelines, cloud-native ETL, and fault-tolerant architectures with exactly-once processing. I work fluently across Kafka, Flink, Spark, and Airflow, deployed on AWS, GCP, and Azure.
I'm also an open-source contributor to Apache Airflow, where I've been working through review with project maintainers to ship a deferrable execution mode for the SFTPOperator.
Bachelor of Computer Applications (BCA)
Maharaja Agrasen Himalayan Garhwal University
GPA 7.55/10 · Data Structures & Algorithms, DBMS, Operating Systems, Computer Networks
Master of Computer Applications (MCA)
Maharaja Agrasen Himalayan Garhwal University
GPA 8.0/10 · Distributed Systems, Big Data Analytics, Data Mining & Warehousing
Data Engineer
Real-time streaming & cloud data platforms
Designing fault-tolerant streaming pipelines, cloud-native ETL, and exactly-once processing systems.
The toolkit behind the pipelines
Hover any hexagon to flip it and reveal my proficiency level. Grouped by where each tool lives in the data lifecycle.
Languages
Streaming
Cloud
Data Tools
Production-grade streaming platforms
Three end-to-end systems built for scale, fault tolerance, and low latency. Click any card for the full architecture and impact.
Real-Time Fraud & Anomaly Detection
Stateful stream processing for instant fraud detection
Data Quality & Streaming Governance
Validate, monitor & enforce quality on live streams
Global Event Processing Platform
Exactly-once, fault-tolerant stateful streaming at scale
Contributing to Apache Airflow
I contributed a deferrable execution mode to Apache Airflow's SFTPOperator — making long-running file transfers non-blocking by handing them to Airflow's async Triggerer instead of holding a worker slot. The work has been through several rounds of review with Apache committers and PMC members, and is in active review.
Add deferrable mode to SFTPOperator
Started April 19, 2025 · Active as of June 2026
What I built
- Implemented an async SFTPOperationTrigger and wired it into SFTPOperator.execute() via self.defer()
- Refactored transfer logic into a single transfer() method on both SFTPHook (sync) and SFTPHookAsync (async) — applying DRY after reviewer feedback
- Replaced a sync_to_async wrapper with native async I/O (retrieve_file / store_file / sftp.unlink) for real performance gains
- Added asyncio.Semaphore + asyncio.gather for bounded concurrent transfers over a single SSH/SFTP connection
- Iteratively renamed classes (SFTPOperatorTrigger → SFTPTrigger → SFTPOperationTrigger) to match Apache's cross-provider naming conventions
- Recovered orphaned commits after an accidental force-push using git reflog, and reopened the PR cleanly with full transparency to reviewers
class SFTPOperator(BaseOperator):def execute(self, context):- self.hook.transfer(self.local, self.remote)+ if self.deferrable:+ self.defer(+ trigger=SFTPOperationTrigger(...+ method_name='execute_complete',+ )else:+ self.hook.transfer(self.local, self.remote)
What I learned
- Working with senior maintainers (dabla, potiuk, srchilukoori) taught me to defend technical decisions with evidence, not just intuition.
- Choosing native asyncio over a thread-pool wrapper after being challenged showed me the difference between async-looking and genuinely async code.
- Code review culture in a large OSS project is iterative — each round of CI failures (ruff, newsfragments, docs sync, import ordering) sharpened my attention to detail.
- Transparency matters: owning a git mistake openly built more trust with reviewers than hiding it would have.
One of the few freshers actively driving a production-level contribution through review in Apache Airflow — alongside committers and PMC members.
Credentials & continued learning
Validating cloud and data engineering expertise through industry certifications.
AWS Certified Data Engineer – Associate
Amazon Web Services · Expected 2026
Verify credentialLet's build something that scales
Open to data engineering roles and collaborations. Drop a message or reach out directly.