How does OpenMetadata identify the changes and inconsistencies between the metadata and the database? #5477
-
How is the metadata validation process carried out? How are the changes in the column of a table identified? Like a change in the data type, length, or a new column. How does OpenMetadata identify the changes and inconsistencies between the metadata and the database? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The process will be as follows:
OpenMetadata does the validation against existing schema and recognizes this change is a backward incompatible and creates a major version change and updates the schema on OpenMetadata side. So one can look at the versions to see how the schema has evolved and what changed. The priority is always the last definition taken from the database, which is assumed to be the correct one or at least the most recent one. |
Beta Was this translation helpful? Give feedback.
The process will be as follows:
OpenMetadata does the validation against existing sch…