Hi Team, i’m running into an issue trying to ingest glossary terms using YML file to datahub 0.15.1, the same file was working with 0.10.1 datahub
Error:
source
value is not a valid dict (type=type_error.dict)
nodes
extra fields not permitted (type=value_error.extra)
owners
extra fields not permitted (type=value_error.extra)
version
extra fields not permitted (type=value_error.extra)```
The error you’re encountering suggests that there might be an issue with the structure of your YAML file or the way it’s being processed by the ingestion pipeline. Here are a few steps to troubleshoot and resolve the issue:
Validate YAML Syntax: Make sure your YAML file is correctly formatted. YAML is sensitive to indentation and structure, so any misalignment can cause errors.
Check for Extra Fields: The error message indicates that there are extra fields (nodes, owners, version) that are not permitted. Double-check your YAML file to ensure that these fields are correctly placed and not duplicated or misplaced.
Version Compatibility: Ensure that the version of DataHub you are using is compatible with the YAML schema. The documentation provided is for version 0.13.1, and there might be differences in version 0.15.1.
Would you like more detailed steps or further assistance with a specific part of the process?
Hi, how did my answer work out for you? Need any more assistance? You can also tag <@U07FV3UHE4D> to let your fellow community members know you’re still looking for guidance.