[hg] galaxy 3111: Fixed a bug in cloud store update. Also, added...
details: http://www.bx.psu.edu/hg/galaxy/rev/b70e23d80a75 changeset: 3111:b70e23d80a75 user: Enis Afgan <afgane@gmail.com> date: Thu Nov 19 12:56:24 2009 -0500 description: Fixed a bug in cloud store update. Also, added method comments to EC2 cloud provider implementation class. diffstat: lib/galaxy/cloud/providers/ec2.py | 90 ++++++++++++++++++++--------- lib/galaxy/cloud/providers/eucalyptus.py | 32 +++++----- templates/cloud/list_images.mako | 2 + 3 files changed, 81 insertions(+), 43 deletions(-) diffs (316 lines): diff -r 53de6aea6445 -r b70e23d80a75 lib/galaxy/cloud/providers/ec2.py --- a/lib/galaxy/cloud/providers/ec2.py Wed Nov 18 16:18:09 2009 -0500 +++ b/lib/galaxy/cloud/providers/ec2.py Thu Nov 19 12:56:24 2009 -0500 @@ -94,13 +94,16 @@ log.info( "EC2 cloud manager stopped" ) def put( self, uci_wrapper ): - # Get rid of UCI from state description + """ + Add uci_wrapper object to the end of the request queue to be handled by + this cloud provider. + """ state = uci_wrapper.get_uci_state() uci_wrapper.change_state( state.split('U')[0] ) # remove 'UCI' from end of state description (i.e., mark as accepted and ready for processing) self.queue.put( uci_wrapper ) def run_next( self ): - """Run the next job, waiting until one is available if necessary""" + """Process next request, waiting until one is available if necessary.""" cnt = 0 while 1: @@ -125,7 +128,7 @@ def get_connection( self, uci_wrapper ): """ - Establishes EC2 cloud connection using user's credentials associated with given UCI + Establishes cloud connection using user's credentials associated with given UCI """ log.debug( 'Establishing %s cloud connection.' % self.type ) provider = uci_wrapper.get_provider() @@ -152,7 +155,10 @@ def check_key_pair( self, uci_wrapper, conn ): """ - Generate key pair using user's credentials + Check if a key pair associated with this UCI exists on cloud provider. + If yes, return key pair name; otherwise, generate a key pair with the cloud + provider and, again, return key pair name. + Key pair name for given UCI is generated from UCI's name and suffix '_kp' """ kp = None kp_name = uci_wrapper.get_name().replace(' ','_') + "_kp" @@ -200,6 +206,7 @@ return None def create_key_pair( self, conn, kp_name ): + """ Initiate creation of key pair under kp_name by current cloud provider. """ try: return conn.create_key_pair( kp_name ) except boto.exception.EC2ResponseError, e: @@ -226,8 +233,8 @@ def create_uci( self, uci_wrapper ): """ - Creates User Configured Instance (UCI). Essentially, creates storage volume on cloud provider - and registers relevant information in Galaxy database. + Create User Configured Instance (UCI) - i.e., create storage volume on cloud provider + and register relevant information in local Galaxy database. """ conn = self.get_connection( uci_wrapper ) if uci_wrapper.get_uci_availability_zone()=='': @@ -279,8 +286,11 @@ def delete_uci( self, uci_wrapper ): """ - Deletes UCI. NOTE that this implies deletion of any and all data associated + Delete UCI - i.e., delete all storage volumes associated with this UCI. + NOTE that this implies deletion of any and all data associated with this UCI from the cloud. All data will be deleted. + Information in local Galaxy database is marked as deleted but not actually removed + from the database. """ conn = self.get_connection( uci_wrapper ) vl = [] # volume list @@ -318,7 +328,8 @@ def snapshot_uci( self, uci_wrapper ): """ - Creates snapshot of all storage volumes associated with this UCI. + Initiate creation of a snapshot by cloud provider for all storage volumes + associated with this UCI. """ if uci_wrapper.get_uci_state() != uci_states.ERROR: conn = self.get_connection( uci_wrapper ) @@ -362,7 +373,7 @@ def start_uci( self, uci_wrapper ): """ - Starts instance(s) of given UCI on the cloud. + Start instance(s) of given UCI on the cloud. """ if uci_wrapper.get_uci_state() != uci_states.ERROR: conn = self.get_connection( uci_wrapper ) @@ -461,7 +472,7 @@ def stop_uci( self, uci_wrapper): """ - Stops all of cloud instances associated with given UCI. + Stop all of cloud instances associated with given UCI. """ conn = self.get_connection( uci_wrapper ) @@ -543,11 +554,15 @@ def update( self ): """ - Runs a global status update on all instances that are in 'running', 'pending', or 'shutting-down' state. - Also, runs update on all storage volumes that are in 'in-use', 'creating', or 'None' state. + Run status update on all instances that are in 'running', 'pending', or 'shutting-down' state. + Run status update on all storage volumes whose status is 'in-use', 'creating', or 'None'. + Run status update on all snapshots whose status is 'pending' or 'delete' + Run status update on any zombie UCIs, i.e., UCI's that is in 'submitted' state for an + extended period of time. + Reason behind this method is to sync state of local DB and real-world resources """ - log.debug( "Running general status update for EC2 UCIs..." ) + log.debug( "Running general status update for %s UCIs..." % self.type ) # Update instances instances = self.sa_session.query( model.CloudInstance ) \ .filter( or_( model.CloudInstance.table.c.state==instance_states.RUNNING, @@ -610,7 +625,11 @@ self.process_zombie( z_inst ) def update_instance( self, inst ): - + """ + Update information in local database for given instance as it is obtained from cloud provider. + Along with updating information about given instance, information about the UCI controlling + this instance is also updated. + """ # Get credentials associated wit this instance uci_id = inst.uci_id uci = self.sa_session.query( model.UCI ).get( uci_id ) @@ -683,6 +702,11 @@ return None def update_store( self, store ): + """ + Update information in local database for given storage volume as it is obtained from cloud provider. + Along with updating information about given storage volume, information about the UCI controlling + this storage volume is also updated. + """ # Get credentials associated wit this store uci_id = store.uci_id uci = self.sa_session.query( model.UCI ).get( uci_id ) @@ -705,6 +729,7 @@ # Update store status in local DB with info from cloud provider if len(vl) > 0: try: + log.debug( "Storage volume '%s' current status: '%s'" % (store.volume_id, vl[0].status ) ) if store.status != vl[0].status: # In case something failed during creation of UCI but actual storage volume was created and yet # UCI state remained as 'new', try to remedy this by updating UCI state here @@ -721,18 +746,19 @@ store.status = vl[0].status self.sa_session.add( store ) self.sa_session.flush() - if store.inst.instance_id != vl[0].instance_id: - store.inst.instance_id = vl[0].instance_id - self.sa_session.add( store ) - self.sa_session.flush() - if store.attach_time != vl[0].attach_time: - store.attach_time = vl[0].attach_time - self.sa_session.add( store ) - self.sa_session.flush() - if store.device != vl[0].device: - store.device = vl[0].device - self.sa_session.add( store ) - self.sa_session.flush() + if store.inst != None: + if store.inst.instance_id != vl[0].instance_id: + store.inst.instance_id = vl[0].instance_id + self.sa_session.add( store ) + self.sa_session.flush() + if store.attach_time != vl[0].attach_time: + store.attach_time = vl[0].attach_time + self.sa_session.add( store ) + self.sa_session.flush() + if store.device != vl[0].device: + store.device = vl[0].device + self.sa_session.add( store ) + self.sa_session.flush() except boto.exception.EC2ResponseError, e: err = "Updating status of volume(s) from cloud failed for UCI '"+ uci.name + "' during general status update: " + str( e ) log.error( err ) @@ -753,6 +779,11 @@ self.sa_session.flush() def update_snapshot( self, snapshot ): + """ + Update information in local database for given snapshot as it is obtained from cloud provider. + Along with updating information about given snapshot, information about the UCI controlling + this snapshot is also updated. + """ # Get credentials associated wit this store uci_id = snapshot.uci_id uci = self.sa_session.query( model.UCI ).get( uci_id ) @@ -799,6 +830,9 @@ self.sa_session.flush() def delete_snapshot( self, snapshot ): + """ + Initiate deletion of given snapshot from cloud provider. + """ if snapshot.status == snapshot_status.DELETE: # Get credentials associated wit this store uci_id = snapshot.uci_id @@ -845,7 +879,7 @@ def process_zombie( self, inst ): """ - Attempt at discovering if starting an instance was successful but local database was not updated + Attempt at discovering if starting a cloud instance was successful but local database was not updated accordingly or if something else failed and instance was never started. Currently, no automatic repairs are being attempted; instead, appropriate error messages are set. """ @@ -921,7 +955,7 @@ def get_connection_from_uci( self, uci ): """ - Establishes and returns connection to cloud provider. Information needed to do so is obtained + Establish and return connection to cloud provider. Information needed to do so is obtained directly from uci database object. """ log.debug( 'Establishing %s cloud connection' % self.type ) diff -r 53de6aea6445 -r b70e23d80a75 lib/galaxy/cloud/providers/eucalyptus.py --- a/lib/galaxy/cloud/providers/eucalyptus.py Wed Nov 18 16:18:09 2009 -0500 +++ b/lib/galaxy/cloud/providers/eucalyptus.py Thu Nov 19 12:56:24 2009 -0500 @@ -94,7 +94,7 @@ def put( self, uci_wrapper ): """ - Adds uci_wrapper object to the end of the request queue to be handled by + Add uci_wrapper object to the end of the request queue to be handled by this cloud provider. """ state = uci_wrapper.get_uci_state() @@ -536,7 +536,7 @@ Reason behind this method is to sync state of local DB and real-world resources """ - log.debug( "Running general status update for EPC UCIs..." ) + log.debug( "Running general status update for %s UCIs..." % self.type ) # Update instances instances = self.sa_session.query( model.CloudInstance ) \ .filter( or_( model.CloudInstance.table.c.state==instance_states.RUNNING, @@ -695,7 +695,8 @@ # Update store status in local DB with info from cloud provider if len(vl) > 0: try: - if store.status != vl[0].status and store.availability_zone != 'epc': + log.debug( "Storage volume '%s' current status: '%s'" % (store.volume_id, vl[0].status ) ) + if store.status != vl[0].status: # In case something failed during creation of UCI but actual storage volume was created and yet # UCI state remained as 'new', try to remedy this by updating UCI state here if ( store.status == None ) and ( store.volume_id != None ): @@ -718,10 +719,11 @@ store.status = vl[0].status self.sa_session.add( store ) self.sa_session.flush() - if store.inst.instance_id != vl[0].instance_id: - store.inst.instance_id = vl[0].instance_id - self.sa_session.add( store ) - self.sa_session.flush() + if store.inst != None: + if store.inst.instance_id != vl[0].instance_id: + store.inst.instance_id = vl[0].instance_id + self.sa_session.add( store ) + self.sa_session.flush() if store.attach_time != vl[0].attach_time: store.attach_time = vl[0].attach_time self.sa_session.add( store ) @@ -937,7 +939,7 @@ def get_connection_from_uci( self, uci ): """ - Establishes and returns connection to cloud provider. Information needed to do so is obtained + Establish and return connection to cloud provider. Information needed to do so is obtained directly from uci database object. """ log.debug( 'Establishing %s cloud connection' % self.type ) @@ -946,13 +948,13 @@ # Get connection try: region = RegionInfo( None, uci.credentials.provider.region_name, uci.credentials.provider.region_endpoint ) - log.debug( "[%s] Using following command to connect to cloud provider: " - "conn = EC2Connection( aws_access_key_id=%s, " - "aws_secret_access_key=%s, " - "port=%s, " - "is_secure=%s, " - "region=region, " - "path=%s )" % ( self.type, a_key, s_key, uci.credentials.provider.is_secure, uci.credentials.provider.port, uci.credentials.provider.path ) ) +# log.debug( "[%s] Using following command to connect to cloud provider: " +# "conn = EC2Connection( aws_access_key_id=%s, " +# "aws_secret_access_key=%s, " +# "port=%s, " +# "is_secure=%s, " +# "region=region, " +# "path=%s )" % ( self.type, a_key, s_key, uci.credentials.provider.is_secure, uci.credentials.provider.port, uci.credentials.provider.path ) ) conn = EC2Connection( aws_access_key_id=a_key, aws_secret_access_key=s_key, is_secure=uci.credentials.provider.is_secure, diff -r 53de6aea6445 -r b70e23d80a75 templates/cloud/list_images.mako --- a/templates/cloud/list_images.mako Wed Nov 18 16:18:09 2009 -0500 +++ b/templates/cloud/list_images.mako Thu Nov 19 12:56:24 2009 -0500 @@ -78,6 +78,8 @@ </tr> %endfor </table> + + <p /></p><a href="${h.url_for( controller='cloud', action='add_new_image' )}" target="galaxy_main">Add another machine image</a> %else: <h3>There are no registered machine images.</h3><br /> <a href="${h.url_for( controller='cloud', action='add_new_image' )}" target="galaxy_main">Add machine image now?</a>
participants (1)
-
Greg Von Kuster