Using the ecl at the end of this post (copied from the playground) - I copied the ecl into a builder window. On the 160 cluster, I selected HTHOR_160 and hit submit. The platform created an "L" workunit (not sure why it was local). When I clicked on the Lworkunit (green check), the IDE closed.
The error log shows the following error (1+1 shows the same errors, but clicking the workunit opens eclwatch):
SEVERE: ERROR: API = CreateProcess. error code = 267. message = The directory name is invalid. . cmdProcess.cpp(224) SEVERE: ERROR: API = CloseHandle. error code = 6. message = The handle is invalid.
//NOTE: This example must be run on HThor//NOTE: This example must be run on HThorRec := RECORD,MAXLENGTH(4096) STRING1 Letter; UNSIGNED1 DS;END; ds1 := DATASET([{'A',1},{'B',1},{'C',1},{'D',1},{'E',1}],Rec);ds2 := DATASET([{'A',2},{'B',2},{'h',2},{'I',2},{'J',2}],Rec);ds3 := DATASET([{'B',3},{'C',3},{'M',3},{'N',3},{'O',3}],Rec); SetDS := [ds1,ds2,ds3]; j1 := MERGEJOIN(SetDS, STEPPED(LEFT.Letter=RIGHT.Letter), SORTED(Letter));j2 := MERGEJOIN(SetDS, STEPPED(LEFT.Letter=RIGHT.Letter), SORTED(Letter),MOFN(3,4));OUTPUT(j1);OUTPUT(j2);
Conclusion
None
Activity
Show:
Stuart Ort September 18, 2019 at 1:29 PM
Today I am unable to recreate the IDE closing. If I create a new profile, then the workunit gets created (W). If I use an old profile configuration, the workunit gets created as a local (L) and fails (i don't have a compiler installed yet on my new machine). Not sure why the old profile thinks I want to create the workunit local, but this issue can be rejected. If I can recreate the issue we can reopen it
Fixed
Pinned fields
Click on the next to a field label to start pinning.
Using the ecl at the end of this post (copied from the playground) - I copied the ecl into a builder window. On the 160 cluster, I selected HTHOR_160 and hit submit. The platform created an "L" workunit (not sure why it was local). When I clicked on the Lworkunit (green check), the IDE closed.
The error log shows the following error (1+1 shows the same errors, but clicking the workunit opens eclwatch):
SEVERE: ERROR: API = CreateProcess.
error code = 267.
message = The directory name is invalid.
.
cmdProcess.cpp(224)
SEVERE: ERROR: API = CloseHandle.
error code = 6.
message = The handle is invalid.
//NOTE: This example must be run on HThor//NOTE: This example must be run on HThorRec := RECORD,MAXLENGTH(4096) STRING1 Letter; UNSIGNED1 DS;END; ds1 := DATASET([{'A',1},{'B',1},{'C',1},{'D',1},{'E',1}],Rec);ds2 := DATASET([{'A',2},{'B',2},{'h',2},{'I',2},{'J',2}],Rec);ds3 := DATASET([{'B',3},{'C',3},{'M',3},{'N',3},{'O',3}],Rec);
SetDS := [ds1,ds2,ds3];
j1 := MERGEJOIN(SetDS, STEPPED(LEFT.Letter=RIGHT.Letter), SORTED(Letter));j2 := MERGEJOIN(SetDS, STEPPED(LEFT.Letter=RIGHT.Letter), SORTED(Letter),MOFN(3,4));OUTPUT(j1);OUTPUT(j2);