Search Speed: Making Expedia Flights Faster

Rate this content
Bookmark

Performance plays a crucial role in ensuring the responsiveness and functionalities of an application. A deeper knowledge on prefetching, preemptive search, faster caching and frontend optimisations and many other performance initiatives will be learnt. 

Heena Gupta
Heena Gupta
10 min
17 Jun, 2024

Comments

Sign in or register to post your comment.

Video Summary and Transcription

The Talk discusses how the engineering team at Expedia improved the performance of customer flight search by using various metrics and techniques. These include prefetching resources during browser idle time, preemptive search to predict responses, and optimizing performance through micro queries and a micro front-end architecture. The team also focused on improving build and package size limits for better code analysis. Performance monitoring and automation were implemented for ongoing performance improvements.

1. Improving Flight Search Performance

Short description:

Hi everyone. Ina from the engineering team at Expedia will discuss how we improved the performance of customer flight search. The motivation behind this improvement is the impact of latency on user experience and attention. We use lighthouse metrics such as FCP, first input delay, cumulative layout shift, and time to interactive. Page usable time and non-supply overhead are two derived perf metrics we monitor. Prefetching resources during browser idle time allows faster retrieval, especially for new users. The next experiment is preemptive search.

Hi everyone. So myself, Ina, I am from engineering team at Expedia. So this talk is around the search speed, how we made the flight search faster, how we dramatically improved the performance of customer flight search on Expedia.

So before going deeper into the topic, let me first share the motivation, what brings us to improve the performance on the flight search page. So first of all, on the flight search page, the search topic is at peak. And if the page is not performance efficient, then it leads to an increase in latency and hence the user experience gets impacted and thereby the user attention is also impacted.

Also, before beginning over the perf experiment, let me first bring you to the performance metrics topic. So for measurement, there are some common set of lighthouse metrics that can be monitored. A few important ones for the pages are first contentful paint that is commonly known as FCP. Then there is first input delay. There is cumulative layout shift and time to interactive. Other than that, we can also make use of some derived perf metrics. Two of those for Expedia that helped us to monitor the perf metric for the users is page usable time. And then there is non-supply overhead. Page usable time is the metric that is marked when the main component of flight search page gets mounted. And non-supply overhead is the overall page usable time on the flight search page minus the supply overhead. That means that the total amount of time taken by Expedia to reach to the flight search component without depending on the supply. Other than that, there is a size limit also that we have put on the flight search page to make sure that the bundle size as well as the package that we have within the flight search are not exceeding the threshold.

Now let's first come to the first perf experiment that is prefetching. So prefetching means that we are fetching the resources beforehand during the browser ideal time. And when we land on the current page, we are not fetching the resources from the CDN path but from the prefetch cache. This helps us to retrieve the resources faster. And before coming to prefetching, it's important to prepare what all resources you want to prefetch. That is, it's not important that all the resources need to be prefetched right on the previous page but the important resources, ideally the ones that are commonly used across multiple pages can be prefetched so that the retrieval is faster. Also prefetching is impactful for the new users. The users who are not fetching, who are not making use of the resources from the browser cache. For the existing users, the resources already come from the browser cache and hence prefetching might not be impactful there. Or if you are opening from the incognito, then also it's not impactful. But if you are the new user, then it's going to impact a lot. Then the next experiment that we have is preemptive search.

2. Optimizing Performance and Architecture

Short description:

Preemptive search predicts the response before the user lands on the flight search page, improving performance by 50% on web and native. Micro queries fetch responses in chunks, improving page performance by 20%. Async queries and improved waterfall diagram result in an 8% performance improvement. Micro front-end architecture breaks down page-level components into shareable packages, optimizing performance and ensuring maintainability.

So by preemptive search, we mean that we are preemptively calling the search response. That is, the response is getting predicted even before the user lands on the flight search page. So, that is done by knowing what all search inputs we have on the previous page, that is, the home page for flight search. And as soon as the user triggers the search button, we know that this is the search response that the user is going to ask for. So we cache the response beforehand and when the user lands on the flight search page, the cached response is received by the user. This was a very important experiment in terms of perf measurement and it helps us to improve the performance by nearly 50% on both web and native.

The next perf experiment that we have is the micro queries. So what we were doing initially on the flight search page was there was a main page level query that was giving us all the responses at once. So once that main bulky page query was broken down into micro queries, we were able to fetch the responses in chunks rather than loading all the responses at once. So this helps us to make sure that the user is able to see important page level information beforehand and then the information that was not needed during the page load time were fetched. So, by that, we were able to improve the page performance by nearly 20%. And we were also separate out some of the information like the fair detail information that is not needed immediately by the user.

Another important thing when it comes to performance is making sure that the queries are happening on async manner. So for that, the first step for any of the pages that we analyze the waterfall diagram for the page to make sure that the network calls are happening as expected. So it's important that the calls are not waiting for each other unless they are dependent on each other. So in our case, the loading and loaded queries are actually independent of each other. So it was made sure that these calls are getting triggered at the same time and are not waiting for each other. We did observe nearly 8% of the experiment by improving how the queries are getting executed and improving the waterfall diagram for the page.

The next thing here is ensuring a micro front-end architecture is getting followed on the page. It also depends on the page as well as like it depends on the requirements as well. For us, micro front-end architecture is useful so far. What it meant is that we broke down the page-level components into shareable packages by making those page-level components such as offer details, fair details, etc. We were able to make those shareable package flexible. The packages were also reusable across pages. So for example, Flight Search and Flight Information page are correlated to each other. So we were able to reuse those shareable packages. We can also optimize at package-level efficiently than at the page-level itself. Another thing to note here is that the packages are maintainable. We were able to define who is going to maintain which package. So there was a sense of ownership when it comes to package very efficiently.

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
React is a library for "rendering" UI from components, but many users find themselves confused about how React rendering actually works. What do terms like "rendering", "reconciliation", "Fibers", and "committing" actually mean? When do renders happen? How does Context affect rendering, and how do libraries like Redux cause updates? In this talk, we'll clear up the confusion and provide a solid foundation for understanding when, why, and how React renders. We'll look at: - What "rendering" actually is - How React queues renders and the standard rendering behavior - How keys and component types are used in rendering - Techniques for optimizing render performance - How context usage affects rendering behavior| - How external libraries tie into 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
Too much JavaScript is getting you down? New frameworks promising no JavaScript look interesting, but you have an existing React application to maintain. What if Qwik React is your answer for faster applications startup and better user experience? Qwik React allows you to easily turn your React application into a collection of islands, which can be SSRed and delayed hydrated, and in some instances, hydration skipped altogether. And all of this in an incremental way without a rewrite.
React Concurrency, Explained
React Summit 2023React Summit 2023
23 min
React Concurrency, Explained
Top Content
React 18! Concurrent features! You might’ve already tried the new APIs like useTransition, or you might’ve just heard of them. But do you know how React 18 achieves the performance wins it brings with itself? In this talk, let’s peek under the hood of React 18’s performance features: - How React 18 lowers the time your page stays frozen (aka TBT) - What exactly happens in the main thread when you run useTransition() - What’s the catch with the improvements (there’s no free cake!), and why Vue.js and Preact straight refused to ship anything similar
The Future of Performance Tooling
JSNation 2022JSNation 2022
21 min
The Future of Performance Tooling
Top Content
Our understanding of performance & user-experience has heavily evolved over the years. Web Developer Tooling needs to similarly evolve to make sure it is user-centric, actionable and contextual where modern experiences are concerned. In this talk, Addy will walk you through Chrome and others have been thinking about this problem and what updates they've been making to performance tools to lower the friction for building great experiences on the web.
A Framework for Managing Technical Debt
TechLead Conference 2023TechLead Conference 2023
35 min
A Framework for Managing Technical Debt
Top Content
Let’s face it: technical debt is inevitable and rewriting your code every 6 months is not an option. Refactoring is a complex topic that doesn't have a one-size-fits-all solution. Frontend applications are particularly sensitive because of frequent requirements and user flows changes. New abstractions, updated patterns and cleaning up those old functions - it all sounds great on paper, but it often fails in practice: todos accumulate, tickets end up rotting in the backlog and legacy code crops up in every corner of your codebase. So a process of continuous refactoring is the only weapon you have against tech debt.In the past three years, I’ve been exploring different strategies and processes for refactoring code. In this talk I will describe the key components of a framework for tackling refactoring and I will share some of the learnings accumulated along the way. Hopefully, this will help you in your quest of improving the code quality of your codebases.

Debugging JS
React Summit 2023React Summit 2023
24 min
Debugging JS
Top Content
As developers, we spend much of our time debugging apps - often code we didn't even write. Sadly, few developers have ever been taught how to approach debugging - it's something most of us learn through painful experience.  The good news is you _can_ learn how to debug effectively, and there's several key techniques and tools you can use for debugging JS and React apps.

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
Building a Shopify App with React & Node
React Summit Remote Edition 2021React Summit Remote Edition 2021
87 min
Building a Shopify App with React & Node
Top Content
WorkshopFree
Jennifer Gray
Hanna Chen
2 authors
Shopify merchants have a diverse set of needs, and developers have a unique opportunity to meet those needs building apps. Building an app can be tough work but Shopify has created a set of tools and resources to help you build out a seamless app experience as quickly as possible. Get hands on experience building an embedded Shopify app using the Shopify App CLI, Polaris and Shopify App Bridge.We’ll show you how to create an app that accesses information from a development store and can run in your local environment.
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 🤐)
Master JavaScript Patterns
JSNation 2024JSNation 2024
145 min
Master JavaScript Patterns
Workshop
Adrian Hajdin
Adrian Hajdin
During this workshop, participants will review the essential JavaScript patterns that every developer should know. Through hands-on exercises, real-world examples, and interactive discussions, attendees will deepen their understanding of best practices for organizing code, solving common challenges, and designing scalable architectures. By the end of the workshop, participants will gain newfound confidence in their ability to write high-quality JavaScript code that stands the test of time.
Points Covered:
1. Introduction to JavaScript Patterns2. Foundational Patterns3. Object Creation Patterns4. Behavioral Patterns5. Architectural Patterns6. Hands-On Exercises and Case Studies
How It Will Help Developers:
- Gain a deep understanding of JavaScript patterns and their applications in real-world scenarios- Learn best practices for organizing code, solving common challenges, and designing scalable architectures- Enhance problem-solving skills and code readability- Improve collaboration and communication within development teams- Accelerate career growth and opportunities for advancement in the software industry