Improve Your App Performance With Background Jobs

Rate this content
Bookmark

This talk offers a gentle introduction to a new paradigm of durable workflows by walking the audience through a common use case: user onboarding email campaign. I’ll show how the DIY approaches tend to be slow and unreliable — or require significant investment of resources. Instead, by embracing background jobs you can deliver a great User Experience and stress-free ops. More and more companies favor short development cycles and lean approach to headcount. Being able to own entire business workflows end-to-end turns (formerly) front-end teams into empowered product teams.

This talk has been presented at React Summit 2024, check out the latest edition of this React Conference.

FAQ

Sylvia Vargas's talk is a gentle introduction to background jobs, focusing on using background jobs to improve the reliability and performance of applications.

Sylvia Vargas is a developer who has contributed to React docs, previously worked at StackBlitz in developer relations, and recently joined Ingest as the developer relations lead.

Using third-party services like Clerk for authentication, Superbase for database management, MailChimp for mailing lists, and Resend for email allows developers to build applications more easily and efficiently by leveraging these specialized tools.

Common issues with using third-party services include slow performance, lack of control over infrastructure, blocking code in critical paths, and the need to manage retries and failures.

Background jobs can improve reliability and performance by moving non-blocking tasks out of the user's critical path, using queues to ensure tasks are processed asynchronously, and handling retries and failures more effectively.

Durable Workflows combine durable execution and flow control, allowing developers to define reliability infrastructure as part of their code. This helps manage tasks sequentially, handle retries, and improve the reliability of complex applications.

Ingest is a reliability layer for applications that allows developers to define functions or workflows using its SDK and serve them through HTTP endpoints. It ensures reliable asynchronous execution of functions and provides tools for monitoring and debugging.

Ingest handles failures by automatically retrying failed functions until they succeed. It provides detailed logs and a dashboard for monitoring and debugging, ensuring that data is not lost and can be recovered easily.

Yes, Ingest provides a local development server that is free and open-source, allowing developers to test and debug their applications locally without needing an account.

Ingest can be used for various tasks such as building complex payment flows, LLM prompt training, multi-step data orchestration, generating dynamic videos, summarizing massive news datasets, and verifying email domains with serverless workflows.

Sylwia Vargas
Sylwia Vargas
29 min
14 Jun, 2024

Comments

Sign in or register to post your comment.

Video Summary and Transcription

This is a background jobs one-on-one talk focusing on the challenges and benefits of using background jobs in software development. It explores the complexity of software development and the impact of distributed applications. The talk highlights the use of Ingest as a reliable solution for executing functions in the background and building drip campaigns. It emphasizes the importance of reliability and architectural choices in software development and discusses the features and capabilities of Ingest, including local development, handling failures, and data retrieval.

1. Introduction to Background Jobs

Short description:

This is a background jobs one-on-one talk. I'm Sylvia Vargas, and I love pirogi and pigeons. I've contributed to React docs and previously worked at StackBlitz. Now I'm with Ingest as the developer relations lead. I enjoy working on side projects because it's all joy and fun.

So basically, this is a background jobs one-on-one talk, a very gentle introduction. If you don't know anything about background jobs, that's fine. But if you do know a lot, then you can support me by laughing at my jokes.

This was a test. So I'm Sylvia Vargas and I was wondering what information could be relevant to this very fine audience. And so I came up with a little game. So the game goes like this. I'll tell a fact about me, and if we have that in common, make a noise, whatever noise you want. So a warm-up. I'm very happy to be here. Okay. I love pirogi. It's going to get more and more obscure, so brace yourself. I love pigeons, and I have a pigeon family living on my balcony. Okay. Okay.

And, well, some of you may know me because I did some contributions to this page called React docs. This is the page. And previously... Anyone? No? Okay. And previously, I was running developer relations at Ingest, sorry, at StackBlitz, and now I recently joined Ingest as the developer relations lead. As I told you, this got more and more obscure. But here is one that maybe we still have in common. So the fun fact about me is that I really love working on side projects. Because it's... No? No? Because it's all joy and fun. And basically you don't have to worry about all the business needs. You can just focus on the user experience. And because oftentimes you are your own and only user, you will always be happy. But, you know, this is not the case with real production apps.

2. The Complexity of Software Development

Short description:

Most software is more complicated and scarier than we think due to business requirements. Let's look at a real-life scenario. Imagine joining a new restaurant booking app. Boss asks for signup flow. New tools make it easier. Code: create user, send email, add to mailing list.

In real product development, what the user sees is, you know, oftentimes just the tip of the iceberg. Most software is more complicated and way scarier than we think because of the business requirements.

So let's look at a real-life scenario. So imagine that you join a new hot restaurant booking app. The app is in Next.js because everyone who works there is a hipster. And your boss asks you how long it will take you to build a signup flow. So you get a list of requirements from the product manager.

Okay. Let's have a look. You know, you have like a nice latte. You're kind of relaxed. It's a typical Tuesday. So you need to do, you know, security and authenticate the user. I should hold the latte. You should add the user to the database. You should use the... Add the user to the mailing list and also send a welcome email. You know, you look at that. Easy. Because today it's so much easier to build this than it was five years ago, right? Because right now you can use, for example, Clerk for authentication, Superbase for database, MailChimp for a mailing list, and Resend for email.

So you're like... Job done. That's it. Maybe this is also the end of my presentation here. But no, there's more. So you know, you take a big sip of your iced latte and go back to playing Wordle or reading one of the thousand mega threads of Dan Abramov on React server components. So this is how the code would look. You would create a user in the database. You would send the welcome email and then add the user to the mailing list. And this looks simple.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

A Guide to React Rendering Behavior
React Advanced Conference 2022React Advanced Conference 2022
25 min
A Guide to React Rendering Behavior
Top Content
This transcription provides a brief guide to React rendering behavior. It explains the process of rendering, comparing new and old elements, and the importance of pure rendering without side effects. It also covers topics such as batching and double rendering, optimizing rendering and using context and Redux in React. Overall, it offers valuable insights for developers looking to understand and optimize React rendering.
Speeding Up Your React App With Less JavaScript
React Summit 2023React Summit 2023
32 min
Speeding Up Your React App With Less JavaScript
Top Content
Watch video: Speeding Up Your React App With Less JavaScript
Mishko, the creator of Angular and AngularJS, discusses the challenges of website performance and JavaScript hydration. He explains the differences between client-side and server-side rendering and introduces Quik as a solution for efficient component hydration. Mishko demonstrates examples of state management and intercommunication using Quik. He highlights the performance benefits of using Quik with React and emphasizes the importance of reducing JavaScript size for better performance. Finally, he mentions the use of QUIC in both MPA and SPA applications for improved startup performance.
React Concurrency, Explained
React Summit 2023React Summit 2023
23 min
React Concurrency, Explained
Top Content
Watch video: React Concurrency, Explained
React 18's concurrent rendering, specifically the useTransition hook, optimizes app performance by allowing non-urgent updates to be processed without freezing the UI. However, there are drawbacks such as longer processing time for non-urgent updates and increased CPU usage. The useTransition hook works similarly to throttling or bouncing, making it useful for addressing performance issues caused by multiple small components. Libraries like React Query may require the use of alternative APIs to handle urgent and non-urgent updates effectively.
The Future of Performance Tooling
JSNation 2022JSNation 2022
21 min
The Future of Performance Tooling
Top Content
Today's Talk discusses the future of performance tooling, focusing on user-centric, actionable, and contextual approaches. The introduction highlights Adi Osmani's expertise in performance tools and his passion for DevTools features. The Talk explores the integration of user flows into DevTools and Lighthouse, enabling performance measurement and optimization. It also showcases the import/export feature for user flows and the collaboration potential with Lighthouse. The Talk further delves into the use of flows with other tools like web page test and Cypress, offering cross-browser testing capabilities. The actionable aspect emphasizes the importance of metrics like Interaction to Next Paint and Total Blocking Time, as well as the improvements in Lighthouse and performance debugging tools. Lastly, the Talk emphasizes the iterative nature of performance improvement and the user-centric, actionable, and contextual future of performance tooling.
Optimizing HTML5 Games: 10 Years of Learnings
JS GameDev Summit 2022JS GameDev Summit 2022
33 min
Optimizing HTML5 Games: 10 Years of Learnings
Top Content
PlayCanvas is an open-source game engine used by game developers worldwide. Optimization is crucial for HTML5 games, focusing on load times and frame rate. Texture and mesh optimization can significantly reduce download sizes. GLTF and GLB formats offer smaller file sizes and faster parsing times. Compressing game resources and using efficient file formats can improve load times. Framerate optimization and resolution scaling are important for better performance. Managing draw calls and using batching techniques can optimize performance. Browser DevTools, such as Chrome and Firefox, are useful for debugging and profiling. Detecting device performance and optimizing based on specific devices can improve game performance. Apple is making progress with WebGPU implementation. HTML5 games can be shipped to the App Store using Cordova.
Power Fixing React Performance Woes
React Advanced Conference 2023React Advanced Conference 2023
22 min
Power Fixing React Performance Woes
Top Content
Watch video: Power Fixing React Performance Woes
This Talk discusses various strategies to improve React performance, including lazy loading iframes, analyzing and optimizing bundles, fixing barrel exports and tree shaking, removing dead code, and caching expensive computations. The speaker shares their experience in identifying and addressing performance issues in a real-world application. They also highlight the importance of regularly auditing webpack and bundle analyzers, using tools like Knip to find unused code, and contributing improvements to open source libraries.

Workshops on related topic

React Performance Debugging Masterclass
React Summit 2023React Summit 2023
170 min
React Performance Debugging Masterclass
Top Content
Featured WorkshopFree
Ivan Akulov
Ivan Akulov
Ivan’s first attempts at performance debugging were chaotic. He would see a slow interaction, try a random optimization, see that it didn't help, and keep trying other optimizations until he found the right one (or gave up).
Back then, Ivan didn’t know how to use performance devtools well. He would do a recording in Chrome DevTools or React Profiler, poke around it, try clicking random things, and then close it in frustration a few minutes later. Now, Ivan knows exactly where and what to look for. And in this workshop, Ivan will teach you that too.
Here’s how this is going to work. We’ll take a slow app → debug it (using tools like Chrome DevTools, React Profiler, and why-did-you-render) → pinpoint the bottleneck → and then repeat, several times more. We won’t talk about the solutions (in 90% of the cases, it’s just the ol’ regular useMemo() or memo()). But we’ll talk about everything that comes before – and learn how to analyze any React performance problem, step by step.
(Note: This workshop is best suited for engineers who are already familiar with how useMemo() and memo() work – but want to get better at using the performance tools around React. Also, we’ll be covering interaction performance, not load speed, so you won’t hear a word about Lighthouse 🤐)
Building WebApps That Light Up the Internet with QwikCity
JSNation 2023JSNation 2023
170 min
Building WebApps That Light Up the Internet with QwikCity
Featured WorkshopFree
Miško Hevery
Miško Hevery
Building instant-on web applications at scale have been elusive. Real-world sites need tracking, analytics, and complex user interfaces and interactions. We always start with the best intentions but end up with a less-than-ideal site.
QwikCity is a new meta-framework that allows you to build large-scale applications with constant startup-up performance. We will look at how to build a QwikCity application and what makes it unique. The workshop will show you how to set up a QwikCitp project. How routing works with layout. The demo application will fetch data and present it to the user in an editable form. And finally, how one can use authentication. All of the basic parts for any large-scale applications.
Along the way, we will also look at what makes Qwik unique, and how resumability enables constant startup performance no matter the application complexity.
Next.js 13: Data Fetching Strategies
React Day Berlin 2022React Day Berlin 2022
53 min
Next.js 13: Data Fetching Strategies
Top Content
WorkshopFree
Alice De Mauro
Alice De Mauro
- Introduction- Prerequisites for the workshop- Fetching strategies: fundamentals- Fetching strategies – hands-on: fetch API, cache (static VS dynamic), revalidate, suspense (parallel data fetching)- Test your build and serve it on Vercel- Future: Server components VS Client components- Workshop easter egg (unrelated to the topic, calling out accessibility)- Wrapping up
React Performance Debugging
React Advanced Conference 2023React Advanced Conference 2023
148 min
React Performance Debugging
Workshop
Ivan Akulov
Ivan Akulov
Ivan’s first attempts at performance debugging were chaotic. He would see a slow interaction, try a random optimization, see that it didn't help, and keep trying other optimizations until he found the right one (or gave up).
Back then, Ivan didn’t know how to use performance devtools well. He would do a recording in Chrome DevTools or React Profiler, poke around it, try clicking random things, and then close it in frustration a few minutes later. Now, Ivan knows exactly where and what to look for. And in this workshop, Ivan will teach you that too.
Here’s how this is going to work. We’ll take a slow app → debug it (using tools like Chrome DevTools, React Profiler, and why-did-you-render) → pinpoint the bottleneck → and then repeat, several times more. We won’t talk about the solutions (in 90% of the cases, it’s just the ol’ regular useMemo() or memo()). But we’ll talk about everything that comes before – and learn how to analyze any React performance problem, step by step.
(Note: This workshop is best suited for engineers who are already familiar with how useMemo() and memo() work – but want to get better at using the performance tools around React. Also, we’ll be covering interaction performance, not load speed, so you won’t hear a word about Lighthouse 🤐)
High-performance Next.js
React Summit 2022React Summit 2022
50 min
High-performance Next.js
Workshop
Michele Riva
Michele Riva
Next.js is a compelling framework that makes many tasks effortless by providing many out-of-the-box solutions. But as soon as our app needs to scale, it is essential to maintain high performance without compromising maintenance and server costs. In this workshop, we will see how to analyze Next.js performances, resources usage, how to scale it, and how to make the right decisions while writing the application architecture.
Maximize App Performance by Optimizing Web Fonts
Vue.js London 2023Vue.js London 2023
49 min
Maximize App Performance by Optimizing Web Fonts
WorkshopFree
Lazar Nikolov
Lazar Nikolov
You've just landed on a web page and you try to click a certain element, but just before you do, an ad loads on top of it and you end up clicking that thing instead.
That…that’s a layout shift. Everyone, developers and users alike, know that layout shifts are bad. And the later they happen, the more disruptive they are to users. In this workshop we're going to look into how web fonts cause layout shifts and explore a few strategies of loading web fonts without causing big layout shifts.
Table of Contents:What’s CLS and how it’s calculated?How fonts can cause CLS?Font loading strategies for minimizing CLSRecap and conclusion