Skip to content

restorepiperun.py

Command

Bases: BaseCommand

This command is used to restore a pipeline run to the previous verion after add mode has been used. Use --help for usage.

Source code in vast_pipeline/management/commands/restorepiperun.py
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
class Command(BaseCommand):
    """
    This command is used to restore a pipeline run to the previous verion after
    add mode has been used. Use --help for usage.
    """

    help = (
        'Restore a pipeline run to the previous person after image add mode'
        ' has been used.'
    )

    def add_arguments(self, parser: ArgumentParser) -> None:
        """
        Enables arguments for the command.

        Args:
            parser (ArgumentParser): The parser object of the command.

        Returns:
            None
        """
        # positional arguments (required)
        parser.add_argument(
            'piperuns',
            nargs='+',
            type=str,
            default=None,
            help='Name or path of pipeline run(s) to restore.'
        )
        # keyword arguments (optional)
        parser.add_argument(
            '--no-confirm',
            required=False,
            default=False,
            action='store_true',
            help=(
                'Flag to skip the confirmation stage and proceed to restore'
                ' the pipeline run.'
            )
        )

    def handle(self, *args, **options) -> None:
        """
        Handle function of the command.

        Args:
            *args: Variable length argument list.
            **options: Variable length options.

        Returns:
            None
        """
        # configure logging
        if options['verbosity'] > 1:
            # set root logger to use the DEBUG level
            root_logger = logging.getLogger('')
            root_logger.setLevel(logging.DEBUG)
            # set the traceback on
            options['traceback'] = True

        piperuns = options['piperuns']

        for piperun in piperuns:
            p_run_name = get_p_run_name(piperun)
            try:
                p_run = Run.objects.get(name=p_run_name)
            except Run.DoesNotExist:
                raise CommandError(f'Pipeline run {p_run_name} does not exist')

            if p_run.status not in ['END', 'ERR']:
                raise CommandError(
                    f"Run {p_run_name} does not have an 'END' or 'ERR' status."
                    " Unable to run restore."
                )

            path = p_run.path
            pipeline = Pipeline(
                name=p_run_name,
                config_path=os.path.join(path, 'config.yaml')
            )
            try:
                # update pipeline run status to restoring
                prev_status = p_run.status
                pipeline.set_status('RES')

                prev_config_file = os.path.join(p_run.path, 'config.yaml.bak')

                if os.path.isfile(prev_config_file):
                    shutil.copy(
                        prev_config_file,
                        prev_config_file.replace('.yaml.bak', '.bak.yaml')
                    )
                    prev_config_file = prev_config_file.replace(
                        '.yaml.bak', '.bak.yaml'
                    )
                    prev_config = PipelineConfig.from_file(prev_config_file)
                    os.remove(prev_config_file)
                else:
                    raise CommandError(
                        'Previous config file does not exist.'
                        ' Cannot restore pipeline run.'
                    )

                bak_files = {}
                for i in [
                    'associations', 'bands', 'images', 'measurement_pairs',
                    'relations', 'skyregions', 'sources', 'config'
                ]:
                    if i == 'config':
                        f_name = os.path.join(p_run.path, f'{i}.yaml.bak')
                    else:
                        f_name = os.path.join(p_run.path, f'{i}.parquet.bak')

                    if os.path.isfile(f_name):
                        bak_files[i] = f_name
                    else:
                        raise CommandError(
                            f'File {f_name} does not exist.'
                            ' Cannot restore pipeline run.'
                        )

                logger_msg = "Will restore the run to the following config:\n"
                logger.info(logger_msg + prev_config._yaml.as_yaml())

                user_continue = True if options['no_confirm'] else yesno("Would you like to restore the run")

                if user_continue:
                    restore_pipe(p_run, bak_files, prev_config)
                    pipeline.set_status('END')
                    logger.info('Restore complete.')
                else:
                    pipeline.set_status(prev_status)
                    logger.info('No actions performed.')

            except Exception as e:
                logger.error('Restoring failed!')
                logger.error(e)
                pipeline.set_status('ERR')

add_arguments(self, parser)

Enables arguments for the command.

Parameters:

Name Type Description Default
parser ArgumentParser

The parser object of the command.

required

Returns:

Type Description
None

None

Source code in vast_pipeline/management/commands/restorepiperun.py
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
def add_arguments(self, parser: ArgumentParser) -> None:
    """
    Enables arguments for the command.

    Args:
        parser (ArgumentParser): The parser object of the command.

    Returns:
        None
    """
    # positional arguments (required)
    parser.add_argument(
        'piperuns',
        nargs='+',
        type=str,
        default=None,
        help='Name or path of pipeline run(s) to restore.'
    )
    # keyword arguments (optional)
    parser.add_argument(
        '--no-confirm',
        required=False,
        default=False,
        action='store_true',
        help=(
            'Flag to skip the confirmation stage and proceed to restore'
            ' the pipeline run.'
        )
    )

handle(self, *args, **options)

Handle function of the command.

Parameters:

Name Type Description Default
*args

Variable length argument list.

()
**options

Variable length options.

{}

Returns:

Type Description
None

None

Source code in vast_pipeline/management/commands/restorepiperun.py
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
def handle(self, *args, **options) -> None:
    """
    Handle function of the command.

    Args:
        *args: Variable length argument list.
        **options: Variable length options.

    Returns:
        None
    """
    # configure logging
    if options['verbosity'] > 1:
        # set root logger to use the DEBUG level
        root_logger = logging.getLogger('')
        root_logger.setLevel(logging.DEBUG)
        # set the traceback on
        options['traceback'] = True

    piperuns = options['piperuns']

    for piperun in piperuns:
        p_run_name = get_p_run_name(piperun)
        try:
            p_run = Run.objects.get(name=p_run_name)
        except Run.DoesNotExist:
            raise CommandError(f'Pipeline run {p_run_name} does not exist')

        if p_run.status not in ['END', 'ERR']:
            raise CommandError(
                f"Run {p_run_name} does not have an 'END' or 'ERR' status."
                " Unable to run restore."
            )

        path = p_run.path
        pipeline = Pipeline(
            name=p_run_name,
            config_path=os.path.join(path, 'config.yaml')
        )
        try:
            # update pipeline run status to restoring
            prev_status = p_run.status
            pipeline.set_status('RES')

            prev_config_file = os.path.join(p_run.path, 'config.yaml.bak')

            if os.path.isfile(prev_config_file):
                shutil.copy(
                    prev_config_file,
                    prev_config_file.replace('.yaml.bak', '.bak.yaml')
                )
                prev_config_file = prev_config_file.replace(
                    '.yaml.bak', '.bak.yaml'
                )
                prev_config = PipelineConfig.from_file(prev_config_file)
                os.remove(prev_config_file)
            else:
                raise CommandError(
                    'Previous config file does not exist.'
                    ' Cannot restore pipeline run.'
                )

            bak_files = {}
            for i in [
                'associations', 'bands', 'images', 'measurement_pairs',
                'relations', 'skyregions', 'sources', 'config'
            ]:
                if i == 'config':
                    f_name = os.path.join(p_run.path, f'{i}.yaml.bak')
                else:
                    f_name = os.path.join(p_run.path, f'{i}.parquet.bak')

                if os.path.isfile(f_name):
                    bak_files[i] = f_name
                else:
                    raise CommandError(
                        f'File {f_name} does not exist.'
                        ' Cannot restore pipeline run.'
                    )

            logger_msg = "Will restore the run to the following config:\n"
            logger.info(logger_msg + prev_config._yaml.as_yaml())

            user_continue = True if options['no_confirm'] else yesno("Would you like to restore the run")

            if user_continue:
                restore_pipe(p_run, bak_files, prev_config)
                pipeline.set_status('END')
                logger.info('Restore complete.')
            else:
                pipeline.set_status(prev_status)
                logger.info('No actions performed.')

        except Exception as e:
            logger.error('Restoring failed!')
            logger.error(e)
            pipeline.set_status('ERR')

restore_pipe(p_run, bak_files, prev_config)

Restores the pipeline to the backup files version.

Parameters:

Name Type Description Default
p_run Run

The run model object.

required
bak_files Dict[str, str]

Dictionary containing the paths to the .bak files.

required
prev_config PipelineConfig

Back up run configuration.

required

Returns:

Type Description
None

None

Source code in vast_pipeline/management/commands/restorepiperun.py
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
def restore_pipe(p_run: Run, bak_files: Dict[str, str], prev_config: PipelineConfig) -> None:
    """
    Restores the pipeline to the backup files version.

    Args:
        p_run (Run):
            The run model object.
        bak_files (Dict[str, str]):
            Dictionary containing the paths to the .bak files.
        prev_config (PipelineConfig):
            Back up run configuration.

    Returns:
        None
    """
    # check images match
    img_f_list = prev_config["inputs"]["image"]
    if isinstance(img_f_list, dict):
        img_f_list = [
            item for sublist in img_f_list.values() for item in sublist
        ]
    img_f_list = [os.path.basename(i) for i in img_f_list]

    prev_images = pd.read_parquet(
        bak_files['images'], columns=['id', 'name', 'measurements_path']
    )

    if sorted(prev_images['name'].tolist()) != sorted(img_f_list):
        raise CommandError(
            'Images in previous config file does not'
            ' match those found in the previous images.parquet.bak.'
            ' Cannot restore pipeline run.'
        )

    # check forced measurements
    monitor = prev_config["source_monitoring"]["monitor"]
    if monitor:
        forced_parquets = glob(os.path.join(
            p_run.path, 'forced_*.parquet.bak'
        ))

        if not forced_parquets:
            raise CommandError(
                'source_monitoring.monitor is \'True\' in the previous configuration but'
                ' no .bak forced parquet files have been found.'
                ' Cannot restore pipeline run.'
            )
        else:
            # load old associations
            bak_meas_id = pd.read_parquet(
                bak_files['associations'],
                columns=['meas_id']
            )['meas_id'].unique()

            # load backup forced measurements
            forced_meas = pd.concat(
                [pd.read_parquet(i, columns=['id']) for i in forced_parquets]
            )

            # load image meas
            meas = pd.concat(
                [pd.read_parquet(
                    i, columns=['id']
                ) for i in prev_images['measurements_path']]
            )

            # Get forced ids from the associations
            forced_meas_id = bak_meas_id[
                np.isin(bak_meas_id, meas['id'].to_numpy(), invert=True)
            ]

            if not np.array_equal(
                np.sort(forced_meas_id),
                np.sort(forced_meas['id'].to_numpy())
            ):
                raise CommandError(
                    'The forced measurements .bak files do not match the'
                    ' previous run.'
                    ' Cannot restore pipeline run.'
                )

            del meas

    logger.info("Restoring '%s' from backup parquet files.", p_run.name)

    # Delete any new sources
    bak_sources = pd.read_parquet(bak_files['sources'])

    sources_to_delete = (
        Source.objects
        .filter(run=p_run)
        .exclude(id__in=bak_sources.index.to_numpy())
    )

    if sources_to_delete.exists():
        with transaction.atomic():
            n_del, detail_del = sources_to_delete.delete()
            logger.info(
                ('Deleting new sources and associated objects to restore run'
                 ' Total objects deleted: %i'),
                n_del,
            )
            logger.debug('(type, #deleted): %s', detail_del)

    if monitor:
        current_forced_parquets = glob(os.path.join(
            p_run.path, 'forced_*.parquet'
        ))

        current_forced_meas = pd.concat(
            [pd.read_parquet(
                i, columns=['id']
            ) for i in current_forced_parquets]
        )

        ids_to_delete = current_forced_meas.loc[
            ~current_forced_meas['id'].isin(forced_meas['id'].to_numpy()),
            'id'
        ]

        meas_to_delete = Measurement.objects.filter(id__in=ids_to_delete)

        del ids_to_delete

        if meas_to_delete.exists():
            with transaction.atomic():
                n_del, detail_del = meas_to_delete.delete()
                logger.info(
                    ('Deleting forced measurement and associated'
                     ' objects to restore run. Total objects deleted: %i'),
                    n_del,
                )
                logger.debug('(type, #deleted): %s', detail_del)

    # restore source metrics
    logger.info(f'Restoring metrics for {bak_sources.shape[0]} sources.')
    bak_sources = update_sources(bak_sources)

    # remove images from run
    images_to_remove = (
        Image.objects
        .filter(run=p_run)
        .exclude(id__in=prev_images['id'].to_numpy())
    )
    logger.info(f'Removing {len(images_to_remove)} images from the run.')
    if images_to_remove.exists():
        with transaction.atomic():
            p_run.image_set.remove(*images_to_remove)

    # load image meas
    meas = pd.concat(
        [pd.read_parquet(
            i, columns=['id']
        ) for i in prev_images['measurements_path']]
    )

    association_criteria_1 = Q(source_id__in=bak_sources['id'].to_numpy())
    association_criteria_2 = ~Q(meas_id__in=meas['id'].to_numpy())
    associations_to_delete = Association.objects.filter(
        association_criteria_1 and association_criteria_2
    )

    if associations_to_delete.exists():
        with transaction.atomic():
            n_del, detail_del = associations_to_delete.delete()
            logger.info(
                ('Deleting associations to restore run.'
                 ' Total objects deleted: %i'),
                n_del,
            )
            logger.debug('(type, #deleted): %s', detail_del)

    pair_criteria_1 = Q(source_id__in=bak_sources['id'].to_numpy())
    pair_criteria_2 = ~Q(measurement_a__in=meas['id'].to_numpy())
    pair_criteria_3 = ~Q(measurement_b__in=meas['id'].to_numpy())

    pairs_to_delete = MeasurementPair.objects.filter(
       pair_criteria_1 and (pair_criteria_2 | pair_criteria_3)
    )

    if pairs_to_delete.exists():
        with transaction.atomic():
            n_del, detail_del = pairs_to_delete.delete()
            logger.info(
                ('Deleting measurement pairs to restore run.'
                 ' Total objects deleted: %i'),
                n_del,
            )
            logger.debug('(type, #deleted): %s', detail_del)

    logger.info('Restoring run metrics.')
    p_run.n_images = prev_images.shape[0]
    p_run.n_sources = bak_sources.shape[0]
    p_run.n_selavy_measurements = meas.shape[0]
    if monitor:
        p_run.n_forced_measurements = forced_meas.shape[0]

    with transaction.atomic():
        p_run.save()

    # switch files and delete backups
    logger.info('Restoring parquet files and removing .bak files.')
    for i in bak_files:
        bak_file = bak_files[i]
        if i == 'config':
            actual_file = bak_file.replace('.yaml.bak', '_prev.yaml')
        else:
            actual_file = bak_file.replace('.bak', '')
        shutil.copy(bak_file, actual_file)
        os.remove(bak_file)

    if monitor:
        for i in current_forced_parquets:
            os.remove(i)

        for i in forced_parquets:
            new_file = i.replace('.bak', '')
            shutil.copy(i, new_file)
            os.remove(i)

yesno(question)

Simple Yes/No Function.

Parameters:

Name Type Description Default
question str

The question to show to the user for a y/n response.

required

Returns:

Type Description
bool

True if user enters 'y', False if 'n'.

Source code in vast_pipeline/management/commands/restorepiperun.py
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
def yesno(question: str) -> bool:
    """
    Simple Yes/No Function.

    Args:
        question (str):
            The question to show to the user for a y/n response.

    Returns:
        True if user enters 'y', False if 'n'.
    """
    prompt = f'{question} ? (y/n): '
    ans = input(prompt).strip().lower()
    if ans not in ['y', 'n']:
        print(f'{ans} is invalid, please try again...')
        return yesno(question)
    if ans == 'y':
        return True
    return False

Last update: March 2, 2022
Created: March 2, 2022