-
Notifications
You must be signed in to change notification settings - Fork 1
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
RLG-3595 rialto v2 #12
Conversation
#### Override list element | ||
You can refer to list elements by their index (starting with 0) | ||
```python | ||
overrides={"runner.mail.to[1]": "[email protected]"} |
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.
maybe confusing to say start at 0 but use 1 as the example :P also do you REALLY need to state starting index?
### PysparkFeatureLoader | ||
|
||
This class needs to be instantiated with an active spark session, data loader and a path to the metadata schema (in the format of "catalog_name.schema_name"). | ||
|
||
```python | ||
from rialto.loader import PysparkFeatureLoader | ||
|
||
feature_loader = PysparkFeatureLoader(spark= spark_instance, data_loader= data_loader_instance, metadata_schema= "catalog.schema") | ||
feature_loader = PysparkFeatureLoader(spark= spark_instance, feature_schema="catalog.schema", metadata_schema= "catalog.schema2", date_column="information_date") |
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.
looks like you removed the databricks reference explicitly to something more generic, but you carrying the concept of catalog, which is databricks specific
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.
obviously this carries through to the rest of the changes too
ie you reference pysparkfeature loader and not toegther with DatabricksLoader anymore
No description provided.