Skip to content

What's New in Version 2025.1.19-5c5e9160-1

  • Enhanced performance when resuming the CDC Service to process source data changes queued during suspension.

  • As of version 2024.11.30-7b90c864, new CDC engines are automatically suspended after thirty minutes of inactivity. In this release, CDC engines created prior to that version are automatically migrated to the new auto-suspension behavior.

  • The deprecated app.create_service() procedure has been removed. The work that this procedure was responsible for is performed by app.activate().

  • An older version of the api.create_engine() procedure that accepted a compute_pool parameter has been removed. Engine compute pools are fully managed by the RAI Native App.

    To migrate to the new procedure, replace the compute_pool argument with the appropriate engine size. For example:

    -- Old procedure:
    CALL relationalai.api.create_engine('my_engine', 'my_compute_pool');
    -- New procedure:
    -- Use 'HIGHMEM_X64_S' for small engines or 'HIGHMEM_X64_M' for medium engines.
    CALL relationalai.api.create_engine('my_engine', 'HIGHMEM_X64_S', NULL, NULL);

    See the reference documentation for more information.

  • Fixed a bug that caused new application installs to fail. This bug did not affect existing installations.