X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sm.py;h=841fb8f6e38569de8ab294725e28e47c6c7746d6;hb=f8f0f1cf62d7f4a11ebc648fcaf8c2231c05619e;hp=d8a0aca2aac67a71e082b0a422086f1aae47b242;hpb=75db8a1a1e14adc7715c452fab87e45f942d425b;p=nodemanager.git diff --git a/sm.py b/sm.py index d8a0aca..841fb8f 100644 --- a/sm.py +++ b/sm.py @@ -34,12 +34,12 @@ DEFAULT_ALLOCATION = { 'net_i2_min_rate': bwmin / 1000, # kbps 'net_i2_max_rate': bwmax / 1000, # kbps 'net_i2_share': 1, # proportional share - 'net_max_kbyte' : 5662310, #Kbyte - 'net_thresh_kbyte': 4529848, #Kbyte - 'net_i2_max_kbyte': 17196646, - 'net_i2_thresh_kbyte': 13757316, + 'net_max_kbyte' : 10546875, #Kbyte + 'net_thresh_kbyte': 9492187, #Kbyte + 'net_i2_max_kbyte': 31640625, + 'net_i2_thresh_kbyte': 28476562, # disk space limit - 'disk_max': 5000000, # bytes + 'disk_max': 10000000, # bytes # capabilities 'capabilities': '', # IP addresses @@ -54,7 +54,7 @@ DEFAULT_ALLOCATION = { start_requested = False # set to True in order to request that all slivers be started @database.synchronized -def GetSlivers(data, fullupdate=True): +def GetSlivers(data, config = None, plc=None, fullupdate=True): """This function has two purposes. One, convert GetSlivers() data into a more convenient format. Two, even if no updates are coming in, use the GetSlivers() heartbeat as a cue to scan for expired @@ -92,6 +92,7 @@ def GetSlivers(data, fullupdate=True): # convert attributes field to a proper dict attr_dict = {} for attr in rec.pop('attributes'): attr_dict[attr['tagname']] = attr['value'] + rec.setdefault("attributes", attr_dict) # squash keys keys = rec.pop('keys')