-
Notifications
You must be signed in to change notification settings - Fork 961
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Auto-fill in column description based on criteria #870
Comments
From Tao, |
Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 2.5.1 to 2.11.0. - [Release notes](https://github.com/pytest-dev/pytest-cov/releases) - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](pytest-dev/pytest-cov@v2.5.1...v2.11.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 2.5.1 to 2.11.0. - [Release notes](https://github.com/pytest-dev/pytest-cov/releases) - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](pytest-dev/pytest-cov@v2.5.1...v2.11.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
This issue has been automatically closed for inactivity. If you still wish to make these changes, please open a new pull request or reopen this one. |
Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 2.5.1 to 2.11.0. - [Release notes](https://github.com/pytest-dev/pytest-cov/releases) - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](pytest-dev/pytest-cov@v2.5.1...v2.11.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 2.5.1 to 2.11.0. - [Release notes](https://github.com/pytest-dev/pytest-cov/releases) - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](pytest-dev/pytest-cov@v2.5.1...v2.11.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Expected Behavior or Use Case
Often times, there are cases where a column may exist across multiple tables, but it always means and represents the same thing. For example, at Lyft, all event tables had a created_at column that tracked the time when the event record was created.
Such columns in all event tables would have same description. Description is still useful because it can be event time or processing time and describing that was important. Another example is a partition column like ds or dt, and documenting that is useful and applies across multiple tables.
Service or Ingestion ETL
Metadata service
Possible Implementation
From a user-experience perspective,
Scrappy Option #1 is to apply programmatic descriptions on all columns with a certain name or a certain tag.
Scrappy Option #2 is to make the descriptions (regular descriptions, not programmatic ones) read-only for such columns and have this hard-coded description be the read-only description.
Scrappy Option #3 is to seed the description with a hard-coded description based on a criteria.
In a scrappy version, the description would be hardcoded and applied in neo4j. Over the longer term, we could build an experience for such descriptions in a data dictionary.
Example Screenshots (if appropriate):
Context
More details: https://amundsenworkspace.slack.com/archives/CGFBVT23V/p1609999194249500
The text was updated successfully, but these errors were encountered: