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
Description
string conversion to time might be costly operation which could be moved to private final class member field. the same goes for the timeFormat which is unlikely to differ across the calls to the Ctime udf.
Notes:
timeformat is final and set in AbstractConvertStep and can be moved to the class
Conversion could possibly be done using functions.from_unixtime from spark without the need to use custom function
time format is non-standard we should consider switching to use ISO8061
The text was updated successfully, but these errors were encountered:
Description
string conversion to time might be costly operation which could be moved to private final class member field. the same goes for the timeFormat which is unlikely to differ across the calls to the Ctime udf.
Notes:
AbstractConvertStep
and can be moved to the classfunctions.from_unixtime
from spark without the need to use custom functionThe text was updated successfully, but these errors were encountered: