Skip to content

restart_view

The restart_view procedure restarts a stopped / killed view atomically (without dropping table or deleting data in old result table).

In High Availability mode, this will restart the view on all Epsio instances. If you only wish to restart the view on one instance, see instance_restart_view.

Syntax

CALL epsio.restart_view(
    <view_name>,
    <block_until_running (optional)>
);
Parameter Information
view_name The existing view name that needs to be restarted.
block_until_running (Optional, default true) Whether or not to wait for population to end before returning.

Examples

Restarting a crashed view:

CALL epsio.restart_view('epsio.example_view');