5.5 KiB

Platform

The DataHub platform follows a service oriented architecture. It is built from a set of loosely coupled components, each performing distinct functions related to the platform as a whole.

Architecture

Fig 1: Data Flow through the system

graph TD

cli((CLI fa:fa-user))
auth[Auth Service]
cli --login--> auth

cli --store--> raw[Raw Store API<br>+ Storage]  

cli --package-info--> pipeline-store
raw --data resource--> pipeline-runner

pipeline-store -.generate.-> pipeline-runner

pipeline-runner --> package[Package Storage]
package --api--> frontend[Frontend]
frontend --> user[User fa:fa-user]

package -.publish.->metastore[MetaStore]
pipeline-store -.publish.-> metastore[MetaStore]
metastore[MetaStore] --api--> frontend

Fig 2: Components Perspective - from the Frontend

graph TD

subgraph Web Frontend
  frontend[Frontend Webapp]
  browse[Browse & Search]
  login[Login & Signup]
  view[Views Renderer]
  frontend --> browse
  frontend --> login
end

subgraph Users and Permissions
  user[User]
  permissions[Permissions]
  authapi[Auth API]
  authzapi[Authorization API]
  login --> authapi
  authapi --> user
  authzapi --> permissions
end

subgraph PkgStore
  bitstore["PkgStore (S3)"]
  bitstoreapi[PkgStore API<br/>put,get]
  bitstoreapi --> bitstore
  browse --> bitstoreapi
end

subgraph MetaStore
  metastore["MetaStore (ElasticSearch)"]
  metaapi[MetaStore API<br/>read,search,import]
  metaapi --> metastore
  browse --> metaapi
end

subgraph CLI
  cli[CLI]
end

Information Architecture

datahub.io            # frontend
api.datahub.io        # API - see API page for structure
rawstore.datahub.io   # rawstore - raw bitstore
pkgstore.datahub.io   # pkgstore - package bitstore

## Components

Frontend Web Application

Core part of platform - Login & Sign-Up and Browse & Search Datasets

https://github.com/datahq/frontend

Views and Renderer

JS Library responsible for visualization and views.

See views section for more about Views.

Assembler

TODO

Raw Storage

We first save all raw files before sending to pipeline-runner. Pipeline-runner is a service that runs the data package pipelines. It is used to normalise and modify the data before it is displayed publicly

  • We use AWS S3 instance for storing data

Package Storage

We store files after passing pipeline-runner

  • We use AWS S3 instance for storing data

BitStore

We are preserving the data byte by byte.

  • We use AWS S3 instance for storing data

MetaStore

The MetaStore provides an integrated, searchable view over key metadata for end user services and users. Initially this metadata will just be metadata on datasets in the Package Store. In future it may expand to provide a unified to include other related metadata such as pipelines. It also includes summary metadata (or the ability to compute summary data) e.g. the total size of all your packages

Service architecture

graph TD

subgraph MetaStore
metaapi[MetaStore API]
metadb[MetaStore DB fa:fa-database]
end

metadb --> metaapi

assembler[Assembler] --should this by via api or direct to DB??--> metadb

metaapi --> frontend[Frontend fa:fa-user]
metaapi --> cli[CLI fa:fa-user]

frontend -.no dp stuff only access.-> metaapi

Command Line Interface

The command line interface.

https://github.com/datahq/datahub-cli

Domain model

There are two main concepts to understand in DataHub domain model - Profile and Package

graph TD

pkg[Data Package]
resource[Resource]
file[File]
version[Version]
user[User]
publisher[Publisher]

subgraph Package
  pkg --0..*--> resource
  resource --1..*--> file
  pkg --> version
end

subgraph Profile
  publisher --1..*--> user
  publisher --0..*--> pkg
end

Profile

Set of an authenticated and authorized entities like publishers and users. They are responsible for publishing, deleting or maintaining data on platform.

Important: Users do not have Data Packages, Publishers do. Users are members of Publishers.

Publisher

Publisher is an organization which "owns" Data Packages. Publisher may have zero or more Data Packages. Publisher may also have one or more user.

User

User is an authenticated entity, that is member of Publisher organization, that can read, edit, create or delete data packages depending on their permissions.

Package

A Data Package is a simple way of “packaging” up and describing data so that it can be easily shared and used. You can imagine as collection of data and and it's meta-data (datapackage.json), usually covering some concrete topic Eg: "Gold Prices" or "Population Growth Rate In My country" etc.

Each Data Package may have zero or more resources and one or more versions.

Resources - think like "tables" - Each can map to one or more physical files (usually just one). Think of a data table split into multiple CSV files on disk.

Version of a Data Package - similar to git commits and tags. People can mean different things by a "Version":

  • Tag - Same as label or version - a nice human usable label e.g. "v0.3", "master", "2013"
  • Commit/Hash - Corresponds to the hash of datapackage.json, with that datapackage.json including all hashes of all data files

We interpret Version as "Tag" concept. "Commit/Hash" is not supported