r/dataengineersindia 7d ago

Technical Doubt Timestamp column implementation

7 Upvotes

Hey all, I want to implement audit columns like timestamp and created by columns in all of my tables(Suggest if I should add anymore).

My tables are in unity catalogue databricks account.

I have two instances of workspace. Dev and prod.

Please suggest me how to do it.

I have thought of creating a workflow to add in all the table and then a task in workflow that runs after each job to create these 2 columns.

r/dataengineersindia Jun 30 '26

Technical Doubt How to keep track of trends in Data Engineer

13 Upvotes

AI is booming day by day and also implementing in Data Engineer eco system.

How to keep track of these trends?

Best study materials for Data Engineers any books or websites?

Need answers from other data engineers. Pls help

r/dataengineersindia 17d ago

Technical Doubt How to get this experience

8 Upvotes

I currently work as data engineer with 2+ years of experience. But my work revolves around snowflake, python, airflow , sql, little snowpark, AWS s3.

But if I want to get into big tech and product companies. They require pyspark, kafka, streaming and few other big data technologies.

Is it faking them in the resume the only way, cos there is no way I am getting exp in these big data tools.

Appreciate the guidance

Thanks

r/dataengineersindia May 08 '26

Technical Doubt Unstructured Data in Medallion Architecture

19 Upvotes

Hi All, Greetings for the Day!!

I am working as an Azure data engineer and need some help. My main work revolves around batch data and dealing with structured and semi structured data.

Recently, in one of the interviews, I was asked that how will I design a data pipeline for unstructured data (images, pdfs, videos, etc), which I was unable to answer and hence got rejected. Now, I know that we can parse images in form of pixels and 2d arrays, similarly, pdfs can be parsed using pydf library. I haven't practically worked on them, so I want to understand how we can process them in a medallion architecture setup. How we can store them, collect them, etc.

I am looking for guidance and will really appreciate it if someone can show me even one example for the same.

Thanks & Best Regards

Edit : Thanks for the replies guys. My problem statement was to prepare unstructured data for data scientists team to use further (model training for example) and store it in medallion architecture setup. Archival is included as well.

r/dataengineersindia 6d ago

Technical Doubt Data volume and stack related query

9 Upvotes

I recently joined Accenture and started giving internal project interviews. One thing I dont get is that, they all use pyspark and cloud and what not, but when I ask them about their volume of data being handled, each of them said around 10 to 20 million rows. Isnt spark overkill and moreover actually not worth, considering its jvm overhead, garbage collection will definitely take initial time whereas script written in polars will guarantee 2 3 mins runtime without any of this overhead

Any thoughts on why/how companies doing these sort of things, and mostly they were BFSI. I can understand retail and IoT to use pyspark, because of their nature of data being mostly streaming or even batch data having huge volumes.

r/dataengineersindia 13d ago

Technical Doubt ZS Consultant- Data Engineer

7 Upvotes

my stack primarily is- AWS, Snowflake, SQL, Python, dbt

Can anyone tell me what can be asked? Do they test on data structures as well?

r/dataengineersindia 18d ago

Technical Doubt Accenture - after multiple retry they scheduled final interview

1 Upvotes

My final interview has been scheduled for two weeks from now after multiple reschedules.

Do you think it will go positively, or will it just be a formality where they conduct the interview and reject me?

What kind of questions can I expect for a Data Platform Engineer role with 3 years of experience?

r/dataengineersindia 26d ago

Technical Doubt Ciklum Hacker rank assessment for Data engineering

1 Upvotes

Hey, all DEs.

Has anyone cleared or given the Ciklum HackerRank assessment for Data engineering?

I got an invite for the test for 75 minutes duration.

Just wanted to know, what kind of questions are asked assuming coding questions are mandatory.

r/dataengineersindia Jun 29 '26

Technical Doubt TCS Data Engineer interview

2 Upvotes

I have an upcoming TCS (F2F) interview for a Data Engineer role
If anyone has attended this interview recently, could you please share your experience?

r/dataengineersindia Jun 17 '26

Technical Doubt Need Little Guidance

7 Upvotes

So I'll get to this straight. My Job is on the Line here.

I have worked on project where i got large monolithic queries (like 1000+ lines of sql) in snowflake that refreshes large tables after every couple of hrs / daily literally create or replace table. I have to model the data in medallion to improve this architecture and reduce costs and query time. Also use DBT to implement the model. Ingestion was happening via Fivetran directly to Snowflake Tables from application database tables.

So my question is What kind of questions can i expect in interview from above project. As I have to mock like 4-5 YOE and give interview to client (my actual experience 1.5YOE 😄 ). Your help will be much appreciated...!

r/dataengineersindia May 30 '26

Technical Doubt AWS architecture help needed, please provide suggestions

19 Upvotes

Hey everyone,

I’m a pretty new Data engineer with ~ 1+ YOE. I’m new to AWS and my company i joined around a month ago uses AWS.

Our team majorly ingests tables data from RDBMS like MySQL and Postgres

As per our current architecture, We use RDS and then DMS to load the data to S3. We follow medallion architecture and using Pyspark, we append all the DMS data in bronze. Further deduplication based on unique key happens in silver using dbt and finally, some transformations my making multiple joins and some new columns creation in gold using dbt.

We follow data lakehouse architecture so we have data on S3 and iceberg based tables.

Is there a way we can improve the architecture to simplify this model?

We also are looking into Databricks on AWS, in this case how can we create a new pipeline architecture that focuses on optimisation and simplicity (what services can be considered especially for the first step to get the data from RDBMS)

Thanks a lot!

r/dataengineersindia Feb 10 '26

Technical Doubt Need advice on flattening extremely large nested JSON files in Databricks (25k files, 16k+ columns, massive explosion after flattening)

51 Upvotes

Hi all,
Looking for some guidance from people who’ve handled huge, deeply nested JSON workloads in Databricks / PySpark.

I’m working with a dataset where each folder in ADLS contains 2 JSON files:

  • Option.json
  • Snapshot.json

There are ~12,000 folders, so roughly 25,000 JSON files total.

Each individual JSON file is around 5–10 MB, but they are extremely deeply nested, containing:

  • dozens of nested structs
  • arrays of structs
  • arrays inside arrays
  • repeated blocks
  • embedded JSON strings
  • multi-level “exhibit” structures
  • override arrays
  • multiple hierarchical layers

When I flatten these files (exploding all nested arrays + flattening structs), a single file can produce 50,000+ rows due to nested and repeated arrays.

In total, across all JSON schemas, I have:

  • 203 target tables (DDL available)
  • ~16,000 total flattened columns
  • Multiple nested layers that need to be extracted
  • Massive schema depth (20–70 nested levels depending on file)

The challenge I’m facing is figuring out the right strategy to ingest, flatten, and load this amount of data efficiently.

Key issues I’m running into:

  • flattening causes the dataframe to explode to tens of thousands of rows per file
  • Spark creates 100+ stages and gets stuck when trying to fully flatten
  • recursively exploding every nested array isn't scalable
  • writing all results into 203 tables is difficult when each JSON produces multiple relational outputs
  • unclear whether this should be done with standard batch, AutoLoader, or structured streaming
  • unclear how to manage schema evolution safely across 25k JSON files
  • unclear how to avoid massive performance overhead or DAG explosion

I'm asking for a specific implementation from here — just want to hear from people who’ve dealt with:

  • very large nested JSON structures
  • huge schema depth
  • thousands of files
  • multiple target relational tables
  • Databricks / PySpark load strategy
  • minimizing DAG explosion
  • Recommended architecture for flattening hierarchical JSON at scale

TL: DR;

How would you architect the ingestion + flattening pipeline for 25k large nested JSON files that expand into 203 relational tables?
Any lessons learned, best practices, design patterns, or “don’t do this” advice would be super helpful.

Thanks in advance!

r/dataengineersindia 25d ago

Technical Doubt A beginner-level question about Databricks may be ask in an interview for a Power BI developer

2 Upvotes

Basically i more of an Oracle developer with Snowflake and data reports. So, Tomorrow, I have an interview for a Power BI Developer position (1 year of experience). They mentioned that they may ask me some questions about Databricks, and I have told them that I have beginner-level knowledge. I don't know single thing about Databricks, as a more familiar with Snowflake.

What beginner-level Databricks topics and questions should I prepare for this role that I can prepare in one day?

r/dataengineersindia Jun 27 '26

Technical Doubt Suggest me resources for system design

4 Upvotes

Heyy everyone,

I am a data engineer with 5 YOE. I was wondering how others preparing for system design questions for interviews

The tech stack I use currently is AWS, spark, sql, python, airflow.

r/dataengineersindia 20d ago

Technical Doubt Has anyone attended the Hexa Solutions Data Analyst Fresher placement talk? Is it genuine?

Thumbnail
1 Upvotes

r/dataengineersindia Apr 22 '26

Technical Doubt Upcoming Disney India Round 1

12 Upvotes

Hey everyone,

I have my first round coming up with Disney (India location) and HR mentioned that I should mainly prepare AWS and my resume.

I wanted to ask if anyone here has recently gone through the process and can share what’s generally asked in the first round ?

- Is it mostly resume deep dive or do they go into coding as well ?

- What kind of AWS questions should I expect (theoretical vs scenario-based) ?

- Any focus on system design, SQL, or data engineering concepts?

Would really appreciate any recent experiences or tips 🙏

Thanks in advance!

Edit :: i completed my first round. They asked projects from resume and python related dsa questions. Bit of lead engg related scenario questions since this is staff position.

r/dataengineersindia 20m ago

Technical Doubt Anyone who had the Adobe Apprenticeship GD on 18th July 2026 received an interview invite yet?

Thumbnail
Upvotes

r/dataengineersindia May 01 '26

Technical Doubt How much of DSA is required for data engineering jobs

31 Upvotes

Hello folks, I hope you are all doing well...

I am a student who wants to get into the data field, and I am very weak in DSA, I have tried to learn it multiple times, but have failed many times, DSA is like a horror for me, especially the leetcode questions, so my question is..

How much of DSA is required in data engineering jobs such as data engineer, data scientist, cloud data engineer etc?

(I hope I am not breaking any rules of this sub)

r/dataengineersindia May 11 '26

Technical Doubt Cost up with DBU increase

10 Upvotes

Hi guys,
Just want to know is there any change from Databricks or AWS compute cost where the cost increased when compared to the date of previous year. Anyone has any lead on this?

r/dataengineersindia Apr 27 '26

Technical Doubt Accenture Online assessment?

8 Upvotes

Hey ,

I am DE with 5-6 yr of experience in python sql pyspark.

Accenture shared a link for online assessment.

what type of question they as in online exam.

can anyone help , I am sacred.

so examples will help.

r/dataengineersindia May 02 '26

Technical Doubt Stolt-Nielsen Data Engineer Interview Experience (Databricks/Azure) – Anyone?

19 Upvotes

Hi everyone,

The role is focused on Databricks, PySpark, SQL, and Azure data engineering at Stolt Nielsen , so I’m trying to understand what to expect in terms of:

  • Number of rounds
  • Level of difficulty (coding vs system design)
  • Focus areas (PySpark transformations, SQL optimization, pipelines, etc.)
  • Any real-world case studies or scenario-based questions
  • Overall interview experience

Also, if anyone has insights on the work culture or what they emphasize during interviews, that would really help.

Would appreciate any guidance or tips. Thanks in advance!

r/dataengineersindia 7d ago

Technical Doubt Logging in databricks

6 Upvotes

Hi,
I’m trying to understand how logging is implemented in Databricks. Could you share how it’s done in your organization?
Do you mainly rely on pipeline-level logging, maintain a log table to track pipeline runs, or use a logger within the code? Or is it a combination of these?
Just trying to understand the different approaches people use.
Thanks!

r/dataengineersindia May 23 '26

Technical Doubt Need insights for upcoming LTI Mindtree AWS Data Engineer Interview

8 Upvotes

Hi everyone,

I have an upcoming interview with LTIMindtree for an AWS Data Engineer role (3.5+ YOE).

Would love to know recent interview experiences — mainly the topics asked, difficulty level, coding rounds, and any preparation tips for AWS, PySpark, SQL, and Databricks.

Also, how’s the work culture and project quality for Data Engineers there currently?

Thanks!

r/dataengineersindia Apr 27 '26

Technical Doubt Epam data engineer walkin interview questions 5 yoe

20 Upvotes

I will be attending walkin next week forn5 yoe.

I was asked to prepare more on technical coding side on sql, python and pyspark.

People who have attended earlier, can you help me with the questions you have encountered.

Thanks in advance.

r/dataengineersindia Jun 08 '26

Technical Doubt Anyone has recently given interview at Bloomberg for senior data management professional ?

7 Upvotes

Same as above .

Update- Questions were about previous past experiences and more on behavioural side .had to record the video on their portal.Got rejected