- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
make repl_history.jl less racy #37015
Comments
Just use |
Requiring a database or git (which we're trying to reduce and eventually eliminate dependencies on) for REPL history seems a bit excessive. How would one use git for this? |
Sorry, I thought it was obvious that I was joking. 🤷 Next time I'll put in a 😉 . |
That went right over my head 😬 |
I have this problem a few times per day. Other's have the same problem with clusters: #36895 (comment) The thing* I'm working on has two Julia processes on my intel Mac and another three each on a seperate Raspberry Pi. I can't see file locking ever solving this problem. Even if there was a reliable cross-platform (and cross-filesystem?) way to do the locking, it wouldn't be great to have everyone waiting for one node in a cluster to release it's file lock. Perhaps it would be simpler for every process to log to I imaging an eventual consistency scheme for coalescing files where at history loading time:
This could result in duplication if who processes both decided to do deletion at the same time, but exact duplicates of timestamp and command could simply be ignored at load time. @StefanKarpinski, if you would support a PR along these lines I would consider working on it. I can't quite bring myself to use a startup.jl hack like this: #36895 (comment) * the "thing" is a test harness for an embedded industrial control system. The R'Pis simulate sensor inputs and record outputs from the control board. The Mac does test scenario orchestration, log recording and log analysis. Each Julia process has a REPL accessible via tmux for interactive use. Lines 621 to 626 in 7a6336d
|
I do think something like that may be the way to go. I don't love having that |
Possible benefits of
But, just using I sympathise with idea of not exposing people on local file systems to complexity that does not effect them. However, I can' think of any useful way to define "local file system" given the common use of various layers of virtualisation. |
The idea of
I.e. doing the consolidation at the host level at most. For most users this will just be Other related issues: log aggregation & rotation. When does one aggregate logs from multiple PIDs? This has to be done carefully so that multiple Julias trying to do it at the same time don't step all over each other. There's also a question of log rotation — having an endlessly growing log file isn't ideal. Eventually it will be unmanageably large. It might make sense when aggregating logs to also split out really old stuff and only load it on demand. |
Do we know how does bash/zsh/fish/ipython deal with this? |
In zsh you need to set the option |
I appreciate the approach taken by fish shell documented on this issue
It strikes me as a nice balance. It's a simple command which exposes the feature for those that need it, but it avoids adding complexity that would come with an automatic feature. |
We're hearing from users on clusters with shared home directories that their
~/.julia/logs/repl_history.jl
files are frequently corrupted. It would be good to make this less racy, either by doing some file locking with Pidfile or by some other mechanism.The text was updated successfully, but these errors were encountered: