Suresh Srinivas 00f541d1b4 Event logging
2021-08-05 02:01:47 -07:00
2021-08-05 02:01:47 -07:00
2021-08-05 02:01:47 -07:00
2021-08-05 02:01:47 -07:00
2021-08-04 12:40:55 +00:00
2021-08-04 18:09:58 +05:30
2021-08-04 06:23:29 +00:00
2021-08-01 14:27:44 -07:00
2021-08-01 14:27:44 -07:00
2021-08-01 14:27:44 -07:00

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

Description
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.
Readme Apache-2.0 2.6 GiB
Languages
TypeScript 48.2%
Java 27.2%
Python 22.2%
Less 1.6%
CSS 0.3%
Other 0.3%