-
Notifications
You must be signed in to change notification settings - Fork 57
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
build(deps): Included data job version in vdk-core/src/vdk/internal/builtin_plugins/run/job_input.py #3000
base: main
Are you sure you want to change the base?
build(deps): Included data job version in vdk-core/src/vdk/internal/builtin_plugins/run/job_input.py #3000
Conversation
for more information, see https://pre-commit.ci
@s0sharma thanks for this contribution!!! |
@@ -182,6 +183,9 @@ def get_execution_properties(self) -> dict: | |||
"pa__job_start_unixtime": str(int(start_time.timestamp())), | |||
"pa__job_start_ts_expr": f"cast ({start_time.timestamp()} as timestamp)", | |||
"pa__op_id": self.__statestore.get(CommonStoreKeys.OP_ID), | |||
"pa__job_version": self.__statestore.get( |
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.
Can you be sure that it is always there?
Is it there even when ppl run a job locally?
Hi @s0sharma , would you be able to complete this change? Do you have any questions? |
As part of job_input.get_execution_properties(), I added a way to get the data job version.
Now you can see the data job version too.