2021-02-13 07:24:34 +01:00
|
|
|
# Performance and scalability
|
|
|
|
|
|
|
|
This page aims to give some background to help prioritize work on the
|
2021-08-20 21:53:28 +02:00
|
|
|
Zulip's server's performance and scalability. By scalability, we mean
|
2021-02-13 07:24:34 +01:00
|
|
|
the ability of the Zulip server on given hardware to handle a certain
|
|
|
|
workload of usage without performance materially degrading.
|
|
|
|
|
|
|
|
First, a few notes on philosophy.
|
|
|
|
|
2021-08-20 21:45:39 +02:00
|
|
|
- We consider it an important technical goal for Zulip to be fast,
|
2021-02-13 07:24:34 +01:00
|
|
|
because that's an important part of user experience for a real-time
|
2021-08-20 21:53:28 +02:00
|
|
|
collaboration tool like Zulip. Many UI features in the Zulip web app
|
2021-02-13 07:24:34 +01:00
|
|
|
are designed to load instantly, because all the data required for
|
2021-02-17 00:33:07 +01:00
|
|
|
them is present in the initial HTTP response, and both the Zulip
|
2021-05-14 00:16:30 +02:00
|
|
|
API and web app are architected around that strategy.
|
2021-08-20 21:45:39 +02:00
|
|
|
- The Zulip database model and server implementation are carefully
|
2021-02-13 07:24:34 +01:00
|
|
|
designed to ensure that every common operation is efficient, with
|
|
|
|
automated tests designed to prevent the accidental introductions of
|
2021-08-20 21:53:28 +02:00
|
|
|
inefficient or excessive database queries. We much prefer doing
|
2021-02-13 07:24:34 +01:00
|
|
|
design/implementation work to make requests fast over the operational
|
|
|
|
work of running 2-5x as much hardware to handle the same load.
|
|
|
|
|
2022-02-16 01:39:15 +01:00
|
|
|
See also [scalability for production users](../production/requirements.md#scalability).
|
2021-02-13 07:24:34 +01:00
|
|
|
|
|
|
|
## Load profiles
|
|
|
|
|
2021-02-17 00:33:07 +01:00
|
|
|
When thinking about scalability and performance, it's
|
2021-02-13 07:24:34 +01:00
|
|
|
important to understand the load profiles for production uses.
|
|
|
|
|
|
|
|
Zulip servers typically involve a mixture of two very different types
|
|
|
|
of load profiles:
|
2021-08-20 22:54:08 +02:00
|
|
|
|
2021-08-20 21:45:39 +02:00
|
|
|
- Open communities like open source projects, online classes,
|
2021-08-20 21:53:28 +02:00
|
|
|
etc. have large numbers of users, many of whom are idle. (Many of
|
2021-02-13 07:24:34 +01:00
|
|
|
the others likely stopped by to ask a question, got it answered, and
|
2021-08-20 21:53:28 +02:00
|
|
|
then didn't need the community again for the next year). Our own
|
2021-12-09 20:15:18 +01:00
|
|
|
[Zulip development community](https://zulip.com/development-community/) is a good
|
2021-02-13 07:24:34 +01:00
|
|
|
example for this, with more than 15K total user accounts, of which
|
|
|
|
only several hundred have logged in during the last few weeks.
|
|
|
|
Zulip has many important optimizations, including [soft
|
2022-02-16 01:39:15 +01:00
|
|
|
deactivation](sending-messages.md#soft-deactivation)
|
2021-02-13 07:24:34 +01:00
|
|
|
to ensure idle users have minimal impact on both server-side
|
|
|
|
scalability and request latency.
|
2021-08-20 21:45:39 +02:00
|
|
|
- Fulltime teams, like your typical corporate Zulip installation,
|
2021-02-17 00:33:07 +01:00
|
|
|
have users who are mostly active for multiple hours a day and sending a
|
2021-08-20 21:53:28 +02:00
|
|
|
high volume of messages each. This load profile is most important
|
2021-02-13 07:24:34 +01:00
|
|
|
for self-hosted servers, since many of those are used exclusively by
|
|
|
|
the employees of the organization running the server.
|
|
|
|
|
|
|
|
The zulip.com load profile is effectively the sum of thousands of
|
|
|
|
organizations from each of those two load profiles.
|
|
|
|
|
|
|
|
## Major Zulip endpoints
|
|
|
|
|
|
|
|
It's important to understand that Zulip has a handful of endpoints
|
|
|
|
that result in the vast majority of all server load, and essentially
|
2021-08-20 21:53:28 +02:00
|
|
|
every other endpoint is not important for scalability. We still put
|
2021-02-13 07:24:34 +01:00
|
|
|
effort into making sure those other endpoints are fast for latency
|
|
|
|
reasons, but were they to be 10x faster (a huge optimization!), it
|
|
|
|
wouldn't materially improve Zulip's scalability.
|
|
|
|
|
|
|
|
For that reason, we organize this discussion of Zulip's scalability
|
|
|
|
around the several specific endpoints that have a combination of
|
2021-02-17 22:23:43 +01:00
|
|
|
request volume and cost that makes them important.
|
2021-02-13 07:24:34 +01:00
|
|
|
|
|
|
|
That said, it is important to distinguish the load associated with an
|
2021-08-20 21:53:28 +02:00
|
|
|
API endpoint from the load associated with a feature. Almost any
|
2021-02-13 07:24:34 +01:00
|
|
|
significant new feature is likely to result in its data being sent to
|
|
|
|
the client in `page_params` or `GET /messages`, i.e. one of the
|
|
|
|
endpoints important to scalability here. As a result, it is important
|
|
|
|
to thoughtfully implement the data fetch code path for every feature.
|
|
|
|
|
2021-02-17 22:23:43 +01:00
|
|
|
Furthermore, a snappy user interface is one of Zulip's design goals, and
|
2021-02-13 07:24:34 +01:00
|
|
|
so we care about the performance of any user-facing code path, even
|
|
|
|
though many of them are not material to scalability of the server.
|
2021-02-17 22:23:43 +01:00
|
|
|
But only with regard to the requests detailed below, is it worth considering
|
|
|
|
optimizations which save a few milliseconds that would be invisible to the end user,
|
|
|
|
if they carry any cost in code readability.
|
2021-02-13 07:24:34 +01:00
|
|
|
|
|
|
|
In Zulip's documentation, our general rule is to primarily write facts
|
2021-08-20 21:53:28 +02:00
|
|
|
that are likely to remain true for a long time. While the numbers
|
2021-02-16 21:55:21 +01:00
|
|
|
presented here vary with hardware, usage patterns, and time (there's
|
2021-02-16 22:24:52 +01:00
|
|
|
substantial oscillation within a 24 hour period), we expect the rough
|
|
|
|
sense of them (as well as the list of important endpoints) is not
|
|
|
|
likely to vary dramatically over time.
|
2021-02-16 21:55:21 +01:00
|
|
|
|
2021-08-20 22:54:08 +02:00
|
|
|
| Endpoint | Average time | Request volume | Average impact |
|
|
|
|
| ----------------------- | ------------ | -------------- | -------------- |
|
|
|
|
| POST /users/me/presence | 25ms | 36% | 9000 |
|
|
|
|
| GET /messages | 70ms | 3% | 2100 |
|
|
|
|
| GET / | 300ms | 0.3% | 900 |
|
|
|
|
| GET /events | 2ms | 44% | 880 |
|
|
|
|
| GET /user_uploads/\* | 12ms | 5% | 600 |
|
|
|
|
| POST /messages/flags | 25ms | 1.5% | 375 |
|
|
|
|
| POST /messages | 40ms | 0.5% | 200 |
|
|
|
|
| POST /users/me/\* | 50ms | 0.04% | 20 |
|
2021-02-16 21:55:21 +01:00
|
|
|
|
|
|
|
The "Average impact" above is computed by multiplying request volume
|
|
|
|
by average time; this tells you roughly that endpoint's **relative**
|
2021-08-20 21:53:28 +02:00
|
|
|
contribution to the steady-state total CPU load of the system. It's
|
2021-02-16 21:55:21 +01:00
|
|
|
not precise -- waiting for a network request is counted the same as
|
|
|
|
active CPU time, but it's extremely useful for providing intuition for
|
|
|
|
what code paths are most important to optimize, especially since
|
2021-02-16 22:24:52 +01:00
|
|
|
network wait is in practice largely waiting for PostgreSQL or
|
|
|
|
memcached to do work.
|
2021-02-16 21:55:21 +01:00
|
|
|
|
|
|
|
As one can see, there are two categories of endpoints that are
|
|
|
|
important for scalability: those with extremely high request volumes,
|
|
|
|
and those with moderately high request volumes that are also
|
2021-08-20 21:53:28 +02:00
|
|
|
expensive. It doesn't matter how expensive, for example,
|
2021-09-08 00:23:24 +02:00
|
|
|
`POST /users/me/subscriptions` is for scalability, because the volume
|
|
|
|
is negligible.
|
2021-02-13 07:24:34 +01:00
|
|
|
|
|
|
|
### Tornado
|
|
|
|
|
|
|
|
Zulip's Tornado-based [real-time push
|
2022-02-24 00:17:21 +01:00
|
|
|
system](events-system.md), and in particular
|
2021-09-08 00:23:24 +02:00
|
|
|
`GET /events`, accounts for something like 50% of all HTTP requests to
|
2021-08-20 21:53:28 +02:00
|
|
|
a production Zulip server. Despite `GET /events` being extremely
|
2021-02-13 07:24:34 +01:00
|
|
|
high-volume, the typical request takes 1-3ms to process, and doesn't
|
|
|
|
use the database at all (though it will access `memcached` and
|
|
|
|
`redis`), so they aren't a huge contributor to the overall CPU usage
|
2021-02-17 22:23:43 +01:00
|
|
|
of the server.
|
2021-02-13 07:24:34 +01:00
|
|
|
|
|
|
|
Because these requests are so efficient from a total CPU usage
|
|
|
|
perspective, Tornado is significantly less important than other
|
2021-04-13 19:37:52 +02:00
|
|
|
services like Presence and fetching message history for overall CPU
|
|
|
|
usage of a Zulip installation.
|
2021-02-13 07:24:34 +01:00
|
|
|
|
|
|
|
It's worth noting that most (~80%) Tornado requests end the
|
|
|
|
longpolling via a `heartbeat` event, which are issued to idle
|
2021-08-20 21:53:28 +02:00
|
|
|
connections after about a minute. These `heartbeat` events are
|
2021-02-13 07:24:34 +01:00
|
|
|
useless aside from avoiding problems with networks/proxies/NATs that
|
|
|
|
are configured poorly and might kill HTTP connections that have been
|
2021-08-20 21:53:28 +02:00
|
|
|
idle for a minute. It's likely that with some strategy for detecting
|
2021-02-13 07:24:34 +01:00
|
|
|
such situations, we could reduce their volume (and thus overall
|
|
|
|
Tornado load) dramatically.
|
|
|
|
|
|
|
|
Currently, Tornado is sharded by realm, which is sufficient for
|
|
|
|
arbitrary scaling of the number of organizations on a multi-tenant
|
2021-08-20 21:53:28 +02:00
|
|
|
system like zulip.com. With a somewhat straightforward set of work,
|
2021-02-17 22:23:43 +01:00
|
|
|
one could change this to sharding by `user_id` instead, which will
|
2021-02-13 07:24:34 +01:00
|
|
|
eventually be important for individual large organizations with many
|
|
|
|
thousands of concurrent users.
|
|
|
|
|
|
|
|
### Presence
|
|
|
|
|
|
|
|
`POST /users/me/presence` requests, which submit the current user's
|
|
|
|
presence information and return the information for all other active
|
|
|
|
users in the organization, account for about 36% of all HTTP requests
|
2021-08-20 21:53:28 +02:00
|
|
|
on production Zulip servers. See
|
2022-02-24 00:17:21 +01:00
|
|
|
[presence](presence.md) for details on this system and
|
2021-08-20 21:53:28 +02:00
|
|
|
how it's optimized. For this article, it's important to know that
|
2021-02-13 07:24:34 +01:00
|
|
|
presence is one of the most important scalability concerns for any
|
|
|
|
chat system, because it cannot be cached long, and is structurally a
|
|
|
|
quadratic problem.
|
|
|
|
|
|
|
|
Because typical presence requests consume 10-50ms of server-side
|
|
|
|
processing time (to fetch and send back live data on all other active
|
|
|
|
users in the organization), and are such a high volume, presence is
|
|
|
|
the single most important source of steady-state load for a Zulip
|
2021-08-20 21:53:28 +02:00
|
|
|
server. This is true for most other chat server implementations as
|
2021-02-13 07:24:34 +01:00
|
|
|
well.
|
|
|
|
|
|
|
|
There is an ongoing [effort to rewrite the data model for
|
|
|
|
presence](https://github.com/zulip/zulip/pull/16381) that we expect to
|
|
|
|
result in a substantial improvement in the per-request and thus total
|
|
|
|
load resulting from presence requests.
|
|
|
|
|
|
|
|
### Fetching page_params
|
|
|
|
|
|
|
|
The request to generate the `page_params` portion of `GET /`
|
|
|
|
(equivalent to the response from [GET
|
|
|
|
/api/v1/register](https://zulip.com/api/register-queue) used by
|
|
|
|
mobile/terminal apps) is one of Zulip's most complex and expensive.
|
|
|
|
|
2021-05-14 00:16:30 +02:00
|
|
|
Zulip is somewhat unusual among web apps in sending essentially all of the
|
|
|
|
data required for the entire Zulip web app in this single request,
|
|
|
|
which is part of why the Zulip web app loads very quickly -- one only
|
2021-02-17 22:23:43 +01:00
|
|
|
needs a single round trip aside from cacheable assets (avatars, images, JS,
|
2021-08-20 21:53:28 +02:00
|
|
|
CSS). Data on other users in the organization, streams, supported
|
|
|
|
emoji, custom profile fields, etc., is all included. The nice thing
|
2021-02-13 07:24:34 +01:00
|
|
|
about this model is that essentially every UI element in the Zulip
|
|
|
|
client can be rendered immediately without paying latency to the
|
|
|
|
server; this is critical to Zulip feeling performant even for users
|
|
|
|
who have a lot of latency to the server.
|
|
|
|
|
|
|
|
There are only a few exceptions where we fetch data in a separate AJAX
|
|
|
|
request after page load:
|
|
|
|
|
2021-08-20 21:45:39 +02:00
|
|
|
- Message history is managed separately; this is why the Zulip web app will
|
2021-02-13 07:24:34 +01:00
|
|
|
first render the entire site except for the middle panel, and then a
|
|
|
|
moment later render the middle panel (showing the message history).
|
2021-08-20 21:45:39 +02:00
|
|
|
- A few very rarely accessed data sets like [message edit
|
2021-02-13 07:24:34 +01:00
|
|
|
history](https://zulip.com/help/view-a-messages-edit-history) are
|
|
|
|
only fetched on demand.
|
2021-08-20 21:45:39 +02:00
|
|
|
- A few data sets that are only required for administrative settings
|
2021-02-17 22:23:43 +01:00
|
|
|
pages are fetched only when loading those parts of the UI.
|
2021-02-13 07:24:34 +01:00
|
|
|
|
|
|
|
Requests to `GET /` and `/api/v1/register` that fetch `page_params`
|
|
|
|
are pretty rare -- something like 0.3% of total requests, but are
|
2021-02-17 22:23:43 +01:00
|
|
|
important for scalability because (1) they are the most expensive read
|
2021-02-13 07:24:34 +01:00
|
|
|
requests the Zulip API supports and (2) they can come in a thundering
|
|
|
|
herd around server restarts (as discussed in [fetching message
|
|
|
|
history](#fetching-message-history).
|
|
|
|
|
|
|
|
The cost for fetching `page_params` varies dramatically based
|
|
|
|
primarily on the organization's size, varying from 90ms-300ms for a
|
|
|
|
typical organization but potentially multiple seconds for large open
|
2021-08-20 21:53:28 +02:00
|
|
|
organizations with 10,000s of users. There is also smaller
|
2021-02-13 07:24:34 +01:00
|
|
|
variability based on a individual user's personal data state,
|
|
|
|
primarily in that having 10,000s of unread messages results in a
|
|
|
|
somewhat expensive query to find which streams/topics those are in.
|
|
|
|
|
|
|
|
We consider any organization having normal `page_params` fetch times
|
|
|
|
greater than a second to be a bug, and there is ongoing work to fix that.
|
|
|
|
|
|
|
|
It can help when thinking about this to imagine `page_params` as what
|
2021-05-14 00:16:30 +02:00
|
|
|
in another web app would have been 25 or so HTTP GET requests, each
|
2021-02-13 07:24:34 +01:00
|
|
|
fetching data of a given type (users, streams, custom emoji, etc.); in
|
2021-08-20 21:53:28 +02:00
|
|
|
Zulip, we just do all of those in a single API request. In the
|
2021-02-13 07:24:34 +01:00
|
|
|
future, we will likely move to a design that does much of the database
|
|
|
|
fetching work for different features in parallel to improve latency.
|
|
|
|
|
|
|
|
For organizations with 10K+ users and many default streams, the
|
|
|
|
majority of time spent constructing `page_params` is spent marshalling
|
|
|
|
data on which users are subscribed to which streams, which is an area
|
|
|
|
of active optimization work.
|
|
|
|
|
|
|
|
### Fetching message history
|
|
|
|
|
2021-09-08 00:23:24 +02:00
|
|
|
Bulk requests for message content and metadata
|
|
|
|
([`GET /messages`](https://zulip.com/api/get-messages)) account for
|
2021-08-20 21:53:28 +02:00
|
|
|
~3% of total HTTP requests. The zulip web app has a few major reasons
|
2021-09-08 00:23:24 +02:00
|
|
|
it does a large number of these requests:
|
2021-02-13 07:24:34 +01:00
|
|
|
|
2021-08-20 21:45:39 +02:00
|
|
|
- Most of these requests are from users clicking into different views
|
2021-05-14 00:16:30 +02:00
|
|
|
-- to avoid certain subtle bugs, Zulip's web app currently fetches
|
2021-02-13 07:24:34 +01:00
|
|
|
content from the server even when it has the history for the
|
|
|
|
relevant stream/topic cached locally.
|
2021-08-20 21:45:39 +02:00
|
|
|
- When a browser opens the Zulip web app, it will eventually fetch and
|
2021-02-13 07:24:34 +01:00
|
|
|
cache in the browser all messages newer than the oldest unread
|
2021-08-20 21:53:28 +02:00
|
|
|
message in a non-muted context. This can be in total extremely
|
2021-02-13 07:24:34 +01:00
|
|
|
expensive for users with 10,000s of unread messages, resulting in a
|
|
|
|
single browser doing 100 of these requests.
|
2021-08-20 21:45:39 +02:00
|
|
|
- When a new version of the Zulip server is deployed, every browser
|
2021-02-13 07:24:34 +01:00
|
|
|
will reload within 30 minutes to ensure they are running the latest
|
2021-08-20 21:53:28 +02:00
|
|
|
code. For installations that deploy often like chat.zulip.org and
|
2021-02-13 07:24:34 +01:00
|
|
|
zulip.com, this can result in a thundering herd effect for both `/`
|
2021-08-20 21:53:28 +02:00
|
|
|
and `GET /messages`. A great deal of care has been taking in
|
2021-02-13 07:24:34 +01:00
|
|
|
designing this [auto-reload
|
2022-02-16 01:39:15 +01:00
|
|
|
system](hashchange-system.md#server-initiated-reloads)
|
2021-02-13 07:24:34 +01:00
|
|
|
to spread most of that herd over several minutes.
|
|
|
|
|
|
|
|
Typical requests consume 20-100ms to process, much of which is waiting
|
2021-02-17 22:23:43 +01:00
|
|
|
to fetch message IDs from the database and then their content from
|
2021-08-20 21:53:28 +02:00
|
|
|
memcached. While not large in an absolute sense, these requests are
|
2021-02-17 22:23:43 +01:00
|
|
|
expensive relative to most other Zulip endpoints.
|
2021-02-13 07:24:34 +01:00
|
|
|
|
|
|
|
Some requests, like full-text search for commonly used words, can be
|
|
|
|
more expensive, but they are sufficiently rare in an absolute sense so
|
|
|
|
as to be immaterial to the overall scalability of the system.
|
|
|
|
|
|
|
|
This server-side code path is already heavily optimized on a
|
2021-08-20 21:53:28 +02:00
|
|
|
per-request basis. However, we have technical designs for optimizing
|
2021-02-13 07:24:34 +01:00
|
|
|
the overall frequency with which clients need to make these requests
|
|
|
|
in two major ways:
|
|
|
|
|
2021-08-20 21:45:39 +02:00
|
|
|
- Improving [client-side
|
2021-02-13 07:24:34 +01:00
|
|
|
caching](https://github.com/zulip/zulip/issues/15131) to allow
|
|
|
|
caching of narrows that the user has viewed in the current session,
|
|
|
|
avoiding repeat fetches of message content during a given session.
|
2021-08-20 21:45:39 +02:00
|
|
|
- Adjusting the behavior for clients with 10,000s of unread messages
|
2021-08-20 21:53:28 +02:00
|
|
|
to not fetch as much old message history into the cache. See [this
|
2021-02-13 07:24:34 +01:00
|
|
|
issue](https://github.com/zulip/zulip/issues/16697) for relevant
|
|
|
|
design work.
|
|
|
|
|
|
|
|
Together, it is likely that these changes will reduce the total
|
|
|
|
scalability cost of fetching message history dramatically.
|
|
|
|
|
|
|
|
### User uploads
|
|
|
|
|
|
|
|
Requests to fetch uploaded files (including user avatars) account for
|
2021-08-20 21:53:28 +02:00
|
|
|
about 5% of total HTTP requests. Zulip spends consistently ~10-15ms
|
2021-02-13 07:24:34 +01:00
|
|
|
processing one of these requests (mostly authorization logic), before
|
2023-05-01 18:14:03 +02:00
|
|
|
handing off delivery of the file to `nginx` (which may itself fetch
|
|
|
|
from S3, depending on the configured [upload
|
|
|
|
backend](../production/upload-backends.md)).
|
2021-02-13 07:24:34 +01:00
|
|
|
|
|
|
|
### Sending and editing messages
|
|
|
|
|
2022-02-24 00:17:21 +01:00
|
|
|
[Sending new messages](sending-messages.md) (including
|
2021-02-13 07:24:34 +01:00
|
|
|
incoming webhooks) represents less than 0.5% of total request volume.
|
|
|
|
That this number is small should not be surprising even though sending
|
|
|
|
messages is intuitively the main feature of a chat service: a message
|
|
|
|
sent to 50 users triggers ~50 `GET /events` requests.
|
|
|
|
|
|
|
|
A typical message-send request takes 20-70ms, with more expensive
|
2021-04-25 23:11:21 +02:00
|
|
|
requests typically resulting from [Markdown
|
2022-02-24 00:17:21 +01:00
|
|
|
rendering](markdown.md) of more complex syntax. As a
|
2021-02-13 07:24:34 +01:00
|
|
|
result, these requests are not material to Zulip's scalability.
|
|
|
|
Editing messages and adding emoji reactions are very similar to
|
|
|
|
sending them for the purposes of performance and scalability, since
|
2021-02-17 22:23:43 +01:00
|
|
|
the same clients need to be notified, and these requests are lower in volume.
|
2021-02-13 07:24:34 +01:00
|
|
|
|
|
|
|
That said, we consider the performance of these endpoints to be some
|
|
|
|
of the most important for Zulip's user experience, since even with
|
|
|
|
local echo, these are some of the places where any request processing
|
|
|
|
latency is highly user-visible.
|
|
|
|
|
|
|
|
Typing notifications are slightly higher volume than sending messages,
|
|
|
|
but are also extremely cheap (~3ms).
|
|
|
|
|
|
|
|
### Other endpoints
|
|
|
|
|
|
|
|
Other API actions, like subscribing to a stream, editing settings,
|
|
|
|
registering an account, etc., are vanishingly rare compared to the
|
|
|
|
requests detailed above, fundamentally because almost nobody changes
|
|
|
|
these things more than a few dozen times over the lifetime of their
|
|
|
|
account, whereas everything above are things that a given user might
|
|
|
|
do thousands of times.
|
|
|
|
|
|
|
|
As a result, performance work on those requests is generally only
|
|
|
|
important for latency reasons, not for optimizing the overall
|
|
|
|
scalability of a Zulip server.
|
|
|
|
|
|
|
|
## Queue processors and cron jobs
|
|
|
|
|
|
|
|
The above doesn't cover all of the work that a production Zulip server
|
|
|
|
does; various tasks like sending outgoing emails or recording the data
|
|
|
|
that powers [/stats](https://zulip.com/help/analytics) are run by
|
2022-02-24 00:17:21 +01:00
|
|
|
[queue processors](queuing.md) and cron jobs, not in
|
2021-08-20 21:53:28 +02:00
|
|
|
response to incoming HTTP requests. In practice, all of these have
|
2021-02-17 22:23:43 +01:00
|
|
|
been written such that they are immaterial to total load and thus
|
2021-04-25 22:54:23 +02:00
|
|
|
architectural scalability, though we do from time to time need to do
|
2021-02-13 07:24:34 +01:00
|
|
|
operational work to add additional queue processors for particularly
|
2021-08-20 21:53:28 +02:00
|
|
|
high-traffic queues. For all of our queue processors, any
|
2021-02-13 07:24:34 +01:00
|
|
|
serialization requirements are at most per-user, and thus it would be
|
|
|
|
straightforward to shard by `user_id` or `realm_id` if required.
|
|
|
|
|
|
|
|
## Service scalability
|
|
|
|
|
|
|
|
In addition to the above, which just focuses on the total amount of
|
|
|
|
CPU work, it's also relevant to think about load on infrastructure
|
|
|
|
services (memcached, redis, rabbitmq, and most importantly postgres),
|
|
|
|
as well as queue processors (which might get backlogged).
|
|
|
|
|
|
|
|
In practice, efforts to make an individual endpoint faster will very
|
2021-08-20 21:53:28 +02:00
|
|
|
likely reduce the load on these services as well. But it is worth
|
2021-02-13 07:24:34 +01:00
|
|
|
considering that database time is a more precious resource than
|
|
|
|
Python/CPU time (being harder to scale horizontally).
|
|
|
|
|
|
|
|
Most optimizations to make an endpoint cheaper will start with
|
|
|
|
optimizing the database queries and/or employing
|
2022-02-24 00:17:21 +01:00
|
|
|
[caching](caching.md), and then continue as needed with
|
2021-02-13 07:24:34 +01:00
|
|
|
profiling of the Python code and any memcached queries.
|
|
|
|
|
|
|
|
For a handful of the critical code paths listed above, we further
|
|
|
|
optimize by skipping the Django ORM (which has substantial overhead)
|
|
|
|
for narrow sections; typically this is sufficient to result in the
|
|
|
|
database query time dominating that spent by the Python application
|
|
|
|
server process.
|
|
|
|
|
2022-02-24 00:17:21 +01:00
|
|
|
Zulip's [server logs](logging.md) are designed to
|
2021-02-13 07:24:34 +01:00
|
|
|
provide insight when a request consumes significant database or
|
|
|
|
memcached resources, which is useful both in development and in
|
|
|
|
production.
|