azure data lake - Usql - Job failed due to internal system error - NM_CANNOT_LAUNCH_JM -


i following system error,

error in activity: [{"errorid":"e_system_nm_nmcannotlaunchjm" ,"name":"nm_cannot_launch_jm" ,"severity":"error" ,"source":"system" ,"component":"nm" ,"message":"job failed due internal system error." ,"details":"" ,"description":"","resolution":"","helplink":"","innererror":null}].

the error not intermittent. copy file 1 location another. says internal system error - ideas?

following usql script,

declare @in string = "20160229"; declare @year string = "2016"; declare @month string = "02"; declare @day string = "29"; declare @filesource string = "/outputs/folder1/" + @year + @"/" + @month + @"/" + @day + @"/file." + @in;  @rs0 =     extract col1 string,             col2 string,             col3 string     @filesource     using extractors.csv();  @rs1 =     select col1,            col2,            col3,            @in date     @rs0  declare @filedestination string = "/outputs/folder2/test.csv";  output @rs1 @filedestination using outputters.text( quoting : false, delimiter : '|'); 

i facing same issue today on activity running fine previously. after hour, automatically resolved. looks internal service issue. try again, hope resolved you!


Comments

Popular posts from this blog

How to check data type in C++? -

javascript - Is getTimezoneOffset() stable during daylight saving transition? -

formula - R: how to pass in a reference to the variable in glm or lm? -