AbbVie · Primly Community

AbbVie senior / L5 system design interview, what to expect and how they frame it

market_realist · 4 replies

did the system design round for a senior SWE (what i'd call roughly L5 equivalent) role at abbvie commercial IT last quarter. posting because the framing is a bit different from what you'd expect if you've only done FAANG-style system design.

the problem they gave me: design a patient data notification system. sends alerts to care coordinators when a patient hasn't refilled a specialty medication. sounds niche but it decomposes into pretty standard pieces: event ingestion, scheduling, notification dispatch, observability.

what they focused on: data consistency. they asked what happens if a notification fires twice. idempotency came up pretty quick. HIPAA compliance implications on data storage and transit. you don't need to be a compliance lawyer but knowing that PHI has specific requirements (encryption at rest, audit logging, access controls) is table stakes here. failure modes. what if the downstream SMS gateway is down? dead letter queues, retry with backoff, all of that. how you'd test it. they wanted to hear about integration testing and how you'd validate in a staging environment before touching real patient data.

what they didn't do: whiteboard the database schema in detail, ask about specific AWS services by name, or push on scalability to google-scale numbers. the scale is more like millions-not-billions, which is actually a more realistic and in some ways harder design constraint.

interviewer was a principal engineer who asked good follow-up questions. he wasn't looking for a perfect answer, he was looking for structured thinking and intellectual honesty about tradeoffs.

one thing i'd add: they care about how you communicate. abbvie has a lot of cross-functional teams (medical, regulatory, commercial) and engineers have to translate technical decisions for non-technical stakeholders. i mentioned that a couple times and it landed well.

total duration: 60 minutes. felt a little rushed at the end.

4 replies

backend_bekah

the HIPAA angle is interesting. did they actually test your knowledge of it or was it more like 'do you know it's relevant and why'? asking because i've worked adjacent to healthcare data but not directly in it.

market_realist

definitely the latter. knowing it's relevant and being able to name the key categories (PHI, encryption, audit logging, minimum necessary principle) was enough. nobody quizzed me on specific regulation text.

staff_steph

the 'communicate to non-technical stakeholders' thing is way more important at pharma IT companies than people realize. good callout. i've seen strong engineers tank interviews at regulated-industry shops because they only knew how to talk to other engineers.

visa_vik

did they give you any prep material beforehand or was it completely cold? i have this round coming up and trying to figure out how much pharma context to absorb in advance.