Enabling Distributed Processing - #61
Open
markmac99 wants to merge 279 commits into
Open
Conversation
and master mode remote data processing
Contributor
Author
|
ps - thanks for finding time to review this. When you've stared at it for as long as i have, you stop seeing the bugs :) |
Contributor
|
Absolutely, it's a monumental piece of work and a second pair of eyes is always helpful :) |
…nd branch crashes." reported by Denis Vida
return false if unable to add Trajectory; return false if traj_id is none and attempting to mark traj deleted
…rted on py3.11 or later
Reverse merge ongoing changes to alphabeta and rebound in upstream
bring upstream changes into my branch
avoid unnecessary error messages from Rebound when running CorrelateR…
Contributor
Author
|
@dvida removing previous comment as i think i just figured out a solution. I'll pass an optional "parent logger" as a parameter to the constructor of Trajectory(). If thats None, then i'll create a console-only logger within Trajectory.py. If the parent logger is not None, then I'll use it. I think this will work, but need to test it from a few places. |
Quieten rebound
Merge upstream master changes into my branch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
An upgrade to the RMS solver, CorrelateRMS, to enable distributed processing across multiple servers. To assist with this the first step has been split into two, one to create candidates and one to perform initial simple solutions.
This PR also replaces the JSON database with SQLite which is necessary to enable distributed processing and also brings performance benefits. The PR adds two new commandline arguments, one to control how much data to retain in the databases, and one to post-fix the log name with the phase name eg correlate_rms_20260101_12345_cands.log. This is to ensure each phase's logfile is uniquely named and to make it easier to monitor and debug.