-
Notifications
You must be signed in to change notification settings - Fork 7
Description
Mejorar validaciones en globalSettings
Actualmente lo mínimo es lo siguiente:
val Global: huemul_GlobalPath = new huemul_GlobalPath()
Global.GlobalEnvironments = "production, experimental"
Global.CONTROL_Setting.append(new huemul_KeyValuePath("production",s"file.txt"))
Global.IMPALA_Setting.append(new huemul_KeyValuePath("production",s"file.txt"))
Global.TEMPORAL_Path.append(new huemul_KeyValuePath("production",s"/usr/production/temp/"))
Global.DQError_Path.append(new huemul_KeyValuePath("production",s"/usr/production/temp/"))
Global.DQError_DataBase.append(new huemul_KeyValuePath("production",s"dqerror_database"))
Global.setValidationLight()
Se requiere excluir de lo mínimo lo siguiente
Global.CONTROL_Setting.append(new huemul_KeyValuePath("production",s"file.txt"))
Global.IMPALA_Setting.append(new huemul_KeyValuePath("production",s"file.txt"))
Adicionalmente, revisar si es posible mejorar la asignación de la forma
- new huemul_KeyValuePath("production",s"file.txt")
a una forma más sencilla.