Tripling streaming pipeline throughput by monitoring and debugging MySQL inefficiencies

Varshaa Naganathan

Engineering

At Glean, we process on the order of hundreds of millions of documents on a daily basis. In a previous blog post, we described how we use Apache Beam Streaming to read such a large corpus efficiently from MySQL. While we focused on the details of the streaming pipeline there, this blog will go into details of our MySQL queries and the monitoring in place that identifies, debugs and addresses inefficiencies in the system. We’ll also walk through an example of how we debugged a pipeline that had low throughput because of slow reads from MySQL.

Room for improvement

On one of our larger deployments, we found that we were taking around 3 days to process the full corpus. While the streaming setup described earlier provides massive horizontal scalability, we noticed that CPU usage was not near 100% on this deployment. This was the first clue that there was some inefficiency in the system that could be optimized without scaling compute resources.

On multi-core deployments like this one, we issue several parallel MySQL read queries, each fetching a batch of k documents in an attempt to increase throughput. All these documents are held in an in-memory buffer from which they are fetched for processing. When the number of documents in this in-memory buffer is low, a new set of parallel MySQL queries is made to fetch more documents. 

On this particular deployment, the in-memory buffer was being reported as empty fairly often. This meant that our pipeline was processing documents faster than they were being fetched. This was the second clue and allowed us to narrow down the inefficiency to the time taken by the MySQL reads.

Say we have n cores in a deployment, the MySQL query to fetch a batch of k documents looked something like this:


We started monitoring the read latencies for this query and noticed that the larger the offset (n*k), the slower the query. This was the third and final clue. While the same MySQL query pattern was being used on all our deployments, what was unique to this deployment was the much higher value of n. On digging into MySQL’s handling of this query, we realized that with larger offsets, it was fetching a total of (n+1)*k documents before discarding the first n*k ones, hence contributing to the larger query times. To force MySQL to perform late row lookups and thus retrieve only the required k documents, the MySQL query was changed to the following:

Bug squashed, throughput tripled

This reduced MySQL latencies on a test query with k = 1, n*k = 1150 from ~4 seconds to ~0.1 seconds, and resulted in the pipeline’s throughput tripling (See Figure 1). This increased throughput translates to reduced staleness in content, permissions, and statistics thus improving our ranking to deliver a better search experience.

Figure 1: Increase in document processing rate after optimizing the SQL query


We hope this blog post gives an idea of not just the kind of technical challenges we encounter, but also the monitoring in place to detect them and the process followed to debug them. If you are interested in working on similar problems, check out our careers page!

Related articles

No items found.
The AI-powered work assistant. Across all your company's data.
Get a Demo
CTA Section Background Shape