def populate_burst_disk_usage(bursts):
     """
     Adds a disk_usage field to each burst object.
     The disk usage is computed as the sum of the datatypes generated by a burst
     """
     sizes = dao.compute_bursts_disk_size([b.id for b in bursts])
     for b in bursts:
         b.disk_size = format_bytes_human(sizes[b.id])
Beispiel #2
0
 def populate_burst_disk_usage(bursts):
     """
     Adds a disk_usage field to each burst object.
     The disk usage is computed as the sum of the datatypes generated by a burst
     """
     sizes = dao.compute_bursts_disk_size([b.id for b in bursts])
     for b in bursts:
         b.disk_size = format_bytes_human(sizes[b.id])