Use static partition, in case there are already many partitions in target table, Hive will scan them faster before final load, see also this: HIVE Dynamic Partitioning tips
insert overwrite table dss.prblm_mtrc partition (LOAD_DT='2019-01-02') select * from dss.v_prblm_mtrc_stg_etl
If your source table has too many small files, try to reduce them, use concatenate for orc files or use merge during loading source table
Use vectorizing, tune mappers and reducers parallelism: https://stackoverflow.com/a/48487306/2700344
set hive.vectorized.execution.enabled = true;
set hive.vectorized.execution.reduce.enabled = true;
All vectorizing settings are here.
And if you target table contains many already loaded partitions, try to switch off statistics auto gathering, this setting may speed-up loading:
set hive.stats.autogather=false;
Also if your source table is orc and splits calculation takes too long time, try this setting:
hive.exec.orc.split.strategy=BI;
More about ORC strategy: ORC split strategy