-
Notifications
You must be signed in to change notification settings - Fork 113
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
Rename any mentions to data set #1572
Conversation
Signed-off-by: Merel Theisen <[email protected]>
Signed-off-by: Merel Theisen <[email protected]>
Signed-off-by: Merel Theisen <[email protected]>
Signed-off-by: Merel Theisen <[email protected]>
Signed-off-by: Merel Theisen <[email protected]>
Attaching kedro viz story created - This PR also resolves #1560 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @merelcht , Thank you for this. I see ImageDataSet has not changed its type to ImageDataset. Is there a list of left-over datasets that are yet to be changed ? I see the warnings mention - CSVDataSet, ExcelDataSet, ParquetDataSet, PickleDataSet, PlotlyDataSet, JSONDataSet, MetricsDataSet (which might not be the entire list of changed datasets) |
@tynandebold Yes that is the expected behaviour. We could also keep the references to both datasets with |
@ravi-kumar-pilla I haven't renamed anything inside the |
Hi @merelcht , yes I understand that we haven't renamed any dataset types inside demo-project. But I was confused on why all the dataset types except ImageDataSet are being displayed with a lowercase [s] like below. So, I was asking if there are any pending datasets to be renamed in the kedro-datasets plugin - |
Also, there seems to be an issue with trackingDataset in experiment tracking when using kedro-datasets 1.7.1. I am yet to debug the issue but @merelcht do you think we should fix this in this PR or create a different issue for this ? Thank you |
Yes this fixes it. About the |
Description
Part of kedro-org/kedro#2129
Resolves #1560
Development notes
This started out as just renaming any
DataSet
mentions toDataset
, but then I discovered "tracking" datasets weren't displayed properly in Kedro-Viz anymore.There's a lot of hardcoded references to datasets in kedro-viz which is problematic and the renaming of datasets has surfaced that again. The way the renaming was done is backwards compatible, but not if strings are hardcoded.
Updating all dataset mentions to the new ending of
Dataset
seems to have fixed the problem.Note: I've left the "old" dataset names in place in the demo project to make sure that the old naming still works as well.
QA notes
Checklist
RELEASE.md
file