You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I noticed that the value checks only occur if the config was set during startup (e.g.: via --conf on the command-line). The check will not occur if the config is later set, e.g.: spark.conf.set(...)
To fix this, I think we need to register our new configs with Spark's SQLConf, which means we probably need to use their ConfigBuilder rather than our own.
The text was updated successfully, but these errors were encountered:
* case when improvement: avoid copy_if_else
Signed-off-by: Chong Gao <[email protected]>
* � This is the 1st commit message:
case when improvement: avoid copy_if_else
Signed-off-by: Chong Gao <[email protected]>
� This is the commit message NVIDIA#2:
Add test case
Add test case
Fix code format
Use Table.gather instead of a custom kernel
Signed-off-by: Chong Gao <[email protected]>
---------
Signed-off-by: Chong Gao <[email protected]>
Co-authored-by: Chong Gao <[email protected]>
Describe the bug
I noticed that the value checks only occur if the config was set during startup (e.g.: via
--conf
on the command-line). The check will not occur if the config is later set, e.g.:spark.conf.set(...)
To fix this, I think we need to register our new configs with Spark's SQLConf, which means we probably need to use their ConfigBuilder rather than our own.
The text was updated successfully, but these errors were encountered: