OpenMetadata is a unified metadata platform for data discovery, data observability, and data governance powered by a central metadata repository, in-depth column level lineage, and seamless team collaboration.
Find a file
parthp2107 8a92d253db
replaced catalog to openmetadata #2 (#47)
Co-authored-by: parthp2107 <parth.panchal@deuexsoultions.com>
2021-08-05 10:15:52 +05:30
.github added scripts for documentations (#41) 2021-08-04 11:52:38 +05:30
bin replaced catalog to openmetadata #2 (#47) 2021-08-05 10:15:52 +05:30
bootstrap replaced catalog to openmetadata #2 (#47) 2021-08-05 10:15:52 +05:30
catalog-rest-service changed path 2021-08-04 13:18:14 +05:30
checkstyle applied license to the backend files 2021-08-02 15:08:30 +05:30
common applied license to the backend files 2021-08-02 15:08:30 +05:30
conf replaced catalog to openmetadata #2 (#47) 2021-08-05 10:15:52 +05:30
dist replaced catalog to openmetadata #2 (#47) 2021-08-05 10:15:52 +05:30
docker replaced catalog to openmetadata #2 (#47) 2021-08-05 10:15:52 +05:30
docs shahsank3t published a site update 2021-08-04 12:40:55 +00:00
ingestion Docker Scripts and Commands modified 2021-08-03 01:26:20 +05:30
scripts minor changes in scripts (#46) 2021-08-04 18:09:58 +05:30
.gitbook.yaml applied license to the backend files 2021-08-02 15:08:30 +05:30
.gitignore applied license to the backend files 2021-08-02 15:08:30 +05:30
.nojekyll shahsank3t published a site update 2021-08-04 06:23:29 +00:00
LICENSE OpenMetadata snapshot release 0.3 2021-08-01 14:27:44 -07:00
Makefile OpenMetadata snapshot release 0.3 2021-08-01 14:27:44 -07:00
NOTICE OpenMetadata snapshot release 0.3 2021-08-01 14:27:44 -07:00
pom.xml Fix #24 - Change old name StreamlineData to OpenMetadata 2021-08-02 16:05:59 -07:00
README.md replaced catalog to openmetadata #2 (#47) 2021-08-05 10:15:52 +05:30

OpenMetadata

Build Status Release Twitter Follow License

What is OpenMetadata?

OpenMetadata is a ...

Features

Building OpenMetadata

Set up mysql database used as OpenMetadata backend

mysql -u username -p (Enter password when prompted)

mysql> CREATE USER 'openmetadata_user'@'%' IDENTIFIED WITH mysql_native_password BY 'openmetadata_password';
mysql> CREATE DATABASE openmetadata_db;
mysql> `GRANT ALL PRIVILEGES ON openmetadata_db.* TO 'openmetadata_user'@'%' IDENTIFIED BY 'openmetadata_password'`;
mysql> FLUSH PRIVILEGES;

Build OpenMetdata project and run it

Make sure mysql is running with credentials user 'openmetadata_user' with password 'openmetadata_password'. Connect to mysql following steps mentioned here.

mvn -DskipTests clean package
cd dist/target
tar zxvf openmetadata-1.0.0-SNAPSHOT.tar.gz
cd openmetadata-1.0.0-SNAPSHOT/bootstrap
./bootstrap_storage.sh migrate
cd ../

If authorizer is configured, run:

./bin/openmetadata-server-start.sh conf/openmetadata-security.yaml

otherwise run

./bin/openmetadata-server-start.sh conf/openmetadata.yaml

Open browser http://localhost:8585/ to start the UI.
Open browser http://localhost:8585/api/swagger to look at API documentation.

Setup Authorizer Configuration

Enter following information in /conf/openmetadata-security.yaml file:

authorizerConfiguration:
  className: <authorizer_classname>
  containerRequestFilter: <JWT-filter>
  publicKeyUri: <sign-on_provider_public-key>
  clientAuthorizer:
    authority: <sign-on_issuer-url>
    client_id: <sign-on_client_id>

Running OpenMetadata via Docker

cd docker/metadata/
docker-compose build
docker-compose up

Open browser http://localhost:8585/ to start the UI.
Open browser http://localhost:8585/api/swagger to look at API documentation.

Documentation

Check out OpenMetadata documentation for a complete description of OpenMetadata's features.

License

OpenMetadata is under Apache License, Version 2.0