# Senior Software Engineer, Storage

Remote from[USA](https://jobicy.com/job-region/usa.md)Salary, yearly, USD 217,000                             - 303,900Department  [Software Engineering](https://jobicy.com/categories/engineering.md) Employment type Full Time, Job posted30 Jun 2026Apply before30 Jul 2026Experience level  Senior
Views / Applies 28 / 9 [About company](https://jobicy.com/company/reddit.md) [Share](#share)

About [Reddit](https://jobicy.com/company/reddit.md)

Dive into anything

*

[Internet](https://jobicy.com/company-category/internet.md)
*  2005

Actively Hiring  Verified job posting This job post has been [manually reviewed](https://jobicy.com/tools/help-center/employee/how-does-jobicy-verify-the-legitimacy-of-remote-job-listings.md) for authenticity and compliance.       Tailor Resume Check Job Fit Cover Letter

### Tailor my resume to this job

Discover how to best rewrite and optimize your resume for this specific job. You'll receive personalized suggestions and detailed guidance to highlight your key strengths, effectively address the job requirements, and make your application more compelling to recruiters and hiring managers.     After analyzing your resume, I can provide several recommendations to better position yourself for this role.  Your background in software development shows strong technical skills, particularly in Java and Python development. However, for this Senior Backend Developer position, I notice there could be more emphasis on your experience with microservices architecture and cloud technologies, which are key requirements for this role. I recommend highlighting specific projects where you utilized these technologies and quantifying your achievements to demonstrate impact... Upgrade to Plus

### Am I a good fit for this job?

Understand your compatibility with this specific job opportunity. Our detailed analysis will assess your resume against the role's requirements, providing insights into your potential fit, key skill alignments, and areas you might need to develop to be a strong candidate.     After assessing your resume against the job requirements, here's a summary of your fit:  1. Overall Match: Moderate Fit (Approx. 65-70%). Your resume shows good alignment with several core responsibilities for the Project Manager role, especially your experience in agile methodologies and stakeholder communication.
2. Key Strengths: Your PMP certification and proven track record in delivering projects on time are strong assets for this position.
3. Potential Gap: The role specifies experience with 'XYZ specific software', which is not explicitly mentioned in your resume. If you have this experience, ensure it's highlighted.
4. Recommendation: Consider adding a quantifiable achievement related to budget management, as this is often a key metric for PM roles... Upgrade to Plus

### Cover Letter Assistant

Need help writing a compelling cover letter? Our system can analyze this job and your resume to help you draft personalized paragraphs that highlight your strengths and impress hiring managers.      Let me help you draft a strong opening...  Dear Hiring Manager, I am writing to express my keen interest in the Senior Marketing Manager position. My background in developing data-driven marketing strategies and leading successful product launches, as detailed in my resume, directly aligns with your need for a candidate capable of enhancing brand visibility and driving market share growth. I am confident I can make a significant contribution to your team... Upgrade to Plus

###  AI Summary

This is a Senior Software Engineer role focused on storage infrastructure at Reddit. The engineer will work on caching and storage systems serving hundreds of millions of queries per second, storing terabytes of data across thousands of machines. Responsibilities include developing long-term technical strategy, owning storage infrastructure, and mentoring other engineers. The ideal candidate has 5+ years of experience with distributed storage systems and proficiency in languages like Golang, Python, C++, or Java. This role offers a competitive base salary range of $217,000 - $303,900 USD plus equity and benefits.

### Role DNA

Job Complexity Easy Hard Pace & Pressure Relaxed Fast-paced Autonomy Level Guided Full Ownership Communication Load Independent Highly Collaborative

AI Insight This role is rated difficulty 4 because it requires senior-level expertise in distributed storage systems and the ability to design scalable solutions for a massive user base, but it does not require principal-level leadership or cross-organizational influence.

### Salary Analysis

Median  Highly Competitive  USD260,450US Market USD160k – 280k 0 USD308k      AI Insight The offered salary range ($217,000 - $303,900) is highly competitive and above the median for senior storage engineers in the US market. It reflects Reddit's recognition of the specialized skills required for large-scale distributed systems. The midpoint ($260,450) is attractive compared to the market range of $160,000 - $280,000, making this a compelling offer.

### Core Skills Required

[Distributed Systems](https://jobicy.com/jobs?search_keywords=Distributed+Systems.md) [Storage Infrastructure](https://jobicy.com/jobs?search_keywords=Storage+Infrastructure.md) [Golang](https://jobicy.com/jobs?search_keywords=Golang.md) [Python](https://jobicy.com/jobs?search_keywords=Python.md) [C++](https://jobicy.com/jobs?search_keywords=C.md) [Java](https://jobicy.com/jobs?search_keywords=Java.md) [Cassandra](https://jobicy.com/jobs?search_keywords=Cassandra.md) [Redis](https://jobicy.com/jobs?search_keywords=Redis.md) [Memcache](https://jobicy.com/jobs?search_keywords=Memcache.md) [Performance Optimization](https://jobicy.com/jobs?search_keywords=Performance+Optimization.md)

### Cover Letter Sample

I am excited to apply for the Senior Software Engineer, Storage position at Reddit. With over 5 years of experience building and scaling distributed storage systems, I have a proven track record of designing reliable and performant infrastructure for large-scale applications.

My expertise in languages like Golang and Python, combined with hands-on experience with technologies such as Cassandra, Redis, and Memcache, aligns well with the requirements of this role. I am particularly drawn to the challenge of serving hundreds of millions of queries per second while maintaining high availability.

In my previous role, I led the migration of a critical caching layer that improved latency by 40% and reduced operational costs. I am eager to bring my technical leadership and collaborative skills to Reddit to help build the next generation of storage infrastructure.

Thank you for considering my application. I look forward to the possibility of contributing to Reddit's mission of bringing community and belonging to everyone in the world.

Copy

### Sample Interview Questions

How would you design a highly available distributed cache serving hundreds of millions of queries per second?I would start by analyzing the access patterns and data characteristics to determine the caching strategy, such as write-through or write-back. Using consistent hashing for sharding and replication for fault tolerance, I would deploy multiple cache nodes across different availability zones. I'd implement a hybrid approach with an in-memory cache like Redis for hot keys and a distributed cache like Memcache for larger datasets. Monitoring and auto-scaling would be critical, along with a robust failure recovery mechanism.Describe a time you optimized a storage system to improve performance or reduce costs.In a previous role, I noticed that our Cassandra cluster had high read latency due to inefficient data modeling. I redesigned the schema to use denormalization and proper primary key selection, which reduced read latency by 30%. Additionally, I implemented compression and tiered storage to move cold data to cheaper SSDs, reducing storage costs by 20% without impacting performance.How do you ensure data consistency in a distributed storage system?Consistency depends on the system's requirements. For strong consistency, I would use consensus algorithms like Raft or Paxos for replicated state machines. For eventual consistency, I'd implement conflict resolution strategies like last-write-wins or CRDTs. I also leverage quorum-based reads and writes in systems like Cassandra to balance consistency and availability. Testing with chaos engineering helps validate consistency guarantees under failure scenarios.Explain how you would debug a performance issue in a production distributed storage system.I would start by gathering metrics from monitoring tools (e.g., Prometheus, Grafana) to identify bottlenecks like CPU, memory, I/O, or network. Traces and logs from distributed tracing (e.g., Jaeger) help pinpoint slow paths. I would isolate the issue by running load tests on a staging environment with similar traffic patterns. For example, if there's high tail latency, I'd check for hot partitions or garbage collection pauses. Once identified, I'd apply targeted optimizations like query tuning, scaling, or rebalancing.How would you mentor a junior engineer on best practices for developing storage infrastructure?I would start by pairing with them on a small task, such as adding a feature to a caching layer, to demonstrate code review practices and testing. I'd encourage them to write unit and integration tests and to use chaos engineering tools to understand system behavior under stress. Weekly knowledge-sharing sessions on topics like data modeling, consistency models, and performance profiling would reinforce learning. I'd also guide them to contribute to open-source projects or internal design documents to build confidence.  Reddit is a community of communities. It’s built on shared interests, passion, and trust, and is home to the most open and authentic conversations on the internet. Every day, Reddit users submit, vote, and comment on the topics they care most about. With 100,000+ active communities and approximately 126 million daily active unique visitors, Reddit is one of the internet’s largest sources of information. For more information, visit [www.redditinc.com](http://www.redditinc.com/).The Storage Infra team is looking to hire a Senior Software Engineer who is excited to solve large scale storage infrastructure problems.

Reddit’s mission is to bring community and belonging to everyone in the world. Reddit is a community of communities where people can dive into anything through experiences built around their interests, hobbies, and passions. With more than 50 million people visiting 100,000+ communities daily, it is home to the most open and authentic conversations on the internet. From pets to parenting, skincare to stocks, there’s a community for everybody on Reddit. For more information, visit redditinc.com.

Our caching layer serves 100s of millions of queries/second serving 100s of billions of keys.We do this while efficiently storing 100s of Terabytes of data across thousands of machines. As a senior engineer, you will partner closely with your team and our biggest users (ML/AI/Search) to build technical solutions that can scale to Reddit’s product growth. You’ll do this while maintaining an extremely high availability and reliability bar to ensure that Reddit’s users continue to get a great experience across our entire product portfolio.

In your day-to-day, you can expect to:

* Contribute to developing the team and organization’s long term technical strategy.
* Refine and maintain our data storage infrastructure to support the storage and caching needs of products supporting hundreds of millions of users.
* Own the infrastructure (managed and self-hosted) that supports data writes, reads and storage along with the necessary tooling and automation to efficiently operate the infrastructure.
* Mentor other engineers on how to design, build, and evangelize services used by hundreds of engineers across Reddit

Who you might be:

* 5+ years of experience building internet-scale software, preferably with a focus on machine learning storage infrastructure.
* Software development experience in one or more general purpose programming languages; Golang, Python, C++, Java
* Hands-on experience implementing features, optimizations, and bug fixes to distributed storage systems.
* Excellent communication skills to collaborate with stakeholders in engineering, data science, machine learning, and product.
* Degree in Computer Science or equivalent technical field.
* Experience working closely with Storage technologies like Postgres, Mysql, Cassandra, Redis, Memcache is a huge plus!

Pay Transparency:

This job posting may span more than one career level.

In addition to base salary, this job is eligible to receive equity in the form of restricted stock units, and depending on the position offered, it may also be eligible to receive a commission. Additionally, Reddit offers a wide range of benefits to U.S.-based employees, including medical, dental, and vision insurance, 401(k) program with employer match, generous time off for vacation, and parental leave. To learn more, please visit [https://www.redditinc.com/careers/](https://www.redditinc.com/careers/).

To provide greater transparency to candidates, we share base salary ranges for all US-based job postings regardless of state. We set standard base pay ranges for all roles based on function, level, and country location, benchmarked against similar stage growth companies. Final offer amounts are determined by multiple factors including, skills, depth of work experience and relevant licenses/credentials, and may vary from the amounts listed below.

The base salary range for this position is:$217,000—$303,900 USD

In select roles and locations, the interviews will be recorded, transcribed and summarized by artificial intelligence (AI). You will have the opportunity to opt out of recording, transcription and summarization prior to any scheduled interviews.

During the interview, we will collect the following categories of personal information: Identifiers, Professional and Employment-Related Information, Sensory Information (audio/video recording), and any other categories of personal information you choose to share with us. We will use this information to evaluate your application for employment or an independent contractor role, as applicable. We will not sell your personal information or disclose it to any third party for their marketing purposes. We will delete any recording of your interview promptly after making a hiring decision. For more information about how we will handle your personal information, including our retention of it, please refer to our [Candidate Privacy Policy for Potential Employees and Contractors](https://redditinc.com/policies/candidate-privacy-policy).

Reddit is proud to be an equal opportunity employer, and is committed to building a workforce representative of the diverse communities we serve. Reddit is committed to providing reasonable accommodations for qualified individuals with disabilities and disabled veterans in our job application procedures. If, due to a disability, you need an accommodation during the interview process, please let your recruiter know.

Show more

[Apply now >](https://jobicy.com/jobs/148143-senior-software-engineer-storage.md)

*

![Upload CV](data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NSIgaGVpZ2h0PSI2NSIgZmlsbD0ibm9uZSIgeG1sbnM6dj0iaHR0cHM6Ly92ZWN0YS5pby9uYW5vIj48ZyBjbGlwLXBhdGg9InVybCgjQSkiPjxwYXRoIGQ9Ik0wIDBINjVWNjVIMFYwWiIgZmlsbD0iIzAyOWFlYiIvPjxnIGZpbGw9IiNmZmYiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIj48cGF0aCBkPSJNMzMuMDQ5IDE1LjQ1NGExLjQzIDEuNDMgMCAwIDAtMi4wOTcgMGwtNy41NzkgOC4xNDdhMS4zOCAxLjM4IDAgMCAwIC4wOSAxLjk3MyAxLjQ0IDEuNDQgMCAwIDAgMi4wMDgtLjA4OGw1LjEwOS01LjQ5MnYyMC42MWExLjQxIDEuNDEgMCAwIDAgMS40MjEgMS4zOTdjLjc4NSAwIDEuNDIxLS42MjUgMS40MjEtMS4zOTd2LTIwLjYxbDUuMTA5IDUuNDkyYTEuNDQgMS40NCAwIDAgMCAyLjAwOC4wODggMS4zOCAxLjM4IDAgMCAwIC4wOS0xLjk3M2wtNy41NzktOC4xNDZ6TTE2Ljc2OSAzOC40YzAtLjc3My0uNjItMS40LTEuMzg1LTEuNFMxNCAzNy42MjcgMTQgMzguNHYuMTAybC4yMTUgNi4yMjljLjIyMyAxLjY4LjcwMSAzLjA5NSAxLjgxMyA0LjIxOHMyLjUxIDEuNjA3IDQuMTcyIDEuODMzYzEuNi4yMTggMy42MzYuMjE4IDYuMTYuMjE4aDExLjI4bDYuMTYtLjIxOGMxLjY2Mi0uMjI2IDMuMDYxLS43MDkgNC4xNzItMS44MzNzMS41ODktMi41MzggMS44MTMtNC4yMThDNTAgNDMuMTEzIDUwIDQxLjA1NSA1MCAzOC41MDNWMzguNGMwLS43NzMtLjYyLTEuNC0xLjM4NS0xLjRzLTEuMzg1LjYyNy0xLjM4NSAxLjRsLS4xOSA1Ljk1OGMtLjE4MiAxLjM3LS41MTUgMi4wOTUtMS4wMjYgMi42MTJzLTEuMjI4Ljg1My0yLjU4MyAxLjAzOGMtMS4zOTUuMTktMy4yNDMuMTkzLTUuODkzLjE5M0gyNi40NjJjLTIuNjUgMC00LjQ5OC0uMDAzLTUuODkzLS4xOTMtMS4zNTUtLjE4NC0yLjA3Mi0uNTIxLTIuNTgzLTEuMDM4cy0uODQ0LTEuMjQyLTEuMDI2LTIuNjEyYy0uMTg3LTEuNDEtLjE5MS0zLjI3OS0uMTkxLTUuOTU4eiIvPjwvZz48L2c+PGRlZnM+PGNsaXBQYXRoIGlkPSJBIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMCAwaDY1djY1SDB6Ii8+PC9jbGlwUGF0aD48L2RlZnM+PC9zdmc+)

### Upload your resume now

To unlock remote work opportunities and be discovered by global employers.

This job listing has been manually reviewed by the Jobicy Trust & Safety Team for compliance with our posting guidelines, including verification of the company's legitimacy, accuracy of job details, clarity of remote work policy, and absence of misleading or fraudulent content.

## How to apply

## See a few more

Similar Software Engineering remote jobs

*
![Aviatrix logo](https://jobicy.com/data/server-nyc0409/galaxy/mercury/2025/06/c783b38c-221.jpeg)

Aviatrix

[Senior Solutions Architect – ACE](https://jobicy.com/jobs/148145-senior-solutions-architect-ace.md)

WHO WE ARE: Aviatrix® is pioneering the Cloud Native Security Fabric — the architecture the Containment Era requires. The Cloud Native Security Fabric governs every workload communication path across…

![USA flag](https://cloud.jobicy.com/nyc4-cold/img/round-flags/us.svg)
US•Full TimeUSD 121,829-143,328/year*
![Chainguard logo](https://jobicy.com/data/server-nyc0409/galaxy/mercury/2025/06/e4b6aacf-221.jpeg)

Chainguard

[Engineering Manager, Internal Developer Platform](https://jobicy.com/jobs/148144-engineering-manager-internal-developer-platform.md)

Chainguard is the trusted source for open source. By delivering hardened, secure, and production-ready builds of all the open source software engineers and AI agents rely on, Chainguard helps organizations…

![USA flag](https://cloud.jobicy.com/nyc4-cold/img/round-flags/us.svg)
US•Full TimeUSD 205k-230k/year*
![Okta logo](https://jobicy.com/data/server-nyc0409/galaxy/mercury/2025/06/d54f5eb5-221.png)

Okta

[Demo Engineer](https://jobicy.com/jobs/148141-demo-engineer.md)

Secure Every Identity, from AI to HumanIdentity is the key to unlocking the potential of AI. Okta secures AI by building the trusted, neutral infrastructure that enables organizations to safely…

![USA flag](https://cloud.jobicy.com/nyc4-cold/img/round-flags/us.svg)
US•Full TimeUSD 160k-246k/year*
![Verra Mobility logo](https://jobicy.com/data/server-nyc0409/galaxy/mercury/2025/06/98f74d13-221.png)

Verra Mobility

[Senior Network Engineer](https://jobicy.com/jobs/143126-senior-network-engineer.md)

Position Overview: The Senior Network Engineer (Load Balancing) will be responsible for the design, implementation, and optimization of enterprise-grade load balancing and traffic management solutions across on-prem and cloud environments. This role is…

![USA flag](https://cloud.jobicy.com/nyc4-cold/img/round-flags/us.svg)
US•Full TimeNEW*
![Life360 logo](https://jobicy.com/data/server-nyc0409/galaxy/mercury/2022/02/f269bad3-221.jpeg)

Life360

[Staff AI Architect, Family AI Lab](https://jobicy.com/jobs/143221-staff-ai-architect-family-ai-lab.md)

About Life360Life360’s mission is to keep people close to the ones they love. Our category-leading mobile app,Tile tracking devices, and Pet GPS tracker empower members to protect the people, pets,…

![USA flag](https://cloud.jobicy.com/nyc4-cold/img/round-flags/us.svg)
US•Full TimeUSD 197k-290k/year*
![Lumen Technologies logo](https://jobicy.com/data/server-nyc0409/galaxy/mercury/2021/09/bab8bfe71b006d34181034e47e6b2c52.jpg)

Lumen Technologies

[Network Design Engineer V (WAN /Job Package Engineer) ABMS](https://jobicy.com/jobs/143399-network-design-engineer-v-wan-job-package-engineer-abms.md)

Lumen is the trusted network for AI. We’re transforming how businesses connect, secure, and scale in an AI-driven world.By connecting people, data, and applications quickly, securely, and effortlessly, we help…

![USA flag](https://cloud.jobicy.com/nyc4-cold/img/round-flags/us.svg)
US•Full TimeUSD 132,232-193,940/year*
![Remote logo](https://jobicy.com/data/server-nyc0409/galaxy/mercury/2025/06/63a88d3a-221-1.png)

Remote

[Senior Backend Engineer (Elixir)](https://jobicy.com/jobs/148118-senior-backend-engineer-elixir-2.md)

About Remote Remote is solving modern organizations’ biggest challenge – navigating global employment compliantly with ease. We make it possible for businesses of all sizes to recruit, pay, and manage…

![EMEA flag](https://cloud.jobicy.com/nyc4-cold/img/round-flags/emea.svg)
EMEA•Full TimeUSD 53,300-119,850/year*
![Sutherland logo](https://jobicy.com/data/server-nyc0409/galaxy/mercury/2025/06/06060827-221.jpg)

Sutherland

[Full Stack Software Developer – Node.js & React (Bulgaria based)](https://jobicy.com/jobs/143731-full-stack-software-developer-node-js-react-bulgaria-based.md)

Company DescriptionAbout Sutherland: Sutherland is a global leader in driving business and digital transformation, and exceptional experiences along the entire journey of our client’s engagement with their customers. With over 35…

![Bulgaria flag](https://cloud.jobicy.com/nyc4-cold/img/round-flags/bg.svg)
BG•Full TimeNEW*
![Allstate logo](https://jobicy.com/data/server-nyc0409/galaxy/mercury/2025/06/e78968f8-221.jpeg)

Allstate

[SailPoint IAM Engineer](https://jobicy.com/jobs/144806-sailpoint-iam-engineer.md)

At Allstate, great things happen when our people work together to protect families and their belongings from life’s uncertainties. And for more than 90 years, our innovative drive has kept…

![USA flag](https://cloud.jobicy.com/nyc4-cold/img/round-flags/us.svg)
US•Full TimeUSD 75,100-126,325/year*
![DraftKings Inc. logo](https://jobicy.com/data/server-nyc0409/galaxy/mercury/2025/06/79cb4e6c-221-1.png)

DraftKings Inc.

[Lead Backend Engineer](https://jobicy.com/jobs/144851-lead-backend-engineer.md)

At DraftKings, AI is becoming an integral part of both our present and future, powering how work gets done today, guiding smarter decisions, and sparking bold ideas. It’s transforming how…

![Ukraine flag](https://cloud.jobicy.com/nyc4-cold/img/round-flags/ua.svg)
UA•Full TimeNEW
[More Jobs](https://jobicy.com/jobs.md)