Intervu is in beta — feedback welcome at support@intervu.io

PayPal DevOps / SRE Interview Questions

15 real practice questions for the mid-level DevOps / SRE role at PayPal (Fintech), spanning behavioral. Build and maintain infrastructure, CI/CD pipelines, and ensure system reliability. The first 3 questions below include what PayPal interviewers actually listen for, plus likely follow-ups.

Questions
15
Categories
Behavioral (15)
Difficulty mix
5 easy · 5 medium · 5 hard
Avg. answer time
~4 min

Behavioral Questions (15)

  1. 1.Tell me about a time you had to ensure zero downtime during a critical system migration or deployment. What safeguards did you put in place, and how did you handle any unexpected issues?

    easy~4 min

    What interviewers look for

    • Demonstrates understanding of idempotency, rollback mechanisms, and transaction integrity in distributed systems
    • Shows ability to plan for failure scenarios with concrete backup plans and monitoring
    • Mentions specific testing approaches like canary deployments, blue-green deployments, or circuit breakers

    Likely follow-ups

    • How did you validate that no transactions were lost or duplicated during the migration?
    • What monitoring alerts would have told you if something went wrong?

    Company context

    PayPal's Money Movement Reliability principle requires that every transaction succeeds correctly with exactly-once semantics. DevOps/SRE engineers must understand idempotency, ledger correctness, and the business impact of payment failures at PayPal's scale of billions of transactions.

  2. 2.PayPal processes millions of payment transactions every minute across our global infrastructure. Walk me through how you'd design our Kubernetes cluster autoscaling strategy to handle Black Friday traffic spikes while maintaining strict payment SLAs.

    easy~3 min

    What interviewers look for

    • Discusses horizontal pod autoscaling based on payment transaction volume metrics, not just CPU
    • Mentions pre-scaling clusters before known traffic events like Black Friday to avoid cold start delays
    • Considers PCI-DSS compliance requirements when scaling payment processing pods across nodes

    Likely follow-ups

    • How would you handle the fact that our payment processing pods have strict memory requirements for fraud detection models?
    • What metrics would you use to trigger scale-down events without disrupting active payment flows?

    Company context

    PayPal operates at massive global scale with strict payment SLAs and must handle predictable traffic spikes during shopping events. The company's Trust Builder value means any scaling strategy must maintain payment reliability and fraud detection capabilities while meeting PCI-DSS requirements.

  3. 3.Venmo's transaction feed generates massive write volume as millions of users share payments socially. Design a database sharding strategy that can handle this write-heavy social feed while keeping user timelines fast to read.

    easy~3 min

    What interviewers look for

    • Proposes user-based sharding to co-locate user's transactions and social connections on same shard
    • Addresses read replica strategy for timeline queries and mentions eventual consistency trade-offs
    • Considers hot user problem where celebrities or viral transactions could overwhelm single shards

    Likely follow-ups

    • How would you handle a viral payment that gets shared by millions of users across different shards?
    • What metrics would you track to detect when a shard is becoming overloaded?

    Company context

    PayPal asks this because Venmo's social feed is unique in the payments space, combining high-volume financial transactions with social media-style feeds. This tests understanding of write-heavy sharding while maintaining the user experience that makes Venmo distinctive from traditional payment apps.

  4. 4.Tell me about a time you had to convince engineering teams to adopt a new security practice or tool when they were resistant because it would slow down their development velocity.

    easy~3 min
  5. 5.PayPal processes about 22 billion payment transactions per year globally. If our average API response time increased by just 50ms, estimate the annual cost impact to our business. Walk me through your calculation and assumptions.

    easy~3 min
  6. 6.Walk me through a time when you had to implement or modify a system to meet new compliance requirements. How did you balance the regulatory needs with system performance and user experience?

    medium~5 min
  7. 7.Our Kafka clusters handle billions of payment events daily across multiple regions for our event-sourced ledger system. Yesterday, we lost the primary Kafka cluster in our US-East region for 20 minutes. How would you design our cross-region failover to ensure payment event ordering and exactly-once processing?

    medium~4 min
  8. 8.PayPal Checkout is embedded on millions of merchant websites worldwide, each with different network conditions and performance requirements. Design our CDN and edge caching strategy to ensure sub-200ms checkout load times globally while handling real-time fraud signals.

    medium~4 min
  9. 9.Describe a situation where you had to coordinate incident response across multiple teams during a production outage that affected customer payments. How did you ensure effective communication while maintaining focus on resolution?

    medium~4 min
  10. 10.You're investigating why our payment success rate dropped from 98.5% to 97.8% over the past week, but no code deployments happened and no incidents were reported. How would you systematically diagnose this issue?

    medium~4 min
  11. 11.Describe the most sophisticated monitoring or alerting system you've built for detecting anomalies in real-time. What edge cases did you account for, and how did you prevent false positives while ensuring you caught actual threats?

    hard~5 min
  12. 12.PayPal's fraud detection system processes payment risk signals in real-time across our microservices architecture, but we're seeing inconsistent fraud scores for the same transaction when services call our risk API multiple times. Design a caching and consistency strategy that ensures fraud scores remain stable within a payment session while staying fresh enough to catch evolving fraud patterns.

    hard~5 min
  13. 13.Braintree processes payment webhooks for thousands of merchants who expect reliable delivery even when their endpoints are down or slow. Design a webhook delivery system that guarantees eventual delivery while respecting merchant rate limits and providing visibility into delivery status.

    hard~5 min
  14. 14.Tell me about a time you had to drive a major infrastructure modernization initiative that required getting buy-in from senior engineering leadership who were concerned about the risks to existing payment systems.

    hard~5 min
  15. 15.Our risk and fraud ML models currently add about 15ms to every payment decision, but the fraud team wants to deploy a new ensemble model that would add another 25ms. The business is asking you to evaluate whether this tradeoff is worth it. How would you approach this analysis?

    hard~5 min

More PayPal interview questions