-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #652 from lukemartinlogan/dev
Fix issue regarding RPC unscalability. Improved RAM management for task and data allocations.
- Loading branch information
Showing
30 changed files
with
616 additions
and
362 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,4 +83,38 @@ docker commit hermes_deps_c lukemartinlogan/hermes_deps | |
docker push lukemartinlogan/hermes_deps | ||
docker stop /hermes_deps_c | ||
docker rm /hermes_deps_c | ||
``` | ||
|
||
## Remote Debug | ||
|
||
### On personal machine | ||
``` | ||
[email protected] | ||
local_port=4000 | ||
remote_port=4000 | ||
ssh -L ${local_port}:localhost:${remote_port} -fN ${ares_node} | ||
local_port=4001 | ||
remote_port=4001 | ||
ssh -L ${local_port}:localhost:${remote_port} -fN ${ares_node} | ||
``` | ||
|
||
On Ares | ||
``` | ||
ares_node=ares-comp-27 | ||
local_port=4000 | ||
remote_port=4000 | ||
ssh -L ${local_port}:localhost:${remote_port} -fN ${ares_node} | ||
local_port=4001 | ||
remote_port=4001 | ||
ssh -L ${local_port}:localhost:${remote_port} -fN ${ares_node} | ||
``` | ||
|
||
Find PIDs of processes using ports | ||
``` | ||
lsof -i :4000 | ||
lsof -i :4001 | ||
``` |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.