The version history of the Ingest Workflow#
Version numbers#
Version numbers are consistent with Ingest API version numbers
The summary info on the versions#
Qserv ingest workflow API version management has started when ingest API version 12 was delivered, because it was offering a more advanced mechanism for working with the versions.
- Version nil: Initial version number 
- Version 12: Add mandatory version numbers in configuration files 
Version 12: Add mandatory version numbers in configuration files#
- metadata.json(see Metadata)
- A mandatory - versionfield with value 12 has been added
- An optional - charset_namefield has been added, with default value to- latin1
{
"version": 12,
"charset_name": "latin1",
"database":"...",
}
- ingest.yaml(see Configuration)
- A mandatory - versionfield with value 12 has been added
version: 12
ingest:
...