Skip to content
  • Leigh B. Stoller's avatar
    Add a usemodelnet slot to the experiments table to indicate · b6707a07
    Leigh B. Stoller authored
           that an experiment prefers to use modelnet for traffic shaping.
           At some future time maybe we can mix modelnet with delay nodes,
           but please do not hold your breath waiting.
    
    	alter table experiments add usemodelnet tinyint(1) NOT NULL \
    		default '0' after useprepass;
    
           Add modelnet_cores and modelnet_edges variables to hold user
           tunable number of physical core nodes and edge nodes to throw
           at a virtual topology.
    
    	alter table experiments add modelnet_cores tinyint(4) unsigned \
    		NOT NULL default '0' after usemodelnet;
            alter table experiments add modelnet_edges tinyint(4) unsigned \
    		NOT NULL default '0' after modelnet_cores;
    
           Add ismodelnet and isphantom slots to node_types table. ismodelnet
           is set for modelnet nodes (which are also going to be isvirt).  Add
           isphantom to mark nodes that do no get underlying physical nodes;
           there will be an entry in the reserved t...
    b6707a07