Closed griznog closed 5 years ago
Hi griznog,
Thanks for providing the code for your changes. So you just want to be able to specify the port or socket.
I'll add it to our TODO list, but I should note that I do not plan on maintaining the 1.09.x branch of VNTRseek apart from simple bug fixes as we have moved on to using SQLite in our development branch. Using SQLite saved us going over the network as well and brought on a whole set of other advantages that we have found useful.
Best, Yozen
Switching to SQLite is by far the preferred solution, no need to change any older releases. I've installed 1.10 rc2 and am making some test runs with it now. Thanks for the quick response!
Best,
griznog
Be warned that there are dragons there! I'm actively testing it and things may go wrong or be wrong!
But if you do encounter any issues, please let me know!
Hi,
I'm trying to run vntrseek with multiple copies on each node in our cluster and across multiple nodes. To do this we are running one mysqld per vntrseek job, which requires using higher level ports. In most places this works as is by specifying
HOST=127.0.0.1:$PORT
in the config, but it breaks the system() calls to the mysql client in vntrseek.pl. To work around this I used these changes:
Could support for specifying the port be added and, bonus if we could specify a socket and run mysql with skip-network.
griznog