- Overview
- Technical Setup Requirements
- Install or Update the EdgeWorkers and EdgeKV CLI
- Overview Of Commands
- Resources
- Reporting Issues
The command-line interface (CLI) is a downloadable utility you can use to control EdgeKV functionality. It lets you administer EdgeKV without writing code against Akamai’s administrative APIs or using the Akamai Control Center UI. The CLI also enables you to script EdgeKV behaviors. This CLI is fully integrated with the EdgeWorkers CLI, enabling both products to be administered from a single interface.
You can issue commands to trigger activities including database initialization, namespace management, token creation, and CRUD operations.
To use this tool you need:
- Akamai CLI installed.
- Valid EdgeGrid credentials configured via Akamai Control Center (see Get Started with APIs)
- Node version 7 or higher
- If you do not have the EdgeWorkers CLI package installed, use the following Akamai CLI command to install the latest EdgeWorkers CLI package:
Usage:
akamai install edgeworkers
- If you already have the CLI installed, use the following Akamai CLI command to install the latest EdgeWorkers CLI package that includes EdgeKV functionality:
Usage:
akamai update edgeworkers
- When installing the Akamai CLI using the "akamai install edgeworkers" command you may run into a "Package directory already exists" error. This is likely because you already have the EdgeWorkers CLI package installed. In this case, please try updating the EdgeWorkers CLI package using “akamai update edgeworkers”.
If you continue to encounter this error when trying to update the Akamai CLI using the “akamai update edgeworkers” command, uninstall the Akamai CLI using the “akamai uninstall edgeworkers” command. This will remove the existing installation, allowing you to reinstall using the “akamai install edgeworkers” command.
- Docker installation error
When installing Akamai CLI using docker, you may run into "Error: Cannot find module. '.bin/src/edgekv/ekv-cli-main.js".
Build-time workaround - use this when building the Docker image
RUN akamai install edgeworkers && cd $AKAMAI_CLI_HOME/.akamai-cli/src/cli-edgeworkers/ && npm run build
Runtime workaround - use this if Docker is already running
cd ~/.akamai-cli/src/cli-edgeworkers/ && npm install --unsafe-perm
EdgeKV CLI enables you to manage the EdgeKV database by calling the EdgeKV API from within the utility.
Conventions:
- optional arguments are denoted by []
- required arguments are denoted by <>
Usage:
akamai edgekv [options] [command]
Options:
Syntax | Description |
---|---|
-V, --version | Display the version number for the EdgeKV CLI program |
--debug | Show debug information. |
--edgerc <path> |
Use credentials in edgerc file for command. (Default file location is ~/.edgerc). Refer to Get Started with APIs for more information. |
--section <name> |
Use this section in edgerc file. (Default section is [default]) |
--timeout <timeout> |
You can specify a timeout value for a command in seconds to override the 1 minute default. For example, if you add "--timeout 10" to a command, it will timeout if the server takes more than 10 second to respond. |
-h, --help | Display information on how to use this EdgeKV command. |
Commands:
Command | Alias | Description |
---|---|
help [command] |
Display information on how to use the given command. |
initialize | init | Initialize an EdgeKV database. |
show status | Show the status of an EdgeKV database. |
create ns <environment> <namespace> --retention <retention> |
Create an EdgeKV namespace in an Akamai environment. Specify the retention period of the namespace in days. |
show ns <environment> <namespace> |
Retrieve an EdgeKV namespace in an Akamai environment. |
list ns <environment> |
List the namespaces provisioned in an Akamai environment. |
modify ns <environment> <nameSpace> |
Modify an EdgeKV namespace in an Akamai environment. |
write <itemType> <environment> <namespace> <groupId> <itemId> <items> |
Write the text item or JSON item supplied in a file for the given namespace, group id, and item id in an Akamai environment. |
read item <environment> <namespace> <groupId> <itemId> |
Read an item for the given namespace, group id, and item id in an Akamai environment. |
delete item | del item <environment> <namespace> <groupId> <itemId> |
Delete an item for the given namespace, group id, and item id in an Akamai environment. |
list items <environment> <namespace> <groupId> |
List the items for the given namespace and group id in an Akamai environment. |
create token | create tkn <tokenName> [options] |
Create an EdgeKV access token. |
list tokens [options] |
List of all tokens the user has permission to download. |
download token <tokenName> [options] |
Download an edgekv token. |
revoke token <tokenName> |
Revoke an EdgKV access token. |
Return Codes:
Return Code | Description |
---|---|
0 | Command executed successfully. |
1 | Command failed. |
Initialize the EdgeKV database. This action is only required once to initialize your EdgeKV database and provision the default EdgeKV namespace on Akamai's staging and production environments. It also creates a new, dedicated CP code used to track your EdgeKV usage. Before you can perform any other EdgeKV operations you must successfully complete this step.
Usage: akamai edgekv initialize
Option | Description |
---|---|
-h, --help | Display information on how to use this EdgeKV command |
Check the initialization status of the EdgeKV database
Usage: akamai edgekv show status
Option | Description |
---|---|
-h, --help | Display information on how to use this EdgeKV command |
Create a namespace
Usage: akamai edgekv create ns <environment> <nameSpace>
Option | Existence | Description |
---|---|---|
-h, --help | optional | Display information on how to use this EdgeKV command. |
--retention | Required | Retention period of the namespace in days. |
--groupId | Required | Group identifier. Set it to 0 to allow all groups in your account to access the namespace. If you want to restrict the namespace to a specific group, enter the group id. This value MUST be the same for both the staging and production instances of a namespace. |
Argument | Existence | Description |
---|---|---|
environment | required | The Akamai environment on which to create this namespace, either “staging” or “production” |
namespace | required | Namespace identifier. |
- The namespace identifier can only include alphanumeric (0-9, a-z, A-Z), underscore (_), and (-) dash characters.
- The namespace identifier can be between 1 and 32 characters in length.
- You cannot use the word "default" as the namespace identifier. The “default” namespace is already created during initialization.
- Specifying "0" retention means indefinite retention.
Retrieve a list of all namespaces
Usage: akamai edgekv list ns <environment>
Option | Description |
---|---|
-h, --help | Display information on how to use this EdgeKV command. |
-d, --details | Displays details of the namespace. |
Argument | Existence | Description |
---|---|---|
environment | required | The Akamai environment from which to retrieve a list of namespaces, either “staging” or “production”. |
Retrieve the details for a single namespace
Usage: akamai edgekv show ns <environment> <nameSpace>
Option | Description |
---|---|
-h, --help | Display information on how to use this EdgeKV command. |
Argument | Existence | Description |
---|---|---|
environment | required | The Akamai environment from which to retrieve namespace details, either “staging” or “production”. |
namespace | required | Namespace identifier. |
Modify the namespace
Usage: akamai edgekv modify ns <environment> <nameSpace>
Option | Existence | Description |
---|---|---|
-h, --help | optional | Display information on how to use this EdgeKV command. |
--retention | Required | Retention period of the namespace in days. |
- The namespace identifier can only include alphanumeric (0-9, a-z, A-Z), underscore (_), and (-) dash characters.
- The namespace identifier can be between 1 and 32 characters in length.
- You cannot modify the retention period for the "default" namespace.
Create or update (upsert) a single item into a namespace and group.
Usage: akamai edgekv write <itemType> <environment> <namespace> <groupId> <itemId> <value>
Option | Description |
---|---|
-h, --help | Display information on how to use this EdgeKV command |
Argument | Existence | Description |
---|---|---|
itemType | required | Item type can be 'text' or 'jsonfile' |
environment | required | The Akamai environment on which to create or update this item, either “staging” or “production” |
namespace | required | Namespace identifier |
groupid | required | Group identifier |
itemid | required | Item identifier |
value | required | If the itemType is 'text' the value can be a text string. If the itemType is 'jsonfile' the value can be the path/name of a file containing the item value in valid JSON format. |
- The namespace must have been already created, while the group will be automatically created for you if it does not exist.
- The namespace, group, and item identifiers can only include alphanumeric (0-9, a-z, A-Z), underscore (_), and (-) dash characters.
- The namespace identifier can be between 1 and 32 characters in length.
- The group identifier can be between 1 and 128 characters in length.
- The item identifier can be between1 and 512 characters in length.
Retrieve an item from a namespace and group
Usage: akamai edgekv read item <environment> <nameSpace> <groupId> <itemId>
Option | Description |
---|---|
-h, --help | Display information on how to use this EdgeKV command. |
Argument | Existence | Description |
---|---|---|
environment | required | The Akamai environment on which to read this item, either “staging” or “production”. |
namespace | required | Namespace identifier |
groupid | required | Group identifier |
itemid | required | Item identifier |
- The namespace, group, and item identifiers can only include alphanumeric (0-9, a-z, A-Z), underscore (_), and (-) dash characters.
- The namespace identifier can be between 1 and 32 characters in length.
- The group identifier can be between 1 and 128 characters in length.
- The item identifier can be between1 and 512 characters in length.
- Items written to EdgeKV are usually read within 10 seconds or less. When writing a new item, a "404 Not Found" response status code may occur during the inconsistency window. This is normal behavior for EdgeKV, an eventually consistent database.
- The returned value is always displayed as text.
Delete an item in a namespace and group
Usage: akamai edgekv delete item <environment> <nameSpace> <groupId> <itemId>
Option | Description |
---|---|
-h, --help | Display information on how to use this EdgeKV command. |
Argument | Existence | Description |
---|---|---|
environment | required | The Akamai environment on which to delete this item, either “staging” or “production”. |
namespace | required | Namespace identifier |
groupid | required | Group identifier |
itemid | required | Item identifier |
- The namespace, group, and item identifiers can only include alphanumeric (0-9, a-z, A-Z), underscore (_), and (-) dash characters.
- The namespace identifier can be between 1 and 32 characters in length.
- The group identifier can be between 1 and 128 characters in length.
- The item identifier can be between1 and 512 characters in length.
- It usually takes 10 seconds or less before a deleted item is no longer readable. This is normal behavior for EdgeKV, an eventually consistent database.
List items within a namespace and group
Usage: akamai edgekv list items <environment> <nameSpace> <groupId>
Option | Description |
---|---|
-h, --help | Display information on how to use this EdgeKV command |
Argument | Existence | Description |
---|---|---|
environment | required | The Akamai environment on which to list the items, either “staging” or “production” |
namespace | required | Namespace identifier |
groupid | required | Group identifier |
- The namespace and group identifiers can only include alphanumeric (0-9, a-z, A-Z), underscore (_), and (-) dash characters.
- The namespace identifier can be between 1 and 32 characters in length.
- The group identifier can be between 1 and 128 characters in length.
- If there are more than 100 items in the namespace/group, a random set of 100 items in that namespace/group will be returned since EdgeKV is a NoSQL-style database.
Create an access token to use within the EdgeWorkers code bundle to authorize access to the EdgeKV database.
Usage:
akamai edgekv create token <tokenName> --save_path=<path> --overwrite --staging={allow|deny} --production={allow|deny} --expiry=<date> --ewids={all|<comma_separated_list_of_ewids> --namespace=<namespace_id>+permissions,<namespace_id>+permissions
Example:
edgekv create token token1 --save_path=/Documents/hellomgmt.tgz --overwrite --staging=allow --production=deny --ewids=all --namespace=default+rwd,marketing+r --expiry=2020-12-30
Option | Existence | Description |
---|---|---|
--save_path | Optional | Path specifying where to save the edgekv_tokens.js token file. We recommend that you save the token file in the same location as the EdgeWorkers code bundle file (.tgz). The EdgeWorkers code bundle is then automatically updated every time this command updates the edgekv_tokens.js token file. If a path is not provided the token value is displayed. This token must be securely stored and manually added to the edgekv_tokens.js token file and EdgeWorkers code bundle. |
-o, --overwrite | Optional | This option is used in conjunction with the --save_path option to overwrite the value of an existing token with the same name in the edgekv_tokens.js file. |
--staging | Required | Acceptable value: 'allow', 'deny'. Specifies whether the token will be allowed or denied in the staging environment. |
-- production | Required | Acceptable value: 'allow', 'deny'. Specifies whether the token will be allowed or denied in the production environment. |
-- ewids | Required | Acceptable value: - 'all', - A comma separated list of up to a maximum of 8 EdgeWorker IDs. This restricts token usage to the specified EdgeWorker IDs. |
--namespace | Required | Value: A comma separated list of up to a maximum of 20 namespace identifier and permission combinations. This list specifies where the token can be used. The permissions format is any combination of the following letters: - 'r' to authorize the token for read operations - 'w' to authorize the token for write operations - 'd' to authorize the token for delete operations. |
--expiry | Required | Expiration date of the token. Format of the expiry date is ISO 8601 format: yyyy-mm-dd. |
-h, --help | Optional | Display information on how to use this EdgeKV command. |
Argument | Existence | Description |
---|---|---|
tokenName | required | token name |
- The token name can only include alphanumeric (0-9, a-z, A-Z), underscore (_), and (-) dash characters.
- The token name can be between 1 and 32 characters in length.
- The expiry date must be at least 1 day in the future and no more than 6 months from the current date.
List of all tokens the user has permission to download.
Usage: akamai edgekv list tokens
Option | Description |
---|---|
-h, --help | Display information on how to use this EdgeKV command. |
--include-expired | Retrieves both expired and valid tokens. |
- Note that --include-expired returns all the tokens that count towards your account's token limit. For more details, See Akamai EdgeKV getting started guide
Retrieve an EdgeKV access token.
Usage:
akamai edgekv download token <tokenName> --save_path=<path> --overwrite
Option | Existence | Description |
---|---|---|
--save_path | Optional | Path specifying where to save the edgekv_tokens.js token file. We recommend that you save the token file in the same location as the EdgeWorkers code bundle file (.tgz). The EdgeWorkers code bundle is then automatically updated every time this command updates the edgekv_tokens.js token file. If a path is not provided the token value is displayed. This token must be securely stored and manually added to the edgekv_tokens.js token file and EdgeWorkers code bundle. |
-o, --overwrite | Optional | This option is used in conjunction with the --save_path option to overwrite the value of an existing token with the same name in the edgekv_tokens.js file. |
-h, --help | Display information on how to use this EdgeKV command. |
Argument | Existence | Description |
---|---|---|
tokenName | required | token name |
Revoke an EdgKV access token.
Usage:
akamai edgekv revoke token <tokenName>
Argument | Existence | Description |
---|---|---|
tokenName | required | token name |
For more information on EdgeKV, refer to the following resources:
If you experience any issues with the CLI or feel like there's anything missing, let us know or simply create an issue or a PR on the repo.