| | 13 | * 09:00 sts dist run 377773 was stuck because of a corrupt file: the variance image from warp_id 144635 skycell.379. Due to the complexity of the destreaking process it isn't easy to regenerate this file. To allow the distRun to proceed skipping the broken skycell I performed the following steps. |
| | 14 | |
| | 15 | {{{ |
| | 16 | 1. in distribution pantasks: dist.off |
| | 17 | 2. disttool -revertcomponent -dist_id 37773 |
| | 18 | 3. In mysql |
| | 19 | update warpSkyfile set quality = 42 where warp_id = 144635 and skycell_id = 'skycell.379'; |
| | 20 | 4. In distribution pantasks: dist.on |
| | 21 | 5. wait a few minutes for distRun to complete |
| | 22 | 6. In mysql |
| | 23 | update warpSkyfile set quality = 0 where warp_id = 144635 and skycell_id = 'skycell.379'; |
| | 24 | |
| | 25 | Since quality of the skycell is non-zero distribution doesn't require the image to be readable. This allows the bundle to be completed with the other 87 skycells to get out the door. |
| | 26 | |
| | 27 | Since we put the quality back to zero if the warpRun is cleaned up the data will be available again through the update process. |
| | 28 | }}} |