Skip to main content
Astra Control Center
A newer release of this product is available.

Manage app execution hooks

Contributors netapp-mwallis

An execution hook is a custom action that you can configure to run in conjunction with a data protection operation of a managed app. For example, if you have a database app, you can use execution hooks to pause all database transactions before a snapshot, and resume transactions after the snapshot is complete. This ensures application-consistent snapshots.

Types of execution hooks

Astra Control supports the following types of execution hooks, based on when they can be run:

  • Pre-snapshot

  • Post-snapshot

  • Pre-backup

  • Post-backup

  • Post-restore

Important notes about custom execution hooks

Consider the following when planning execution hooks for your apps.

  • An execution hook must use a script to perform actions. Many execution hooks can reference the same script.

  • Astra Control requires the scripts that execution hooks use to be written in the format of executable shell scripts.

  • Script size is limited to 96KB.

  • Astra Control uses execution hook settings and any matching criteria to determine which hooks are applicable to a snapshot, backup, or restore operation.

  • All execution hook failures are soft failures; other hooks and the data protection operation are still attempted even if a hook fails. However, when a hook fails, a warning event is recorded in the Activity page event log.

  • To create, edit, or delete execution hooks, you must be a user with Owner, Admin, or Member permissions.

  • If an execution hook takes longer than 25 minutes to run, the hook will fail, creating an event log entry with a return code of "N/A". Any affected snapshot will time out and be marked as failed, with a resulting event log entry noting the timeout.

  • For adhoc data protection operations, all hook events are generated and saved in the Activity page event log. However, for scheduled data protection operations, only hook failure events are recorded in the event log (events generated by the scheduled data protection operations themselves are still recorded).

Note

Since execution hooks often reduce or completely disable the functionality of the application they are running against, you should always try to minimize the time your custom execution hooks take to run.
If you start a backup or snapshot operation with associated execution hooks but then cancel it, the hooks are still allowed to run if the backup or snapshot operation has already begun. This means that a post-backup execution hook cannot assume that the backup was completed.

Order of execution

When a data protection operation is run, execution hook events take place in the following order:

  1. Any applicable custom pre-operation execution hooks are run on the appropriate containers. You can create and run as many custom pre-operation hooks as you need, but the order of execution of these hooks before the operation is neither guaranteed nor configurable.

  2. The data protection operation is performed.

  3. Any applicable custom post-operation execution hooks are run on the appropriate containers. You can create and run as many custom post-operation hooks as you need, but the order of execution of these hooks after the operation is neither guaranteed nor configurable.

If you create multiple execution hooks of the same type (for example, pre-snapshot), the order of execution of those hooks is not guaranteed. However, the order of execution of hooks of different types is guaranteed. For example, the order of execution of a configuration that has all five different types of hooks would look like this:

  1. Pre-backup hooks executed

  2. Pre-snapshot hooks executed

  3. Post-snapshot hooks executed

  4. Post-backup hooks executed

  5. Post-restore hooks executed

You can see an example of this configuration in scenario number 2 from the table in Determine whether a hook will run.

Note You should always test your execution hook scripts before enabling them in a production environment. You can use the 'kubectl exec' command to conveniently test the scripts. After you enable the execution hooks in a production environment, test the resulting snapshots and backups to ensure they are consistent. You can do this by cloning the app to a temporary namespace, restoring the snapshot or backup, and then testing the app.

Determine whether a hook will run

Use the following table to help determine if a custom execution hook will run for your app.

Note that all high-level app operations consist of running one of the basic operations of snapshot, backup, or restore. Depending on the scenario, a clone operation can consists of various combinations of these operations, so what execution hooks a clone operation runs will vary.

In-place restore operations require an existing snapshot or backup, so these operations don't run snapshot or backup hooks.

Note

If you start but then cancel a backup that includes a snapshot and there are associated execution hooks, some hooks might run, and others might not. This means that a post-backup execution hook cannot assume that the backup was completed. Keep in mind the following points for cancelled backups with associated execution hooks:

  • The pre-backup and post-backup hooks are always run.

  • If the backup includes a new snapshot and the snapshot has started, the pre-snapshot and post-snapshot hooks are run.

  • If the backup is cancelled prior to the snapshot starting, the pre-snapshot and post-snapshot hooks are not run.

Scenario Operation Existing snapshot Existing backup Namespace Cluster Snapshot hooks run Backup hooks run Restore hooks run

1

Clone

N

N

New

Same

Y

N

Y

2

Clone

N

N

New

Different

Y

Y

Y

3

Clone or restore

Y

N

New

Same

N

N

Y

4

Clone or restore

N

Y

New

Same

N

N

Y

5

Clone or restore

Y

N

New

Different

N

Y

Y

6

Clone or restore

N

Y

New

Different

N

N

Y

7

Restore

Y

N

Existing

Same

N

N

Y

8

Restore

N

Y

Existing

Same

N

N

Y

9

Snapshot

N/A

N/A

N/A

N/A

Y

N/A

N/A

10

Backup

N

N/A

N/A

N/A

Y

Y

N/A

11

Backup

Y

N/A

N/A

N/A

N

Y

N/A

View existing execution hooks

You can view existing custom execution hooks for an app.

Steps
  1. Go to Applications and then select the name of a managed app.

  2. Select the Execution hooks tab.

    You can view all enabled or disabled execution hooks in the resulting list. You can see a hook's status, source, and when it runs (pre- or post-operation). To view event logs surrounding execution hooks, go to the Activity page in the left-side navigation area.

View existing scripts

You can view the existing uploaded scripts. You can also see which scripts are in use, and what hooks are using them, on this page.

Steps
  1. Go to Account.

  2. Select the Scripts tab.

    You can see a list of existing uploaded scripts on this page. The Used by column shows which execution hooks are using each script.

Add a script

You can add one or more scripts that execution hooks can reference. Many execution hooks can reference the same script; this enables you to update many execution hooks by only changing one script.

Steps
  1. Go to Account.

  2. Select the Scripts tab.

  3. Select Add.

  4. Do one of the following:

    • Upload a custom script.

      1. Select the Upload file option.

      2. Browse to a file and upload it.

      3. Give the script a unique name.

      4. (Optional) Enter any notes other administrators should know about the script.

      5. Select Save script.

    • Paste in a custom script from the clipboard.

      1. Select the Paste or type option.

      2. Select the text field and paste the script text into the field.

      3. Give the script a unique name.

      4. (Optional) Enter any notes other administrators should know about the script.

  5. Select Save script.

Result

The new script appears in the list on the Scripts tab.

Delete a script

You can remove a script from the system if it is no longer needed and not used by any execution hooks.

Steps
  1. Go to Account.

  2. Select the Scripts tab.

  3. Choose a script you want to remove, and select the menu in the Actions column.

  4. Select Delete.

Note If the script is associated with one or more execution hooks, the Delete action is unavailable. To delete the script, first edit the associated execution hooks and associate them with a different script.

Create a custom execution hook

You can create a custom execution hook for an app. See Execution hook examples for hook examples. You need to have Owner, Admin, or Member permissions to create execution hooks.

Note When you create a custom shell script to use as an execution hook, remember to specify the appropriate shell at the beginning of the file, unless you are running specific commands or providing the full path to an executable.
Steps
  1. Select Applications and then select the name of a managed app.

  2. Select the Execution hooks tab.

  3. Select Add.

  4. In the Hook Details area, determine when the hook should run by selecting an operation type from the Operation drop-down menu.

  5. Enter a unique name for the hook.

  6. (Optional) Enter any arguments to pass to the hook during execution, pressing the Enter key after each argument you enter to record each one.

  7. In the Container Images area, if the hook should run against all container images contained within the application, enable the Apply to all container images check box. If instead the hook should act only on one or more specified container images, enter the container image names in the Container image names to match field.

  8. In the Script area, do one of the following:

    • Add a new script.

      1. Select Add.

      2. Do one of the following:

        • Upload a custom script.

          1. Select the Upload file option.

          2. Browse to a file and upload it.

          3. Give the script a unique name.

          4. (Optional) Enter any notes other administrators should know about the script.

          5. Select Save script.

        • Paste in a custom script from the clipboard.

          1. Select the Paste or type option.

          2. Select the text field and paste the script text into the field.

          3. Give the script a unique name.

          4. (Optional) Enter any notes other administrators should know about the script.

    • Select an existing script from the list.

      This instructs the execution hook to use this script.

  9. Select Add hook.

Check the state of an execution hook

After a snapshot, backup, or restore operation finishes running, you can check the state of execution hooks that ran as part of the operation. You can use this status information to determine if you want to keep the execution hook, modify it, or delete it.

Steps
  1. Select Applications and then select the name of a managed app.

  2. Select the Data protection tab.

  3. Select Snapshots to see running snapshots, or Backups to see running backups.

    The Hook state shows the status of the execution hook run after the operation is complete. You can hover over the state for more details. For example, if there are execution hook failures during a snapshot, hovering over the hook state for that snapshot gives a list of failed execution hooks. To see reasons for each failure, you can check the Activity page in the left-side navigation area.

View script usage

You can see which execution hooks use a particular script in the Astra Control web UI.

Steps
  1. Select Account.

  2. Select the Scripts tab.

    The Used by column in the list of scripts contains details on which hooks are using each script in the list.

  3. Select the information in the Used by column for a script you are interested in.

    A more detailed list appears, with the names of hooks that are using the script and the type of operation they are configured to run with.

Disable an execution hook

You can disable an execution hook if you want to temporarily prevent it from running before or after a snapshot of an app. You need to have Owner, Admin, or Member permissions to disable execution hooks.

Steps
  1. Select Applications and then select the name of a managed app.

  2. Select the Execution hooks tab.

  3. Select the Options menu in the Actions column for a hook that you wish to disable.

  4. Select Disable.

Delete an execution hook

You can remove an execution hook entirely if you no longer need it. You need to have Owner, Admin, or Member permissions to delete execution hooks.

Steps
  1. Select Applications and then select the name of a managed app.

  2. Select the Execution hooks tab.

  3. Select the Options menu in the Actions column for a hook that you wish to delete.

  4. Select Delete.