This release includes enhancements for publishers, Apply Engine, and Utilities.
Engine parsing requirement for v5
When upgrading to Connect CDC (SQData) version 5 from earlier major releases (version 3.x or 4.x), you must re-parse all Engine scripts using the version 5 parser before starting the Engines.
- Parse the Engine source script (
.sqd) using theSQDPARSEutility - Run the Engine using the parsed Engine script (
.prc)
Engine scripts parsed with earlier major versions are not compatible with version 5. The version 5 runtime only executes parsed Engine scripts generated by a compatible parser. As a result, Engines will fail to start until you complete the parsing step successfully.
Re-parsing is typically not required for upgrades within the same major version (for example, from one version 5 fix pack to another), unless you have modified the Engine source script.
- Locate the existing Engine source script (
.sqd) used by the Engine. - Run the
SQDPARSEutility provided with the version 5 installation to generate a parsed Engine script (.prc).SQDPARSE <engine>.sqd <engine>.prc [parameters] > <engine>.prt - Review the parser report output to verify the parse completed successfully and resolve any reported errors.
- Start the Engine using the parsed
.prcfile.
The SQDPARSE utility converts the Engine source script into a parsed command script that the version 5 Engine runtime requires. Parsing and starting the Engine are separate steps that must be performed in order.