Skip to content
Snippets Groups Projects
Commit bb720fd1 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

Task #11220: use sara's round robin dns to get turl. minor improvements in...

Task #11220: use sara's round robin dns to get turl. minor improvements in string replacement using regex
parent f26c04f0
Branches LOFAR-Release-2_22
No related tags found
No related merge requests found
...@@ -13,6 +13,7 @@ from subprocess import Popen, PIPE ...@@ -13,6 +13,7 @@ from subprocess import Popen, PIPE
import socket import socket
import os, sys, getpass import os, sys, getpass
import time import time
import re
import random import random
import math import math
import atexit import atexit
...@@ -38,26 +39,24 @@ class LtacpDestinationExistsException(LtacpException): ...@@ -38,26 +39,24 @@ class LtacpDestinationExistsException(LtacpException):
def getLocalIPAddress(): def getLocalIPAddress():
return hostnameToIp(socket.gethostname()) return hostnameToIp(socket.gethostname())
# converts given srm url of an LTA site into a transport url as needed by gridftp. (Sring replacement based on arcane knowledge.)
def convert_surl_to_turl(surl): def convert_surl_to_turl(surl):
#list of sara doors is based on recent actual transfers using srmcp, which translates the surl to a 'random' turl ''' converts given srm url of an LTA site into a transport url as needed by gridftp.
sara_nodes = ['fly%d' % i for i in range(1, 11)] + \ '''
['by27-%d' % i for i in range(1, 10)] + \ if 'grid.sara.nl' in surl:
['bw27-%d' % i for i in range(1, 10)] + \ #sara provides dynamic hostnames via a round-robin dns. Get a random/dynamic host as provided by them.
['by32-%d' % i for i in range(1, 10)] + \ sara_dyn_hostname = socket.getfqdn(socket.gethostbyname('gridftp.grid.sara.nl'))
['bw32-%d' % i for i in range(4, 10)] + \ return re.sub('srm://srm\.grid\.sara\.nl:?\d*', 'gsiftp://%s:2811' % (sara_dyn_hostname,), surl)
['s35-0%d' % i for i in range(1, 5)] + \
['v40-%d' % i for i in range(8, 11)] + \ if 'lofar-srm.fz-juelich.de' in surl:
['rabbit%d' % i for i in range(1, 4)] host_nr = random.randint(9, 16)
sara_turl = 'gsiftp://%s.grid.sara.nl:2811' % sara_nodes[random.randint(0, len(sara_nodes)-1)] return re.sub('srm://lofar-srm\.fz-juelich\.de:?\d*', 'gsiftp://dcachepool%d.fz-juelich.de:2811' % (host_nr,), surl)
turl = surl.replace("srm://srm.grid.sara.nl:8443",sara_turl, 1)
turl = turl.replace("srm://srm.grid.sara.nl",sara_turl,1) if 'lta-head.lofar.psnc.pl' in surl:
turl = turl.replace("srm://lofar-srm.fz-juelich.de:8443", "gsiftp://dcachepool%d.fz-juelich.de:2811" % (random.randint(9, 16),), 1) host_nr = random.randint(1, 2)
turl = turl.replace("srm://lofar-srm.fz-juelich.de", "gsiftp://dcachepool%d.fz-juelich.de:2811" % (random.randint(9, 16),), 1) return re.sub('srm://lta-head\.lofar\.psnc\.pl:?\d*', 'gsiftp://door0%d.lofar.psnc.pl:2811' % (host_nr,), surl)
turl = turl.replace("srm://srm.target.rug.nl:8444","gsiftp://gridftp02.target.rug.nl/target/gpfs2/lofar/home/srm",1)
turl = turl.replace("srm://srm.target.rug.nl","gsiftp://gridftp02.target.rug.nl/target/gpfs2/lofar/home/srm",1) raise LtacpException('Cannot convert surl to turl. Unknown destination in surl: \'%s\'.' % surl)
turl = turl.replace("srm://lta-head.lofar.psnc.pl:8443", "gsiftp://door0%d.lofar.psnc.pl:2811" % (random.randint(1, 2),), 1)
return turl
def createNetCatCmd(listener, user=None, host=None): def createNetCatCmd(listener, user=None, host=None):
'''helper method to determine the proper call syntax for netcat on host''' '''helper method to determine the proper call syntax for netcat on host'''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment