mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-18 05:57:17 +00:00
GitBook: [main] 77 pages and 6 assets modified
This commit is contained in:
parent
5fd79c84c4
commit
f3eb15682d
BIN
docs/.gitbook/assets/fork-github.png
Normal file
BIN
docs/.gitbook/assets/fork-github.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 277 KiB |
BIN
docs/.gitbook/assets/new-issue.png
Normal file
BIN
docs/.gitbook/assets/new-issue.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 516 KiB |
78302
docs/.gitbook/assets/openmetadata-style-guide (2).pdf
Normal file
78302
docs/.gitbook/assets/openmetadata-style-guide (2).pdf
Normal file
File diff suppressed because it is too large
Load Diff
BIN
docs/.gitbook/assets/pull-request-1.png
Normal file
BIN
docs/.gitbook/assets/pull-request-1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 340 KiB |
BIN
docs/.gitbook/assets/pull-request-2.png
Normal file
BIN
docs/.gitbook/assets/pull-request-2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1015 KiB |
BIN
docs/.gitbook/assets/pull-request.png
Normal file
BIN
docs/.gitbook/assets/pull-request.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 366 KiB |
Binary file not shown.
After Width: | Height: | Size: 111 KiB |
@ -9,11 +9,11 @@ Metadata enables you to unlock the value of data assets in the common use cases
|
|||||||
|
|
||||||
OpenMetadata includes the following:
|
OpenMetadata includes the following:
|
||||||
|
|
||||||
* **Metadata schemas** - defines core abstractions and vocabulary for metadata with schemas for Types, Entities, Relationships between entities. This is the foundation of the Open Metadata Standard.
|
* **Metadata schemas** - defines core abstractions and vocabulary for metadata with schemas for Types, Entities, and Relationships between entities. This is the foundation of the Open Metadata Standard.
|
||||||
* **Metadata store** - stores metadata graph that connects data assets, user and tool generated metadata.
|
* **Metadata store** - stores a metadata graph that connects data assets and user and tool generated metadata.
|
||||||
* **Metadata APIs** - for producing and consuming metadata built on schemas for User Interfaces and Integration of tools, systems, and services.
|
* **Metadata APIs** - for producing and consuming metadata built on schemas for User Interfaces and for Integrating tools, systems, and services.
|
||||||
* **Ingestion framework** - a pluggable framework for integrating tools and ingesting metadata to the metadata store. Ingestion framework already supports well know data warehouses - Google BigQuery, Snowflake, Amazon Redshift, and Apache Hive, and databases - MySQL, Postgres, Oracle, and MSSQL.
|
* **Ingestion framework** - a pluggable framework for integrating tools and ingesting metadata to the metadata store. The ingestion framework already supports well-known data warehouses - Google BigQuery, Snowflake, Amazon Redshift, and Apache Hive and databases - MySQL, Postgres, Oracle, and MSSQL.
|
||||||
* **OpenMetadata User Interface** - one single place for users to discover, and collaborate on all data.
|
* **OpenMetadata User Interface** - a central place for users to discover and collaborate on all data.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ Different Connectors require different dependencies, please go through [Connecto
|
|||||||
|
|
||||||
Loads all the Json connectors inside the pipeline directory as cron jobs.
|
Loads all the Json connectors inside the pipeline directory as cron jobs.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Custom run a job
|
### Custom run a job
|
||||||
|
|
||||||
|
@ -1,24 +1,20 @@
|
|||||||
# How to Contribute
|
# How to Contribute
|
||||||
|
|
||||||
Welcome to [OpenMetadata](https://open-metadata.org). Our goal is to build an Open standard for Metadata.
|
Welcome to [OpenMetadata](https://open-metadata.org). Our goal is to build an Open standard for Metadata. We genuinely believe this mission can only be achieved through building a great community.
|
||||||
We genuinely believe this mission can only be achieved through building a great community.
|
|
||||||
|
|
||||||
We ❤️ all contributions, big and small!
|
We ❤️ all contributions, big and small!
|
||||||
|
|
||||||
## Github issues
|
## Github issues
|
||||||
|
|
||||||
Look for issues under [github/issues tab](https://github.com/open-metadata/OpenMetadata/issues) . If you have a feature request or found a bug please file an issue. This will help
|
Look for issues under [github/issues tab](https://github.com/open-metadata/OpenMetadata/issues) . If you have a feature request or found a bug please file an issue. This will help us track and will help community overall as well.
|
||||||
us track and will help community overall as well.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
## Fork Github project
|
## Fork Github project
|
||||||
|
|
||||||
OpenMetadata Github repository can be accessed here [https://github.com/open-metadata/OpenMetadata](https://github.com/open-metadata/OpenMetadata) .
|
OpenMetadata Github repository can be accessed here [https://github.com/open-metadata/OpenMetadata](https://github.com/open-metadata/OpenMetadata) .
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
## Create a branch in your fork
|
## Create a branch in your fork
|
||||||
|
|
||||||
@ -26,8 +22,7 @@ OpenMetadata Github repository can be accessed here [https://github.com/open-met
|
|||||||
git checkout -b ISSUE-200
|
git checkout -b ISSUE-200
|
||||||
```
|
```
|
||||||
|
|
||||||
Make changes. Follow the [Coding Style](./coding-style.md) Guide on best practices and [Build the code & run tests](./build-code-run-tests.md) on how to setup Intellij, Maven
|
Make changes. Follow the [Coding Style](coding-style.md) Guide on best practices and [Build the code & run tests](build-code-run-tests.md) on how to setup Intellij, Maven
|
||||||
|
|
||||||
|
|
||||||
## Push your changes to Github
|
## Push your changes to Github
|
||||||
|
|
||||||
@ -37,21 +32,18 @@ git commit -m "ISSUE-200: Meaningful commit message"
|
|||||||
git push origin HEAD:refs/heads/issue-200
|
git push origin HEAD:refs/heads/issue-200
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## Open a PR
|
## Open a PR
|
||||||
|
|
||||||
1. Go to [https://github.com/open-metadata/OpenMetadata/pulls](https://github.com/open-metadata/OpenMetadata/pulls)
|
1. Go to [https://github.com/open-metadata/OpenMetadata/pulls](https://github.com/open-metadata/OpenMetadata/pulls)
|
||||||
|
2. It should show an option to open a pull request. 
|
||||||
2. It should show an option to open a pull request.
|
|
||||||

|
|
||||||
3. If not, click on "New Pull request"
|
3. If not, click on "New Pull request"
|
||||||

|
|
||||||
4. Select your fork repository and branch
|
|
||||||

|
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
4. Select your fork repository and branch 
|
||||||
5. Click "Create pull request"
|
5. Click "Create pull request"
|
||||||
|
|
||||||
|
|
||||||
## We are here to help
|
## We are here to help
|
||||||
|
|
||||||
Please reach out to us anytime you need any help. [Slack](https://openmetadata.slack.com/join/shared_invite/zt-udl8ris3-Egq~YtJU_yJgJTtROo00dQ#/shared-invite/email) would be fastest way to get a response.
|
Please reach out to us anytime you need any help. [Slack](https://openmetadata.slack.com/join/shared_invite/zt-udl8ris3-Egq~YtJU_yJgJTtROo00dQ#/shared-invite/email) would be fastest way to get a response.
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ We want our users to get the experience of OpenMetadata with the least effort
|
|||||||
|
|
||||||
### To set up your sandbox account:
|
### To set up your sandbox account:
|
||||||
|
|
||||||
#### 1. Login using your Google credentials
|
#### 1. Log in using your Google credentials
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user