-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Append pid to spectator filename, if form -M #284
base: master
Are you sure you want to change the base?
Conversation
1 similar comment
Indeed this is nice, though you will lose the perfect control of your spectator file names, for example, the file suffix (maybe it does matter, maybe not). The standard(?) solution is putting PID to the spectator file names, e.g., https://github.com/benruijl/forcer/blob/68a30bfb2aec3672a2f674ca8666bfc970105e24/forcer/forcer-manual.h#L131. I'm not sure if |
Ah, I did not realize that the pid is available inside form. This also suffices. I think in principle |
Hi Josh,
If you look in the file startup.c in the routine ReserveTempFiles and then look for the variable AM.MultiRun
you will see how the -M flag is applied to the tmp files.
Cheers
Jos
… On 20 Jun 2018, at 08:24, jodavies ***@***.***> wrote:
Ah, I did not realize that the pid is available inside form. This also suffices. I think in principle ((int)GetPID())%100000 is not guaranteed to be uniqe, but it is what is used for form's other scratch files so I used it here also.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub <#284 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AFLxEnEtcNdz8hQkemL_NmvdEYJFG5Vbks5t-eqmgaJpZM4UtbZu>.
|
Yes, indeed, this is where I found that By the way, is there any reason the user should have complete control over the name of spectator files, in contrast to the name of all other temp files? |
The reason is that you could have several spectator files at the same time. In that case you have
to know how to address them. Imagine that I were to deal with the bebe and cross topologies
in forcer simultaneaously. Either I have to put the ‘fallout’ into the same spaectator, or each in
their own (as is done now, although we do not do it simultaneously).
I just wanted to leave this possibility of having more than one.
Jos
… On 20 Jun 2018, at 11:14, jodavies ***@***.***> wrote:
Yes, indeed, this is where I found that ((int)GetPID())%100000 was used for this mode. I simply copied the convention also for spectator files.
By the way, is there any reason the user should have complete control over the name of spectator files, in contrast to the name of all other temp files?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub <#284 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AFLxEp73v17IsTznGsoT8IeD8nY0oW7aks5t-hKQgaJpZM4UtbZu>.
|
I think this is not the reason why the user needs to have the full control of "real" file names. What the user needs is to have an unique name for each spectator expression, not for actual spectator file. In principle FORM could map logical spectator names into real unique file names. |
Aside from the user not being able to control the file extension (if that is really important I suppose the PID could be inserted before the extension?) is there any reason not to merge this one? Given Issue #112 , I would actually think it is not a bad idea to just force |
I feel it's OK, but not enough to push it forward for me. I would prefer to keep file extensions, but it needs some work: what if the case like In the first place, the root of the problem is why Any input from others?
Maybe we need another issue focusing on the |
Right, giving FORM full control over the filenames, such that it can take its "usual precautions" also solves this issue. |
If any member with writing privileges to the repository wants to merge this PR, then I won't oppose it. It is true that the PR is one of the practical solutions that can be implemented easily and simply. |
Any further thoughts on this one? I think relying on the user to put the PID in the spectator filename themselves in the form script when necessary is a recipe for problems in the end. FORM5 could be the time to take user control of the spectator filenames away completely. |
Maybe no one will complain about this change to append PID to the names of spectator files. But, a related question: can checkpoints still be recovered when Edit: sort files are not needed to recover, if I understand correctly. |
Good question. The sort files can always be called various names depending on whether form sees an "xxx" file already. I will try to test -- I have never used the checkpoint mechanism before. |
Make spectators nicer to use when running multiple concurrent jobs. We don't have to guarantee unique temp directories with the -M option.