-
Notifications
You must be signed in to change notification settings - Fork 70
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
[SYNPY-1571] Adds Dataset
Model & Introduces Composition Model for Table
/View
-like Classes
#1175
Conversation
…ges are made (#1176) * Support waiting for evetually consistent view after changes are made
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.
This is some seriously great work here! Thanks so much for your attention to these changes.
I know we're still working to resolve the integration test issues, but the bulk of all the changes here are good to go. I also know there are a few items that I've fixed in #1181 that will be merged into develop after this PR.
Problem:
We do not currently have an OOP Class representing the Synapse API Dataset Model. Additionally, the nature of the Synapse API Models for
Table
-like objects is such that our previous approach ofTable
classes being simply extended to include the functionality that is expected ofView
-like objects did not work well in practice.Solution:
This PR finishes the
Dataset
OOP model class. While implementing the methods for this class, we needed to add functionality to handle the default columns thatDataset
andEntityView
objects have when represented as a Table on Synapse. Logic within theAsynchronousCommunicator
class was also updated to handle asynchronous jobs in the Synapse backend failing gracefully. All necessary documentation for theDataset
model was added.This PR also introduces a composition-based approach to creating all
Table
-like classes by splitting up the major pieces ofTable
andView
functionality into individual Mixin classes. These Mixins can then be used along with previously implemented Mixins (i.e.AsynchronousCommunicator
andAccessControllable
) to create our final OOP models forTable
,Dataset
,EntityView
, etc. with minimal code and test duplication. The logic that was previously apart ofTableOperator
has been redistributed into these Mixins. One strength of this approach is that the Mixins can be unit tested once and then the classes that inherit them only need to be tested for their unique methods.Testing:
All needed unit and integration tests were added/updated. All of the functionality included with the
Dataset
class (synchronous interface) can be tested by running the included demo script.Notes:
I went ahead and bumped up all usage of
ubuntu-20.04
toubuntu-22.04
before that GH runner reaches EOL on April 1st.