resume_cdc()#

relationalai.app
#resume_cdc()

A procedure that enables the CDC Service for the RAI Native App. When CDC is enabled, changes to data streams are processed by the CDC engine and made available to RAI Python models. Change tracking data consumed while the service was disabled is processed immediately. Requires the cdc_admin application role.

Parameters#

None.

Returns#

STRING

Example#

Use the app.resume_cdc() to enable the CDC Service after installing the RAI Native App or to resume the service after suspending it:

#CALL relationalai.app.resume_cdc();
/*+--------------------------------------------------------------------+
  | CDC functionality on the RelationalAI application has been resumed |
  +--------------------------------------------------------------------+ */

To disable the CDC Service, use the app.suspend_cdc() procedure. See Data Management for more information on data streams and the CDC service.

See Also#