References

API Reference

Take control of Dotmesh

Overview

The dotmesh API is the fundamental way of interacting with dotmesh, the service.

Before attempting to use the API, we recommend understanding the dotmesh architecture.

Any time you interact with any part of dotmesh you are using the API. The dm command-line interface, any interaction between a local deployment and another cluster, all use the same, publicly-exposed dotmesh API.

This document describes the API in its entirety. With this API, you not only can understand how to interact with dotmesh, but you can write your own clients and connect your own services. In fact, we encourage you to do so and would be happy to publish it, if you want.

Local

As described in the architecture documentation, dotmesh is installed as software running on one or many server nodes. For example, in kubernetes, it will be deployed using the dotmesh Kubernetes operator.

Local

Every node in a Dotmesh cluster exposes the Dotmesh API on the host at port 32607 and the path /rpc. For example, if you have dotmesh running on host myhost.example.com, then the endpoint for services will be http://myhost.example.com:32607/rpc

If you are accessing dotmesh from a Pod in a Kubernetes cluster in which dotmesh is installed, you can access it easily from within a Kubernetes cluster via a standard ClusterIP service called “dotmesh” in the “dotmesh” namespace, which can be accessed through the standard Kubernetes service discovery methods. In most cases, it should be accessible from inside the cluster at http://dotmesh.dotmesh:32607/rpc

There are two types of local API calls: cluster and node.

  • Cluster: The majority of API calls are cluster-level calls. They operate on any or every node of the cluster. Once any one node processes the call, it will ensure that all of the nodes in the cluster are aware of the new state, if any. Thus, in general, an API command, including those performed by the dm CLI, may be sent to any one node. It then will be routed to all of the other nodes as needed, and the entire cluster of nodes will be aware.
  • Node: A subset of calls are node-specific, e.g. mounting a volume from a dot. Since a mount happens on a particular node, the API call needs to be sent to the server running on the actual node on which the volume is to be mounted. These calls rarely are made by clients. Instead, they are called by drivers for specific implementations, for example a Kubernetes kubelet, which calls the dotmesh driver to mount a specific volume from a specific dot on a specific node, which the kubelet already is aware.

Protocol

The dotmesh API uses JSON-RPC v2 over HTTP when talking to a local cluster, or HTTPS for talking to the Hub. But don’t worry if you’re not familiar with JSON-RPC - we’ll explain everything with examples below.

Authentication

API calls always require authentication. The credentials you use depend on which API target you are talking to.

Local

If you are communicating with a local cluster you will have a single username admin and a single available API key. You can retrieve the key in a number of ways, depending on how you created your dotmesh cluster.

CLI

If you created your cluster from the command line with dm cluster init, these can be found in the $HOME/.dotmesh/config file:

$ cat ~/.dotmesh/config | jq -r .Remotes.local.ApiKey
VVKGYCC3G4K5G2QM3GLIVTECVSBWWJZD

If your cluster was created purely through Kubernetes, the admin API key can be found in the dotmesh-api-key.txt key in the dotmesh secret, in the dotmesh namespace:

$ kubectl examine secret dotmesh -n dotmesh -o yaml
apiVersion: v1
data:
  dotmesh-admin-password.txt: Y29ycmVjdGhvcnNlYmF0dGVyeXN0YXBsZQo=
  dotmesh-api-key.txt: VlZLR1lDQzNHNEs1RzJRTTNHTElWVEVDVlNCV1dKWkQK
kind: Secret
metadata:
  creationTimestamp: 2018-01-17T15:03:11Z
  name: dotmesh
  namespace: dotmesh
  resourceVersion: "418"
  selfLink: /api/v1/namespaces/dotmesh/secrets/dotmesh
  uid: 88c31d8b-fb97-11e7-b1fe-0242cd52be10
type: Opaque
$ echo VlZLR1lDQzNHNEs1RzJRTTNHTElWVEVDVlNCV1dKWkQK | base64 -d
VVKGYCC3G4K5G2QM3GLIVTECVSBWWJZD

Requests must be sent with a Content-Type of application/json, and comply with the JSON-RPC v2 specifiation, like so:

{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Ping",
  "params": {},
  "id": 6129484611666146000
}

The response will come back in the JSON-RPC v2 response format:

{
  "jsonrpc": "2.0",
  "result": "true",
  "id": 6129484611666146000
}

If there is a problem with your request, you will receive a standard JSON-RPC v2 error, like this:

{
  "jsonrpc": "2.0",
  "error": {
    "code": -32000,
    "message": "rpc: can't find method \"DotmeshRPC.AllYourBaseAreBelongToUs\"",
    "data": null
  },
  "id": 6129484611666146000
}

Example

Let’s check the version of our local Dotmesh cluster from the shell:

$ curl --user \
      admin:`jq -r .Remotes.local.ApiKey < ~/.dotmesh/config` \
    -H 'Content-Type: application/json' \
    http://localhost:32607/rpc \
    --data-binary \
    '{"jsonrpc": "2.0",
      "method": "DotmeshRPC.Version",
      "params": {},
      "id": 1}' \
    | jq
{
  "jsonrpc": "2.0",
  "result": {
    "installed_version": "master-63703ec",
    "current_version": "release-0.3.0",
    "current_release_date": 1520003781,
    "current_download_url":
       "https://github.com/dotmesh-io/dotmesh/releases/tag/release-0.3.0",
    "current_changelog_url": "",
    "project_website": "https://dotmesh.com",
    "outdated": true
  },
  "id": 1
}

API reference.

The dotmesh API encompasses many different methods. This section organizes them into related groups.

Information.

Informational API methods return information about the dotmesh cluster, its users, and individual instances. They’re not all that exciting or useful for most people, but they’re a good place to start getting to grips with the API because of their simplicity.

DotmeshRPC.Ping.

Use this to check that the Dotmesh server is alive. It doesn’t do anything - it just returns the same response, to confirm that, yes, the server is running.

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Ping",
  "params": {},
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": "true",
  "id": 6129484611666146000
}

DotmeshRPC.CurrentUser.

This returns the details of the user making the request. When used on your own cluster, it’ll just return the details of the admin user, which isn’t very interesting; but when used on the Hub, it will return some more interesting details.

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.CurrentUser",
  "params": {},
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": {
    "Id": "00000000-0000-0000-0000-000000000000",
    "Name": "admin",
    "Email": "",
    "EmailHash": "d41d8cd98f00b204e9800998ecf8427e",
    "CustomerId": "",
    "CurrentPlan": ""
  },
  "id": 6129484611666146000
}

DotmeshRPC.Version.

This method returns the version of the Dotmesh server. It’s handy for checking if the server you’re talking to supports some new feature you want, or to record the version number for informational purposes.

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Version",
  "params": {},
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": {
    "Name": "Dotmesh",
    "Version": "0.1",
    "Website": "https://dotmesh.io"
  },
  "id": 6129484611666146000
}

User Account Management

These API methods on the Dotmesh Hub administer the user’s account and add other users’ accounts as collaborators to your dots.

DotmeshRPC.GetApiKey

This method returns the user’s API key. You can invoke it using the API key or the user’s password, but if you already know the API key, there’s not much point in using it to call this method to find it out again; it’s only really useful as a way to get the user’s API key given their password.

It is intended that passwords are never stored, only API keys. If you’re writing an interactive app that lets the user login, it’s recommended that you ask them for their username and password, then use those to call this API method. If it succeeds, you can then store the API key to use thereafter, and discard their password.

Availability: * Local: NO * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.GetApiKey",
  "params": {},
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": {
    "ApiKey": "VVKGYCC3G4K5G2QM3GLIVTECVSBWWJZD"
  },
  "id": 6129484611666146000
}

DotmeshRPC.ResetApiKey.

Calling this method causes the user to be assigned a new, random API key. This means that any attempt to use the previous API key will fail; the new one returned by this method must be used in future.

This should be invoked if the user is worried their API key has been compromised, or as part of a precautionary API key refresh, perhaps on a regular schedule.

In order to limit the damage caused by a compromised API key, this method can’t be called using the API key - you need to use the password!

Availability: * Local: NO * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.ResetApiKey",
  "params": {},
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": {
    "ApiKey": "6SHK3KRVSHZJMHZMJ52GFYBQHGSDYTT46BPITJ2IXRUJCR4CH4MA===="
  },
  "id": 6129484611666146000
}

DotmeshRPC.AddCollaborator.

This API method on the Dotmesh Hub adds another user as a collaborator onto a dot you own (the calling user must be the owner of the dot, not a collaborator). To call it, you need the ID of the master branch of the Dot, not its name; see the Lookup method for a way to convert a name into an ID.

Availability: * Local: NO * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.AddCollaborator",
  "params": {
    "MasterBranchID": "b225158d-a2ac-4738-6d31-9a7dc511aab5",
    "Collaborator": "alice"
  },
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": true,
  "id": 6129484611666146000
}

Dot Management.

These API methods are used for managing dots, available both on a local cluster and the Dotmesh Hub.

When using these methods on a local cluster, the Namespace always will be admin.

When using these methods on the Hub, the Namespace will be the name of the user that owns the Dot. Usually, that will be the same username as the user calling the API methods, but it’s possible to perform some operations on a Dot you don’t own if you’ve been added as a Collaborator, or with Organizations.

Availability: * Local: YES * Hub: YES

DotmeshRPC.Lookup.

This API method simply takes a dot name, and optionally also a branch name, and converts it to a branch ID. If no branch name is given, it returns the master branch ID of the dot.

Availability: * Local: YES * Hub: YES

Request.

On a local cluster, let’s look up master branch ID of the test dot.

{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Lookup",
  "params": {
    "Namespace": "admin",
    "Name": "test",
    "Branch": ""
  },
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": "b225158d-a2ac-4738-6d31-9a7dc511aab5",
  "id": 6129484611666146000
}

DotmeshRPC.Exists.

Checks if a given dot (and, optionally, a specific branch of a dot) exists. If it does, it returns the branch ID; if it doesn’t exist, it just returns an empty string.

This is functionally equivalent to Lookup, except that the non-existent case is handled by returning an empty string rather than an error, as Lookup would. This is just a convenience method, to save you from having to convert an error back into a valid value.

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Exists",
  "params": {
    "Namespace": "admin",
    "Name": "non-existant-name",
    "Branch": ""
  },
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": "",
  "id": 6129484611666146000
}

DotmeshRPC.CheckNameIsValid.

Checks if a given dot name (optionally including a branch name) is valid. If it is, it returns an empty string; if not, it returns an error string.

This is intended to allow user interfaces to provide early feedback to the user if the name they have chosen for a dot or branch isn’t going to be accepted when it gets passed through to a clone/pull or create request for a dot name, or a branch creation request for a branch name. The same test will be applied by all API methods that create dots and branches anyway, so there’s no point calling it if you’re immediately going to call such an API method anyway. It makes sense to call it when a user has entered a name but before they press the actual button that will create something!

To just check a dot name, leave the Branch field blank (which is the valid way to indicate the master branch).

Availability: * Local: YES * Hub: YES

Valid Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.CheckNameIsValid",
  "params": {
    "Namespace": "x",
    "Name": "x",
    "Branch": ""
  },
  "id": 6129484611666146000
}
Valid Response.
{
  "jsonrpc": "2.0",
  "result": "",
  "id": 6129484611666146000
}
Invalid Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.CheckNameIsValid",
  "params": {
    "Namespace": "x",
    "Name": "x!",
    "Branch": ""
  },
  "id": 6129484611666146000
}
Invalid Response.
{
  "jsonrpc": "2.0",
  "result": "Invalid dot name x!",
  "id": 6129484611666146000
}

DotmeshRPC.Get.

This method takes a branch ID and returns information about that branch. We’ll go through everything returned in the Response section below.

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Get",
  "params": "b225158d-a2ac-4738-6d31-9a7dc511aab5",
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": {
    "Id": "b225158d-a2ac-4738-6d31-9a7dc511aab5",
    "Name": {
      "Namespace": "admin",
      "Name": "test"
    },
    "Branch": "",
    "Master": "504954d09db78174",
    "SizeBytes": 19456,
    "DirtyBytes": 19456,
    "CommitCount": 0,
    "ServerStatuses": {
      "504954d09db78174": "active: waiting, 0 snaps (v740)"
    }
  },
  "id": 6129484611666146000
}

The result has the following keys:

Id.
This is just the branch ID, exactly as you provided in the request.
Name.
This is the namespace and name of the Dot containing this branch.
Branch.
If this is the master branch of the Dot, then `Branch` is an empty string. However, if we're dealing with a non-master branch, `Branch` will be its name.
Master.
This is the ID of the node that's currently holding the live copy of this branch. Only that node may directly mount the branch into a container.
SizeBytes.
The size of the branch, in bytes.
DirtyBytes.
How much data has changed since the last commit (or creation) of this branch, in bytes.
CommitCount.
How many commits have happened on this branch since its creation.
ServerStatuses.
A map from the IDs of the nodes that have replicas of this branch, with a string summarising the status of the branch on that node for each.

DotmeshRPC.List.

This method returns a list of Dots. For each, it also returns the ID of the currently selected branch for that Dot, and the result of calling the Get method on it.

The list of dots returned will include only those dots for whom the querying user has access:

  • Hub: The ones in your namespace and those for which you have been added as a collaborator.
  • Local: All dots

If you want the details of the master branch for each Dot, you’re going to need to spot the Dots that have a non-empty string for their Branch key and call the Lookup method on the name without a Branch to get the master branch ID, then call the Get method to find the details.

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.List",
  "params": {},
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": {
    "admin": {
      "test": {
        "Id": "b225158d-a2ac-4738-6d31-9a7dc511aab5",
        "Name": {
          "Namespace": "admin",
          "Name": "test"
        },
        "Branch": "",
        "Master": "504954d09db78174",
        "SizeBytes": 19456,
        "DirtyBytes": 19456,
        "CommitCount": 0,
        "ServerStatuses": {
          "504954d09db78174": "active: waiting, 0 snaps (v740)"
        }
      }
    }
  },
  "id": 6129484611666146000
}

The result is a JSON object with a key per namespace - which will just be admin for a local cluster. Within that key is an object with a key per Dot, the contents of which is as per the result of the Get method.

DotmeshRPC.ListWithContainers.

This method returns a list of Dots, as does the List method. However, it also returns the list of containers using each dot, like the ContainersById method. This is a convenience method, returning exactly the information required to provide the dm list command!

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.ListWithContainers",
  "params": {},
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": {
    "admin": {
      "fooasdf": {
        "Volume": {
          "Id": "bf056e31-2a3e-442b-649a-4b417242b38b",
          "Name": {
            "Namespace": "admin",
            "Name": "fooasdf"
          },
          "Branch": "",
          "Master": "f8b1b659877608d8",
          "SizeBytes": 19456,
          "DirtyBytes": 19456,
          "CommitCount": 0,
          "ServerStatuses": {
            "f8b1b659877608d8": "active: waiting, 0 snaps (v1662)"
          }
        },
        "Containers": [
          {
            "Name": "/backstabbing_shannon",
            "Id": "c499b42e96e11d7a3c6d4875d5d5b752ea47ac59ce62bc2756694ff7e6041f01"
          }
        ]
      }
    }
  },
  "id": 6129484611666146000
}

The result is the same as the result of the List method, except that for each Dot, it provides a JSON object with Volume and Containers keys - containing the same JSON as you’d get from the Get method and the ContainersById method for that dot, respectively.

DotmeshRPC.AllDotsAndBranches.

This API method returns a list of all the Dots and their branches, along with lots of useful information.

The list of dots returned will include only those dots for whom the querying user has access:

  • Hub: The ones in your namespace and those for which you have been added as a collaborator.
  • Local: All dots

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.AllDotsAndBranches",
  "params": {},
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": {
    "Dots": [
      {
        "MasterBranch": {
          "Id": "1b950a95-cfc7-4ffc-40e3-e7ac5b2461d0",
          "Name": {
            "Namespace": "admin",
            "Name": "telescopes"
          },
          "Branch": "",
          "Master": "504954d09db78174",
          "SizeBytes": 19456,
          "DirtyBytes": 19456,
          "CommitCount": 0,
          "ServerStatuses": {
            "504954d09db78174": "active: waiting, 0 snaps (v880)"
          }
        },
        "OtherBranches": null,
        "Owner": {
          "Id": "00000000-0000-0000-0000-000000000000",
          "Name": "admin",
          "Email": "",
          "EmailHash": "d41d8cd98f00b204e9800998ecf8427e",
          "CustomerId": "",
          "CurrentPlan": ""
        },
        "Collaborators": []
      },
      {
        "MasterBranch": {
          "Id": "b225158d-a2ac-4738-6d31-9a7dc511aab5",
          "Name": {
            "Namespace": "admin",
            "Name": "test"
          },
          "Branch": "",
          "Master": "504954d09db78174",
          "SizeBytes": 20480,
          "DirtyBytes": 0,
          "CommitCount": 1,
          "ServerStatuses": {
            "504954d09db78174": "active: waiting, 1 snaps (v1200)"
          }
        },
        "OtherBranches": [
          {
            "Id": "e1a9c58a-d80e-40c9-6474-e502cf6e79fa",
            "Name": {
              "Namespace": "admin",
              "Name": "test"
            },
            "Branch": "potatoes",
            "Master": "504954d09db78174",
            "SizeBytes": 1024,
            "DirtyBytes": 19456,
            "CommitCount": 0,
            "ServerStatuses": {
              "504954d09db78174": "active: waiting, 0 snaps (v850)"
            }
          },
          {
            "Id": "e495d3a3-9602-4049-49c1-81630815799e",
            "Name": {
              "Namespace": "admin",
              "Name": "test"
            },
            "Branch": "testing_v2",
            "Master": "504954d09db78174",
            "SizeBytes": 1024,
            "DirtyBytes": 19456,
            "CommitCount": 0,
            "ServerStatuses": {
              "504954d09db78174": "active: waiting, 0 snaps (v1205)"
            }
          }
        ],
        "Owner": {
          "Id": "00000000-0000-0000-0000-000000000000",
          "Name": "admin",
          "Email": "",
          "EmailHash": "d41d8cd98f00b204e9800998ecf8427e",
          "CustomerId": "",
          "CurrentPlan": ""
        },
        "Collaborators": [
          {
            "Id": "00000000-0000-0000-0000-000000000000",
            "Name": "admin",
            "Email": "",
            "EmailHash": "d41d8cd98f00b204e9800998ecf8427e",
            "CustomerId": "",
            "CurrentPlan": ""
          },
          {
            "Id": "00000000-0000-0000-0000-000000000000",
            "Name": "admin",
            "Email": "",
            "EmailHash": "d41d8cd98f00b204e9800998ecf8427e",
            "CustomerId": "",
            "CurrentPlan": ""
          }
        ]
      }
    ],
    "Servers": [
      {
        "Id": "504954d09db78174",
        "Addresses": [
          "192.168.1.34",
          "10.192.0.1",
          "172.18.0.1"
        ]
      }
    ]
  },
  "id": 6129484611666146000
}

Let’s break down the keys in the result.

Volumes.
An array of the Dots in this cluster. Each is represented as a JSON object, as described below.
Servers.
An array of the servers in this cluster. Each is represented as a JSON object, with an `Id` key containing the server ID and an `Addresses` key containing a list of the IP addresses of that server.

Each Dot’s information is given as a JSON object with the following keys:

MasterBranch.
This JSON object contains the details of the master branch of the Dot, as returned by the [`Get` method](#dotmeshrpc-get).
OtherBranches.
This is an array of JSON objects, one for each non-master branch of the Dot, in the same format.
Owner.
This is a JSON object, containing the details of the user that owns the Dot, as returned by the [`CurrentUser` method](#dotmeshrpc-currentuser).
Collaborators.
This is an array of JSON objects, each containing the details of a collaborator assigned to this Dot with the [`AddCollaborator` method](#dotmeshrpc-addcollaborator), in the same format.

DotmeshRPC.Create.

This method creates a new Dot, containing an empty master branch. The dot will be created in the namespace provided in the request. If you do not have creation rights in that namespace, the response will be an error.

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Create",
  "params": {
    "Namespace": "admin",
    "Name": "telescopes"
  },
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": true,
  "id": 6129484611666146000
}

The master branch ID isn’t returned, so you’ll need to call the Lookup method if you need it.

DotmeshRPC.ContainersById.

This method returns a list of containers that are currently using the specified branch, given the branch’s ID.

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.ContainersById",
  "params": "b225158d-a2ac-4738-6d31-9a7dc511aab5",
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": [
    {
      "Name": "/peaceful_hugle",
      "Id": "0306fc9d26684869b366ef3772f8d23bc7e19023f0e32e7f48d52b54dadf0a6f"
    }
  ],
  "id": 6129484611666146000
}

The Name and Id are as provided by Docker:

$ docker ps --format '{{.ID}}  {{.Names}}'
0306fc9d2668  peaceful_hugle

DotmeshRPC.Containers.

This method returns a list of containers that are currently using the specified branch, given a namespace/name/branch tuple. it is functionally equivalent to ContainersById method, useful if you do not have the branch ID, saving you the Lookup.

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Containers",
  "params": {
    "Namespace": "admin",
    "Name": "test",
    "Branch": ""
  },
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": [
    {
      "Name": "/peaceful_hugle",
      "Id": "0306fc9d26684869b366ef3772f8d23bc7e19023f0e32e7f48d52b54dadf0a6f"
    }
  ],
  "id": 6129484611666146000
}

DotmeshRPC.CommitsById.

This API method returns a list of commits for a given branch, by ID.

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.CommitsById",
  "params": "b225158d-a2ac-4738-6d31-9a7dc511aab5",
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": [
    {
      "Id": "880fb2c4-24db-4d16-5fc4-974d17525450",
      "Metadata": {
        "author": "admin",
        "message": "A well-written commit message",
        "timestamp": "1516272712508219206"
      }
    }
  ],
  "id": 6129484611666146000
}

As you can see, each commit has its own ID, as well as metadata including the username of the author, the message they supplied, and a timestamp in UTC nanoseconds since the UNIX epoch.

DotmeshRPC.Commits.

This API method returns a list of commits for a given branch, by namespace/name/branch tuple. It is a convenience method, functionally equivalent to CommitsById, but useful when you do not have the branch ID.

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Commits",
  "params": {
    "Namespace": "admin",
    "Name": "test",
    "Branch": ""
  },
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": [
    {
      "Id": "880fb2c4-24db-4d16-5fc4-974d17525450",
      "Metadata": {
        "author": "admin",
        "message": "A well-written commit message",
        "timestamp": "1516272712508219206",
        "customfield": "customvalue"
      }
    }
  ],
  "id": 6129484611666146000
}

DotmeshRPC.Commit.

This API method triggers a commit on a given branch. Rather than accepting a branch ID, it requires a namespace, dot name, and optional branch name; it looks up the branch for you. You also need to provide a commit message.

You can optionally provide arbitrary key-value metadata.

Availability: * Local: YES * Hub: YES

The result value is the commit ID (as returned by DotmeshRPC.Commits, for example).

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Commit",
  "params": {
    "Namespace": "admin",
    "Name": "test",
    "Branch": "",
    "Message": "A thoughtfully-written and clear commit message",
    "Metadata": {
      "fruit": "apples",
      "color": "green"
    }
  },
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": "880fb2c4-24db-4d16-5fc4-974d17525451",
  "id": 6129484611666146000
}

DotmeshRPC.Rollback.

This API method reverts the current state of a branch back to a previous commit. Rather than accepting a branch ID, this call accepts namespace, dot_name and optional branch name parameters, and looks up the branch for you. You also need to provide the ID of the commit to roll back to, as returned by the Commits method.

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Rollback",
  "params": {
    "Namespace": "admin",
    "Name": "test",
    "Branch": "",
    "SnapshotId": "880fb2c4-24db-4d16-5fc4-974d17525450"
  },
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": true,
  "id": 6129484611666146000
}

DotmeshRPC.Branches.

This API method returns a list of branches of a given Dot, given the namespace and name of the Dot.

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Branches",
  "params": {
    "Namespace": "admin",
    "Name": "test"
  },
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": [
    "testing_v1",
    "testing_v2"
  ],
  "id": 6129484611666146000
}

The branch names can be converted into branch IDs by passing them as the Branch parameter to the Lookup method, with the Namespace and Name of the Dot. Don’t forget that every Dot also has a master branch ID, obtained by calling Lookup with an empty Branch name, as well as the branches listed by this method.

DotmeshRPC.Branch.

This API method creates a new branch for a given Dot, starting with an existing commit of an existing branch. If you want to create a new branch from the master branch of the Dot, you need to specify master as the SourceBranch parameter; otherwise, you must specify the name of the branch.

Availability: * Local: YES * Hub: YES

Request.

In this example, we create a branch called testing_v2 from one of the commits on the master branch we saw in the result from our example call to the Commits method.

{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Branch",
  "params": {
    "Namespace": "admin",
    "Name": "test",
    "SourceBranch": "master",
    "NewBranchName": "testing_v2",
    "SourceCommitId": "880fb2c4-24db-4d16-5fc4-974d17525450"
  },
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": true,
  "id": 6129484611666146000
}

DotmeshRPC.Delete.

This API method deletes a dot. There’s no undo, so please don’t call it unless you mean it. You need to provide the namespace and name of the dot.

Availability: * Local: YES * Hub: YES

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Delete",
  "params": {
    "Namespace": "admin",
    "Name": "unwanted_things"
  },
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": true,
  "id": 6129484611666146000
}

Attachment

The attachment API methods relate to the attaching of volumes to containers. Actually attaching a volume to a container can only be done through the specific platform integrations, e.g. Docker and Kubernetes, rather than this API; these API functions are related to attachment rather than actually performing attachment.

A “volume” is an actual filesystem made available to a container; it consists of a particular Subdot of a particular Branch of a particular Dot.

DotmeshRPC.Procure.

This API method creates a Dot if required, ensures the node handling the API call is the master by migrating the Dot if necessary, and returns the host path where the given Subdot of the Dot’s current branch (or a specific branch, if requested) is mounted.

The default Subdot is called __default__; use that for the Subdot parameter unless the user specifies otherwise. Sending the empty string as Subdot will cause the root of the Dot to be mounted, which is conventionally what should happen if the user specifies __root__ as the Subdot name.

Normally, this API method will return a host path to the currently selected branch of the Dot, as selected by the SwitchContainers method; if that method has never been invoked, then this will be the master branch. However, any branch may be selected by specifying a Name of the form NAME@BRANCH, eg test@testing_v1; the branch name master may be used to request the master branch of the Dot.

Availability: * Local: YES * Hub: NO

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Procure",
  "params": {
    "Namespace": "admin",
    "Name": "test@testing_v1"
    "Subdot": "__default__"
  },
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": "/var/dotmesh/admin/test@testing_v1/__default__",
  "id": 6129484611666146000
}

DotmeshRPC.SwitchContainers.

This API method changes the default branch for the given Dot. This means that future calls to Procure, or attachments via the Docker or Kubernetes integrations, that do not specify an explicit branch name with the NAME@BRANCH syntax, will henceforth use the specified branch rather than the original default of master.

In addition, any existing Docker containers using the default will be stopped and re-started to use the new default when this API method is called.

Availability: * Local: YES * Hub: NO

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.SwitchContainers",
  "params": {
    "Namespace": "admin",
    "Name": "test",
    "NewBranchName": "testing_v2"
  },
  "id": 6129484611666146000
}
Response.
{
  "jsonrpc": "2.0",
  "result": true,
  "id": 6129484611666146000
}

Transfers.

The transfer methods allow you to initiate pulls and pushes between Dotmesh clusters, including the Dotmesh Hub.

DotmeshRPC.Transfer.

This API method initiates a transfer - which can be a pull or a push - with another cluster. To invoke it, you need to provide a hostname of a node in the remote cluster, plus a username and an API key for that cluster.

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.Transfer",
  "params": {
    "Peer": "10.192.0.2",
    "User": "admin",
    "ApiKey": "MYRJNBIKDMT7OCAZYEHM2YITDS4TK3EY",
    "Direction": "push",
    "LocalNamespace": "admin",
    "LocalName": "volume_1",
    "LocalBranchName": "",
    "RemoteNamespace": "admin",
    "RemoteName": "volume_1",
    "RemoteBranchName": "",
    "TargetCommit": ""
  },
  "id": 5577006791947779000
}

The request has many parameters. Let’s look at them in more detail.

Peer.
User.
ApiKey.
These are the details to connect to the remote cluster. `Peer` is the hostname of a node in the remote cluster; for the Dotmesh Hub, provide `saas.datamesh.io`.
Direction.
This should either be `"push"` or `"pull"`. You may not be surprised to find out that `"push"` causes the cluster you send the API request to to transfer a branch to the remote cluster, and that `"pull"` causes it to request a branch from the remote cluster.
LocalNamespace.
LocalName.
LocalBranchName.
These identify the branch on the local cluster - which may be the source or target, depending on the `Direction`!
RmoteNamespace.
RemoteName.
RemoteBranchName.
These identify the branch on the remote cluster - which also may be the source or target, depending on the `Direction`!
TargetCommit.
This is reserved for future use. Leave it as an empty string for now.
Response.
{
  "jsonrpc": "2.0",
  "result": "b655e1f4-ae90-422b-78ac-b1090c7391bb",
  "id": 5577006791947779000
}

The result is a transfer ID, which you can then poll with the GetTransfer method.

DotmeshRPC.S3Transfer.

This API method initiates an S3 transfer - which can be a pull or a push - with an S3 bucket. To invoke it, you need to provide the secret key and access key for the S3-enabled account, plus a hostname if the bucket is not hosted in AWS. Everytime a pull is initiated which results in new data, a commit will be automatically created. Everytime a push is initiated which includes a commit which has not been stored in S3, a new metadata commit will be created in Dotmesh storing the versionIDs returned from S3 in local metadata.

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.S3Transfer",
  "params": {
    "AccessKey": "someaccesskeyfromaws",
    "SecretKey": "somesecret",
    "Endpoint": "",
    "Direction": "push",
    "Prefixes": [],
    "LocalNamespace": "admin",
    "LocalName": "volume_1",
    "LocalBranchName": "",
    "RemoteName": "test.bucket",
  },
  "id": 5577006791947779000
}

The request has many parameters. Let’s look at them in more detail.

AccessKey.
SecretKey.
Endpoint.
These are the details to connect to the S3 cluster. `Endpoint` is the hostname of the S3 cluster; leave this blank if it is an AWS-hosted bucket.
Direction.
This should either be `"push"` or `"pull"`. Push will sync the state of your dotmesh data dot with S3: any files which exist locally will be pushed to S3; any files which exist in S3 but do not exist locally will be deleted from S3. Pull will sync S3's state with Dotmesh's state - in other words, the inverse happens (anything that does not exist in S3 will be deleted locally, all files which exist in both will be updated).
LocalNamespace.
LocalName.
LocalBranchName.
These identify the branch on the local dotmesh cluster.
RemoteName.
The name of the bucket you wish to sync with.
Prefixes.
You can specify a list of strings which S3 keys must begin with, in order to select a subset of files from S3. Leave blank to sync everything with S3.
Response.
{
  "jsonrpc": "2.0",
  "result": "b655e1f4-ae90-422b-78ac-b1090c7391bb",
  "id": 5577006791947779000
}

The result is a transfer ID, which you can then poll with the GetTransfer method. Speaking of which…

DotmeshRPC.GetTransfer.

This API method checks the status of a transfer initiated with the Transfer method. To call it, you need the transfer ID returned by Transfer.

Request.
{
  "jsonrpc": "2.0",
  "method": "DotmeshRPC.GetTransfer",
  "params": "b655e1f4-ae90-422b-78ac-b1090c7391bb",
  "id": 8674665223082154000
}
Response.
{
  "jsonrpc": "2.0",
  "result": {
    "TransferRequestId": "b655e1f4-ae90-422b-78ac-b1090c7391bb",
    "Peer": "10.192.0.2",
    "User": "admin",
    "ApiKey": "MYRJNBIKDMT7OCAZYEHM2YITDS4TK3EY",
    "Direction": "push",
    "LocalNamespace": "admin",
    "LocalName": "volume_1",
    "LocalBranchName": "",
    "RemoteNamespace": "admin",
    "RemoteName": "volume_1",
    "RemoteBranchName": "",
    "FilesystemId": "3d55917d-a742-4afa-57ec-207fd589da3c",
    "InitiatorNodeId": "cc35b6b4c2edbd4d",
    "PeerNodeId": "",
    "StartingCommit": "START",
    "TargetCommit": "b0af7015-9a01-497e-6249-8cf973fb3bd2",
    "Index": 1,
    "Total": 1,
    "Status": "finished",
    "NanosecondsElapsed": 37419551,
    "Size": 9728,
    "Sent": 44939,
    "Message": ""
  },
  "id": 8674665223082154000
}

We won’t explain all of them in detail, as they may change in future. As you can see, many of them are copies of the original transfer request parameters. The one important thing you need to know is that when the Status key becomes finished, it’s done!