MD_UPDATE_FLIGHT
Updates an existing Flight. Behaves as a PATCH: only the parameters you pass are modified, and unspecified fields are left unchanged.
Updates to source_code, requirements_txt, config, access_token_name, or flight_secret_names produce a fresh FlightVersion. Updates to name or schedule_cron are metadata-only and do not bump the version.
You are responsible for the code you run and the packages it installs. Flights does not scan customer code or dependencies. Avoid untrusted packages, pin dependency versions, and treat dependency installs as a supply-chain risk.
Syntax
CALL MD_UPDATE_FLIGHT(
flight_id := '<flight_id>',
name := '<updated_name>',
schedule_cron := '0 0 * * *',
source_code := '<updated_python>',
requirements_txt := '<updated_requirements>',
config := MAP {'KEY': 'value'},
access_token_name := '<updated_token_name>',
flight_secret_names := ['secret_name']
);
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
flight_id | UUID | Yes | Identifier of the Flight to update. |
name | VARCHAR | No | New Flight name. Must be non-empty when provided. Metadata-only. |
schedule_cron | VARCHAR | No | New cron expression (UTC, 5 fields). Pass '' (empty string) to clear the schedule. Metadata-only. |
source_code | VARCHAR | No | New Python source. Bumps the version. |
requirements_txt | VARCHAR | No | New requirements.txt contents. Bumps the version. |
config | MAP(VARCHAR, VARCHAR) | No | Replacement config map (full replace, not merge). Bumps the version. |
access_token_name | VARCHAR | No | New access token label. Bumps the version. |
flight_secret_names | LIST(VARCHAR) | No | Replacement list of Flight secret names (full replace). Bumps the version. |
At least one of the above (besides flight_id) must be set.
Return columns
MD_UPDATE_FLIGHT returns the updated FlightSummary:
| Column | Type | Description |
|---|---|---|
flight_id | UUID | The Flight identifier. |
flight_name | VARCHAR | The current name. |
schedule_cron | VARCHAR | The current cron expression, or NULL. |
status | VARCHAR | Schedule status. |
current_version | INTEGER | The current version (incremented for content updates). |
created_at | TIMESTAMP WITH TIME ZONE | Original creation timestamp. |
updated_at | TIMESTAMP WITH TIME ZONE | Most recent update timestamp. |
Behavior
- Full-replace semantics.
configandflight_secret_namesare replaced, not merged. To change one entry, send the full updated map or list. - Carry-forward semantics. When you patch one content field, the resulting version carries unchanged content fields forward from the previous version.
- Empty schedule.
schedule_cron := ''clears the schedule; omit it to leave the existing schedule untouched. Passingschedule_cron := ''to a Flight that already has no schedule returns an error, so only send it when there's a schedule to clear. - Definition size limit.
source_codeis capped at 200 KB andrequirements_txtat 20 KB. Load large reference data from object storage at run time instead of embedding it in the source.
Examples
Rename a Flight (metadata-only, no new version):
CALL MD_UPDATE_FLIGHT(
flight_id := '<flight_id>',
name := 'analytics_hourly_sync'
);
Update the source (bumps the version):
CALL MD_UPDATE_FLIGHT(
flight_id := '<flight_id>',
source_code := $$
def main():
print("v2")
if __name__ == "__main__":
main()
$$
);
Clear the schedule, leave everything else:
CALL MD_UPDATE_FLIGHT(
flight_id := '<flight_id>',
schedule_cron := ''
);
Related
MD_CREATE_FLIGHT— Create a Flight.MD_GET_FLIGHT— Inspect the current Flight summary.MD_LIST_FLIGHT_VERSIONS— List historical versions.update_flightMCP tool — AI-agent equivalent (usesmd_token_name/md_secret_names).