-
Notifications
You must be signed in to change notification settings - Fork 998
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
Ability to pass runner option during ingestion job submission #50
Comments
The CLI command would look something like this? |
I don't have the full context on these options. Can you point to an example of how it is currently done? Or at least the code? |
In core's application.properties file we have
|
Thanks @pradithya, that makes a lot more sense. I agree that this is a problem we should think of solving. I guess we need to decide whether exposing that at an Is it only exposed to the user through the CLI and Python SDK? For the CLI, would it be better to use Helm style |
These are ingestion options not just runner options right? Theoretically you might want to pass in things like the temp directory or metric sinks. |
Yes |
This issue isn't relevant any more due to changes in Feast 0.3.0. |
Runner option is currently hardcoded in deployment (specifically core's deployment). Some ingestion jobs might need to override those value without redeploying feast.
One way to do it is by adding
runnerOptions
field in theSubmitImportJobRequest
as follow:This runnerOptions is then used to override default runner option and then passed to the runner.
thought? @woop @zhilingc
The text was updated successfully, but these errors were encountered: