-
Notifications
You must be signed in to change notification settings - Fork 64
Modify spaceflights-pyspark starter #300
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
base: main
Are you sure you want to change the base?
Changes from 5 commits
a51cd2d
4831624
4752078
283514a
9d608d2
02f1cdb
61ebaff
006ad71
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,10 +3,9 @@ | |
| https://docs.kedro.org/en/stable/kedro_project_setup/settings.html.""" | ||
|
|
||
| # Instantiated project hooks. | ||
| from {{cookiecutter.python_package}}.hooks import SparkHooks # noqa: E402 | ||
|
|
||
| # Hooks are executed in a Last-In-First-Out (LIFO) order. | ||
| HOOKS = (SparkHooks(),) | ||
| HOOKS = () | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can remove the
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fully agree, I thought I removed them, fixed it now. |
||
|
|
||
| # Installed plugins for which to disable hook auto-registration. | ||
| # DISABLE_HOOKS_FOR_PLUGINS = ("kedro-viz",) | ||
|
|
||
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.
What about when the input data isn't coming from a local place? I'd imagine that if you have massive data you want all of it to be handled by Spark and not just the intermediate results.