SBN

Serverless Storage at the Edge (EdgeKV Beta)

We are pleased to announce the launch of EdgeKV, our distributed key-value store, into beta! EdgeKV is enabling technology for EdgeWorkers, our serverless computing platform that enables developers to create services using JavaScript and deploy them across our platform. When writing JavaScript, data persistence is often necessary to save data from a user interaction, or to retrieve contextual data to evaluate inside a function. 

Until now, if an EdgeWorker required data, it was stored in the script itself, in a flat file, or retrieved via an expensive round-trip to a cloud or origin data center. Each of these options carries downsides: increased latency, commingling of data and code, and increased maintenance. EdgeKV was purpose-built to solve this problem: ensuring that data lives close to the user that is creating or consuming it.

EdgeKV is a distributed key-value (KV) store designed to store unstructured or semi-structured data. A KV store does not have a schema or other defined relationships between entities. There is no complex query language or ORM. It acts like a dictionary: You look up a word and find its definition. A KV can be as simple as a two-column table where the values are simple strings (see Figure 1), or more complex where multiple layers of data are nested in a value.

noncompromised.jpg Figure 1

As you might imagine, the lightweight nature of a KV store means that performance is a primary feature. KV stores also have great utility, allowing you to store many different data types as values: strings, arrays, sets, lists, nested JSON, or even base64-encoded binaries. This reduces development time and lets you build applications faster. 

Akamai’s KV store is fully distributed, ensuring that the data your EdgeWorker needs is an API call away, melting latency while providing high availability. You can be assured that your data is there.

EdgeKV was built for use cases that need to read data quickly and frequently, but write data infrequently. In distributed database parlance, this means that we use an eventual consistency model for writes and updates. If no new updates are made to a given data item, eventually all accesses to that item will return the last updated value. The last client to write eventually “wins,” and its value becomes globally consistent. 

EdgeKV keeps a local copy of popular data on edge servers that are executing EdgeWorker code requesting that data. We leverage the Akamai delivery network to optimize the transfer of data between the persistent storage back end and the edge servers. When data is written or deleted, it is automatically invalidated on all edge servers that have a local copy. We use a publisher/subscriber-like approach to do the invalidation globally on all servers that have a local copy, while also maintaining an eventual consistency latency of 10 seconds or less for at least 80% of operations.

EdgeKV’s data model is depicted in Figure 2. The lowest level of the model is a key-value pair, which is called an “item.” Item keys are alphanumeric, while values are discretionary JSON or string textual data. Items then roll up into groups, which are unlimited, developer-defined sets of related items. Groups are created “on the fly” as you create objects to populate them. For example, a group might be “the KV database for microservice XYZ” or “the KV database for website function ABC.” The choice is yours.

These groups, in turn, roll up to namespaces, which are scarce resources in EdgeKV. Namespaces, while also logical containers of data, are meant to be more durable over time, changing infrequently. A namespace might be “the KV databases for the Asia-Pacific region” or “the KV databases for the widgets business unit.” Namespaces also have a retention policy that may be set for automatic deletion of content.

The creation of namespaces is under the control of an EdgeKV Administrator, with privileges derived from your existing Akamai role-based access control.

noncompromised.jpg Figure 2

Coding for EdgeKV could not be simpler. We have created an EdgeKV helper library that you can grab out of our GitHub repository. Once you write your EdgeWorker code, include the helper library and an EdgeKV Access Token (to authorize/control access to the EdgeKV data) in your tarball, and upload it to Akamai. Let’s review a simple example: 

This is a snippet of code that would be placed inside your EdgeWorker main.js file. Here we instantiate a new EdgeKV object, setting the attributes of the namespace and group that hold the data we want. Once we have the object, an asynchronous request is sent to the database to retrieve the item with the name “key1” from the database in text form. Note that you could also have returned the data in JSON format with the method getJSON if the stored data was JSON.

Screen Shot 2021-03-02 at 12.20.22 PM.png

Now that the EdgeWorker has the data from EdgeKV, it can use it to compare the value of key1 inside a function. The EdgeWorker could just as easily have been coded in the other direction, writing a value into the EdgeKV store. It’s that easy! 

You may also control the database outside of EdgeWorker code via a rich set of administrative APIs. The APIs let you control all levels of the data model: list namespaces, add or delete data, and retrieve access tokens. And with our native EdgeGrid integration with Postman, it’s easy to get started. In Figure 3, we retrieve the same key1 from group 1 via API call:

noncompromised.jpg Figure 3

If you don’t want to write code against our APIs, we have also created a CLI to make day-to-day administration of EdgeKV easy. The CLI is tightly integrated with our existing EdgeWorkers CLI, giving you a single utility to control the operation of both products. The CLI is also scriptable, ensuring that automation mechanisms can make use of it. A sample of the CLI listing items from the same group1 is shown in Figure 4. 

noncompromised.jpg Figure 4

Responsive Applications

EdgeWorker applications get low latency access to a distributed key-value store with EdgeKV. All database provisioning, maintenance, scaling, and data replication is handled by Akamai. You don’t have to spend time operating a database — spend time building your idea!

Key Features of EdgeKV 

  • High availability and low latency
  • Read at cache speeds using Akamai’s unmatched caching infrastructure
  • Read and write data from EdgeWorker code
  • Available globally on all Akamai edge servers
  • Administrative APIs for CRUD operations against KV databases
  • Bring data close to your business logic

Existing EdgeKV Tech Preview users will see relaxation of imposed limits. For example, the maximum value size jumps from 100KB to 250KB, while the number of keys allowed jumps from 200K to 2M. These limit changes (and many more) are documented in the User Guide linked below.

If you are an existing Akamai customer, log into Akamai Control Center and select EdgeKV from the Marketplace app store under the Beta Products section. It will be provisioned on contract in minutes. If you are not a current customer, use this signup form to request access:. In the meantime, get started by reading our documentation, reviewing code samples, and installing the CLI.

EdgeKV User Guide

EdgeKV GitHub repository

EdgeKV API Documentation

EdgeKV CLI

*** This is a Security Bloggers Network syndicated blog from The Akamai Blog authored by Jeffrey Costa. Read the original post at: http://feedproxy.google.com/~r/TheAkamaiBlog/~3/O3dKxqXswRY/serverless-storage-at-the-edge-edgekv-beta.html