2020-03-11 05:25:32 -07:00
# DataHub Features
2020-03-10 23:32:50 -07:00
2021-03-05 00:12:12 -08:00
DataHub is made up of a [generic backend ](what/gma.md ) and a [React-based UI ](../datahub-web-react/README.md ).
Original DataHub [blog post ](https://engineering.linkedin.com/blog/2019/data-hub ) talks about the design extensively and mentions some of the features of DataHub.
Our open sourcing [blog post ](https://engineering.linkedin.com/blog/2020/open-sourcing-datahub--linkedins-metadata-search-and-discovery-p ) also provides a comparison of some features between LinkedIn production DataHub vs open source DataHub. Below is a list of the latest features that are available in DataHub, as well as ones that will soon become available.
2020-03-10 23:32:50 -07:00
## Data Constructs (Entities)
### Datasets
- **Search**: full-text & advanced search, search ranking
2020-03-11 04:56:22 -07:00
- **Browse**: browsing through a configurable hierarchy
2020-03-10 23:32:50 -07:00
- **Schema**: table & document schema in tabular and JSON format
- **Coarse grain lineage**: support for lineage at the dataset level, tabular & graphical visualization of downstreams/upstreams
- **Ownership**: surfacing owners of a dataset, viewing datasets you own
- **Dataset life-cycle management**: deprecate/undeprecate, surface removed datasets and tag it with "removed"
- **Institutional knowledge**: support for adding free form doc to any dataset
2020-03-11 05:03:18 -07:00
- **Fine grain lineage**: support for lineage at the field level [*coming soon*]
- **Social actions**: likes, follows, bookmarks [*coming soon*]
- **Compliance management**: field level tag based compliance editing [*coming soon*]
- **Top users**: frequent users of a dataset [*coming soon*]
2021-03-18 11:52:14 -07:00
### Tags
- **Globally defined**: Tags provided a standardized set of labels that can be shared across all your entities
- **Supports entities and schemas**: Tags can be applied at the entity level or for datasets, attached to schema fields.
- **Searchable** Entities can be searched and filtered by tag
2020-03-10 23:32:50 -07:00
### Users
- **Search**: full-text & advanced search, search ranking
2020-03-11 05:03:18 -07:00
- **Browse**: browsing through a configurable hierarchy [*coming soon*]
2020-03-10 23:32:50 -07:00
- **Profile editing**: LinkedIn style professional profile editing such as summary, skills
2020-03-11 05:02:30 -07:00
2021-03-18 09:55:05 -07:00
### Dashboards
- **Search**: full-text & advanced search, search ranking
- **Basic information**: ownership, location. Link to external service for viewing the dashboard.
- **Institutional knowledge**: support for adding free form doc to any dashboards [*coming soon*]
2020-03-11 05:03:18 -07:00
### Schemas [*coming soon*]
2020-03-11 05:02:30 -07:00
- **Search**: full-text & advanced search, search ranking
- **Browse**: browsing through a configurable hierarchy
- **Schema history**: view and diff historic versions of schemas
- **GraphQL**: visualization of GraphQL schemas
2020-03-11 05:03:18 -07:00
### Jos/flows [*coming soon*]
2020-03-11 05:02:30 -07:00
- **Search**: full-text & advanced search, search ranking
- **Browse**: browsing through a configurable hierarchy
- **Basic information**:
- **Execution history**: Executions and their status. Link to external service for viewing full info.
2020-03-11 05:03:18 -07:00
### Metrics [*coming soon*]
2021-02-15 16:34:59 -08:00
- **Search**: full-text & advanced search, search ranking
2020-03-11 04:56:22 -07:00
- **Browse**: browsing through a configurable hierarchy
- **Basic information**: ownershp, dimensions, formula, input & output datasets, dashboards
- **Institutional knowledge**: support for adding free form doc to any metric
2020-03-10 23:32:50 -07:00
## Metadata Sources
2021-02-15 16:34:59 -08:00
There's a basic, Java-oriented overview of [metadata ingestion ](architecture/metadata-ingestion.md ).
2020-03-11 04:56:22 -07:00
2021-02-15 16:34:59 -08:00
We also have a [Python-based ingestion framework ](../metadata-ingestion/README.md ) which supports the following sources:
2020-03-10 23:32:50 -07:00
- Hive
- Kafka
2021-02-15 16:34:59 -08:00
- RDBMS (MySQL, Oracle, Postgres, MS SQL, etc)
- Data warehouse (Snowflake, BigQuery, etc)
2020-03-11 04:56:22 -07:00
- LDAP
2021-02-15 16:34:59 -08:00
That ingestion framework is extensible, so you can easily create new sources of metadata. You just need to transform the metadata into our standard [MCE ](what/mxe.md ) format, and the framework will help ingest metadata to DataHub.