I think so far, every parallelized tool I’ve discovered in the P section has been new to me.
pssh is new to me too, even if it dates back to at least 2009, if not further.
pssh is a collection of ssh-oriented tools written in Python and mimicking a lot of the standard openssh-style fare. There is a strict pssh
application, a psshscp
tool for scp-ish adventures, a prsync
utility and some others, along with a library to assist with creating new tools.
My escapades with the pssh tools was a little less than successful, something I am always willing to blame on myself first.
Part of my difficulty may lie in that the flag options for prsync
(and I use that only as an example; some of the other tools also gave difficulty) are very different from vanilla rsync. prsync, as best I can tell, also demands that you declare a host and a user in the command or face error messages.
The odd thing being, if I tried to just sync two folders in my home directory, a la
prsync -r -h kmandla@127.0.0.1 -l kmandla source/ /home/kmandla/dest/
I met with an error exit code of 255 — which I can’t seem to track down in the man pages or on the web site.
Some other issues too; there were slight inconsistencies in the documentation. The man page for psshscp
is titled “pscp.” The man page for pslurp
says it’s an application to kill parallelized processes, but the extended description talks about copying and source and destinations and so forth. I admit I was confused. (All this in the Arch version, by the way.)
And beyond that — and I’m not afraid to display my ignorance here — I’m not sure if “parallelized” means “optimized for multiprocessor machines,” as was the case with pbzip2 and pigz, or “optimized for high bandwidth connections,” since most of these are aimed at networking tasks. For what I can tell.
It seems it should be the latter … or at least that’s what I’d be looking for. I’m probably splitting hairs here, but I can say that most of my bottlenecks when I use things like rsync or ssh are not at the processor. And that’s all the more I’ll say, at risk of embarrassing myself.
I’ll let you give them a try, and see if they behave any better for you, or if their focus is a little more clear. It’s good to know they’re available, and maybe they’ll brighten someone’s day. 😉