Save the Date!!! P99 CONF 2024 is Oct 23-24 | Call for Speakers Now Open

lines masked in circle
purple circle at half opacity

What the Heck is the Edge Anyway?

grid of red dots
white dots in concentric circle

Share This Post

P99 CONF 2023 is now a wrap! You can (re)watch all videos and access the decks now.

ACCESS ALL THE VIDEOS AND DECKS NOW

Editor’s note: We were thrilled to have Glauber Costa, founder and CEO of Turso, presenting “Writing Low Latency Database Applications Even if Your Code Sucks” at P99 CONF 2023  (a free + virtual conference on low latency engineering). If you know Glauber, you know you’re in for a real treat. If you don’t yet know Glauber, you should.  He’s a luminary who has made a long-lasting impact on ScyllaDB’s success,  an avid P99 CONF contributor/supporter from (literally) day 1, and a respected industry pundit. This article was originally published on the Turso blog (which is a gold mine of great engineering insights).

Watch Glauber’s Talk

Let’s face it: our industry has a penchant for buzzwords. As people try to differentiate themselves and establish their own relevance, oftentimes they try to do this by inventing and capturing terms that may or may not mean something.

I am old enough to remember when people tried to push things like grid computing and fog computing. (Note that I am leaving NFT out of this because I have standards and won’t beat a dead horse.).


Ok, I will beat this one dead horse. But they deserve it.

So you would be forgiven for thinking that “The Edge” is just yet another such buzzword. Especially because the term’s confusion is made worse by the fact that:

  • Two different slices of the industry mean two completely different things by edge.
  • Oftentimes people conflate it with serverless (which had its own misconceptions).

In this article, I’ll explain what the edge is, and why you should care.

The Definition of Edge Computing

Wikipedia defines Edge Computing as “a distributed computing paradigm that brings computation and data storage closer to the sources of data. This is expected to improve response times and save bandwidth.

We spot the reason for the first confusion in this very definition: closer to what? If it brings computation and data storage closer to the sources of data, that is a comparison. If I have a database in us-east-1 and replicate it to us-west-1, is that the edge?

The “Far Edge”, or “Offline Edge” (IoT)

When we started talking about a product for the edge, an old colleague of mine immediately sent me a message, questioning that what we were doing was not really the edge. This person has been working with “the edge” for years, and when talking to him, the confusion immediately became clear.

Developers working on IoT, mobile devices, point of sales, telecom, see “the edge” as something as close as possible to the devices themselves, potentially inside the devices. When they talk about “pushing compute to the edge”, they are likely talking about compute that happens inside the device.

One immediate characteristic of those deployments is that internet connectivity is either slow, intermittent, or barely existent (think airplanes, industrial controllers, etc.). Compute and storage resources are not just reduced, in comparison with the cloud, but they are severely reduced.

Because of these characteristics, this can be referred to as the “far edge”. A term I personally prefer is “offline edge”. This is the domain where offline-first solutions shine.

The “Near Edge” or “Online Edge” (Web)

I could never convince my friend that there is “another edge”, and to this day he likely just thinks I have no idea what I am talking about. And in all fairness, as far as I know, the IoT folks got there first. So if they want to claim that theirs is the true edge, there’s very little I can do.

But the reality is that there is a growing and strong segment of the industry that uses the term edge to mean something else entirely. Those are web developers, deploying their applications to platforms like Cloudflare, Vercel or Netlify.

While “the cloud” may offer you a region “in Europe”, the edge will offer you multiple cities spread across Europe. Those edge locations are not as powerful and capable as cloud data centers, but they are still data centers. Technically they could be as powerful as any other cloud datacenter, but this wouldn’t be economical.

The Web edge: lowering response times to applications, but still mostly online

The Missing Piece: The Data Edge

For the IoT edge, each terminal device will bring its own local storage. But for the Web Edge, things are different. Bringing data to the edge presents its own challenges.

Compute and storage are both present in the definition of edge computing, but they are very different in nature. Compute is nimble, and can be easily moved anywhere. Data is heavy, and moving it has a cost. Compute is unencumbered by regulations, and can happen anywhere. Data is protected, and has to be treated differently depending on the jurisdiction.

For this reason, companies targeting the edge have so far focused most of their efforts on compute, like edge functions. But bringing compute to the edge only solves half the problem, especially if you’re making calls to a centralized database somewhere in a far away cluster. You end up with as much, or potentially more, latency than if you had just hosted all your compute in a traditional centralized cloud hosted location.

One way that developers move data to the edge is to cache it on end users’ devices. This works well for offline use, but caching and synchronization are hard things to get right, and it doesn’t solve many cases where fast access is required.

These data edge problems are exactly the ones we aim to address with Turso, an edge-hosted, distributed database based on libSQL, an open-source and open-contribution fork of SQLite.

Is Edge the Same as Serverless?

When companies like Vercel, Netlify and Cloudflare talk about the edge, they usually refer to “edge functions”. This leads developers to conflate “edge” and “serverless” as if they were similar or the same. With serverless, although there are servers somewhere, developers don’t think in terms of servers that need to be configured, scaled up, and scaled down. They think in terms of functions that get executed — they are just deploying code and expecting the cloud provider to handle the rest.

This paradigm goes very well with edge computing: since we are assuming there are fewer resources available, allowing potentially wasteful general purpose compute is less enticing. Constraining what the developers can do (through functions and massive multi-tenancy) allows for better utilization and resource packing.

Another reason is historical: those platforms were initially simple CDNs, handling static assets. Over time, those CDNs started to increase in functionality, and become programmable CDNs.


CDNs are gaining functionality, effectively evolving into the Edge. The data edge is the next frontier

But companies like Fly.io are also edge companies, and they operate on a different model. You can deploy a container abstraction with a long-lived application of your choice, and because they make that application available in many regions, they are also an edge player.

Is the Edge “Just X”?

Every time a new term comes along, people get too far in the weeds about whether something is truly “novel” or not. When the cloud was born, lots of people didn’t see value because it was “just renting servers”. It was not: the ability to rent those servers in seconds instead of weeks and give them back just as easily changed how businesses operated.

I will always remember a coworker of mine that didn’t see any value on Slack because “it was just IRC”, and my favorite to this day is still this timeless Hacker News comment about Dropbox:

I used Dropbox because I stopped reading after “curlftpfs”

So is there something really transformative about the online edge? Yes!

Before the online edge, you could build applications that span multiple locations, the same way you could have built elastic applications before the cloud, by being painfully precise about geographical provisioning, routing, placement and execution.

What the edge allows you to do now is code as if none of that matters, as if the world is one, and set policies about what is allowed to happen where. The edge allows truly global applications to be built transparently, without investing time and money in explicitly setting up and managing a global presence.

The Second Criteria for Relevance

The edge fits the first criteria of whether or not something is “just X” or a new concept that is here to stay: it does transform the way in which developers architect their applications. The second criteria is whether it solves a distinct business problem.

And this is a question for you, reader: do you have a need to build applications that serve multiple locations with low response time? We built Turso on the strong belief that for many of you, the answer is an unequivocal “yes”. If so, we would love to invite you to connect with me (@glauber) and other edge enthusiasts in our Discord community.

Glauber at P99 CONF 23: Writing Low Latency Database Applications Even if Your Code Sucks

To close, here’s a look peek at what Glauber presented at P99 CONF 23:

“All latency lovers are used to the mystical experience of joy coming from aligning data to a cache line size and seeing your latency improve by hundreds of microseconds. But as transcendent as we can become, the laws of physics still apply to us.

That means that there is little we can do when data has to be fetched from across the planet. By putting data close to its users, you can save hundreds of milliseconds and still be faster than the most optimized code, even if your code sucks.

Massive data replication comes with challenges, though: how to keep the costs in check? How to make sure that a semblance of consistency is maintained? What about those pesky regulations that mandate data residency?

In this talk, I will explore the Data Edge: a growing movement of databases that are overcoming those challenges to make your data always available where your users are.”

Watch Glauber’s Talk

About Glauber Costa

Glauber Costa is the founder and CEO of Turso: the SQLite-compatible Edge database that is powered by libSQL.
He is a veteran of high performance and low level systems, with extensive contributions to the Linux Kernel, the KVM Hypervisor, and the ScyllaDB NoSQL database.
Follow him at Twitter: @glcst

More To Explore

Bun, Tokio, Turso Creators on Rust vs Zig

What transpired when Glauber Costa (Turso co-founder), Jarred Sumner (developer of Bun.js and CEO of Oven) and Carl Lerche (developer of Tokio and major Rust

P99 CONF OCT. 18 + 19, 2023

Register for Your Free Ticket