Skip to content

restart_view

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

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');