This is an automated email from the ASF dual-hosted git repository.
uranusjr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 855a354ec1 Add migration for task_instance.rendered_map_index. (#37708)
855a354ec1 is described below
commit 855a354ec119997270a02feb201a96168f53e28f
Author: Karthikeyan Singaravelan <[email protected]>
AuthorDate: Thu Feb 29 12:12:42 2024 +0530
Add migration for task_instance.rendered_map_index. (#37708)
---
...2_9_0_add_rendered_map_index_to_taskinstance.py | 51 ++
airflow/utils/db.py | 1 +
docs/apache-airflow/img/airflow_erd.sha256 | 2 +-
docs/apache-airflow/img/airflow_erd.svg | 805 +++++++++++----------
docs/apache-airflow/migrations-ref.rst | 4 +-
5 files changed, 460 insertions(+), 403 deletions(-)
diff --git
a/airflow/migrations/versions/0134_2_9_0_add_rendered_map_index_to_taskinstance.py
b/airflow/migrations/versions/0134_2_9_0_add_rendered_map_index_to_taskinstance.py
new file mode 100644
index 0000000000..1aae151987
--- /dev/null
+++
b/airflow/migrations/versions/0134_2_9_0_add_rendered_map_index_to_taskinstance.py
@@ -0,0 +1,51 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+"""Add rendered_map_index to TaskInstance.
+
+Revision ID: 1fd565369930
+Revises: 88344c1d9134
+Create Date: 2024-02-26 18:48:06.386776
+
+"""
+
+import sqlalchemy as sa
+from alembic import op
+
+
+# revision identifiers, used by Alembic.
+revision = "1fd565369930"
+down_revision = "88344c1d9134"
+branch_labels = None
+depends_on = None
+airflow_version = "2.9.0"
+
+
+def upgrade():
+ """Apply Add rendered_map_index to TaskInstance."""
+ conn = op.get_bind()
+
+ with op.batch_alter_table("task_instance") as batch_op:
+ batch_op.add_column(sa.Column("rendered_map_index",
sa.String(length=64), nullable=True))
+
+
+def downgrade():
+ """Unapply Add rendered_map_index to TaskInstance."""
+ conn = op.get_bind()
+ with op.batch_alter_table("task_instance", schema=None) as batch_op:
+ batch_op.drop_column("rendered_map_index")
diff --git a/airflow/utils/db.py b/airflow/utils/db.py
index 8b2b56ed78..6cc0d7159b 100644
--- a/airflow/utils/db.py
+++ b/airflow/utils/db.py
@@ -90,6 +90,7 @@ _REVISION_HEADS_MAP = {
"2.7.0": "405de8318b3a",
"2.8.0": "10b52ebd31f7",
"2.8.1": "88344c1d9134",
+ "2.9.0": "1fd565369930",
}
diff --git a/docs/apache-airflow/img/airflow_erd.sha256
b/docs/apache-airflow/img/airflow_erd.sha256
index 9a2d1e898d..139e0665ed 100644
--- a/docs/apache-airflow/img/airflow_erd.sha256
+++ b/docs/apache-airflow/img/airflow_erd.sha256
@@ -1 +1 @@
-243075d59223245db8034a97c7d6f53bd8a39ee0dc02831229a6ec743c2c920a
\ No newline at end of file
+798cc78efa225287635e12ec3cebc6025bbb4d8e0b629fb7a17f4c7f168bfc65
\ No newline at end of file
diff --git a/docs/apache-airflow/img/airflow_erd.svg
b/docs/apache-airflow/img/airflow_erd.svg
index 2c3a7a33cc..4bbe208640 100644
--- a/docs/apache-airflow/img/airflow_erd.svg
+++ b/docs/apache-airflow/img/airflow_erd.svg
@@ -240,76 +240,76 @@
<!-- dag_run_note -->
<g id="node8" class="node">
<title>dag_run_note</title>
-<polygon fill="none" stroke="black" points="876.5,-1433 876.5,-1461
1137.5,-1461 1137.5,-1433 876.5,-1433"/>
-<text text-anchor="start" x="946.5" y="-1444.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">dag_run_note</text>
-<polygon fill="none" stroke="black" points="876.5,-1408 876.5,-1433
1137.5,-1433 1137.5,-1408 876.5,-1408"/>
-<text text-anchor="start" x="881.5" y="-1417.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">dag_run_id</text>
-<text text-anchor="start" x="958.5" y="-1417.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1035.5" y="-1417.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="876.5,-1383 876.5,-1408
1137.5,-1408 1137.5,-1383 876.5,-1383"/>
-<text text-anchor="start" x="881.5" y="-1392.8"
font-family="Helvetica,sans-Serif" font-size="14.00">content</text>
-<text text-anchor="start" x="934.5" y="-1392.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(1000)]</text>
-<polygon fill="none" stroke="black" points="876.5,-1358 876.5,-1383
1137.5,-1383 1137.5,-1358 876.5,-1358"/>
-<text text-anchor="start" x="881.5" y="-1367.8"
font-family="Helvetica,sans-Serif" font-size="14.00">created_at</text>
-<text text-anchor="start" x="954.5" y="-1367.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
-<text text-anchor="start" x="1050.5" y="-1367.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="876.5,-1333 876.5,-1358
1137.5,-1358 1137.5,-1333 876.5,-1333"/>
-<text text-anchor="start" x="881.5" y="-1342.8"
font-family="Helvetica,sans-Serif" font-size="14.00">updated_at</text>
-<text text-anchor="start" x="960.5" y="-1342.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
-<text text-anchor="start" x="1056.5" y="-1342.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="876.5,-1308 876.5,-1333
1137.5,-1333 1137.5,-1308 876.5,-1308"/>
-<text text-anchor="start" x="881.5" y="-1317.8"
font-family="Helvetica,sans-Serif" font-size="14.00">user_id</text>
-<text text-anchor="start" x="932.5" y="-1317.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<polygon fill="none" stroke="black" points="876.5,-1436 876.5,-1464
1137.5,-1464 1137.5,-1436 876.5,-1436"/>
+<text text-anchor="start" x="946.5" y="-1447.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">dag_run_note</text>
+<polygon fill="none" stroke="black" points="876.5,-1411 876.5,-1436
1137.5,-1436 1137.5,-1411 876.5,-1411"/>
+<text text-anchor="start" x="881.5" y="-1420.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">dag_run_id</text>
+<text text-anchor="start" x="958.5" y="-1420.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1035.5" y="-1420.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="876.5,-1386 876.5,-1411
1137.5,-1411 1137.5,-1386 876.5,-1386"/>
+<text text-anchor="start" x="881.5" y="-1395.8"
font-family="Helvetica,sans-Serif" font-size="14.00">content</text>
+<text text-anchor="start" x="934.5" y="-1395.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(1000)]</text>
+<polygon fill="none" stroke="black" points="876.5,-1361 876.5,-1386
1137.5,-1386 1137.5,-1361 876.5,-1361"/>
+<text text-anchor="start" x="881.5" y="-1370.8"
font-family="Helvetica,sans-Serif" font-size="14.00">created_at</text>
+<text text-anchor="start" x="954.5" y="-1370.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<text text-anchor="start" x="1050.5" y="-1370.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="876.5,-1336 876.5,-1361
1137.5,-1361 1137.5,-1336 876.5,-1336"/>
+<text text-anchor="start" x="881.5" y="-1345.8"
font-family="Helvetica,sans-Serif" font-size="14.00">updated_at</text>
+<text text-anchor="start" x="960.5" y="-1345.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<text text-anchor="start" x="1056.5" y="-1345.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="876.5,-1311 876.5,-1336
1137.5,-1336 1137.5,-1311 876.5,-1311"/>
+<text text-anchor="start" x="881.5" y="-1320.8"
font-family="Helvetica,sans-Serif" font-size="14.00">user_id</text>
+<text text-anchor="start" x="932.5" y="-1320.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
</g>
<!-- ab_user--dag_run_note -->
<g id="edge4" class="edge">
<title>ab_user--dag_run_note</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M763.57,-1700.78C767.19,-1694.86 770.68,-1688.92 774,-1683 819.26,-1602.28
789.07,-1560.17 847,-1488 853.27,-1480.19 860.29,-1472.79 867.8,-1465.79"/>
-<text text-anchor="start" x="836.8" y="-1454.59" font-family="Times,serif"
font-size="14.00">0..N</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M763.57,-1700.78C767.19,-1694.86 770.68,-1688.92 774,-1683 819.26,-1602.28
788.59,-1559.78 847,-1488 853.26,-1480.3 860.28,-1473.02 867.79,-1466.16"/>
+<text text-anchor="start" x="836.79" y="-1454.96" font-family="Times,serif"
font-size="14.00">0..N</text>
<text text-anchor="start" x="763.57" y="-1689.58" font-family="Times,serif"
font-size="14.00">{0,1}</text>
</g>
<!-- task_instance_note -->
<g id="node9" class="node">
<title>task_instance_note</title>
-<polygon fill="none" stroke="black" points="1265,-1606 1265,-1634 1526,-1634
1526,-1606 1265,-1606"/>
-<text text-anchor="start" x="1309.5" y="-1617.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">task_instance_note</text>
-<polygon fill="none" stroke="black" points="1265,-1581 1265,-1606 1526,-1606
1526,-1581 1265,-1581"/>
-<text text-anchor="start" x="1270" y="-1590.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">dag_id</text>
-<text text-anchor="start" x="1316" y="-1590.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1437" y="-1590.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1265,-1556 1265,-1581 1526,-1581
1526,-1556 1265,-1556"/>
-<text text-anchor="start" x="1270" y="-1565.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">map_index</text>
-<text text-anchor="start" x="1346" y="-1565.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1423" y="-1565.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1265,-1531 1265,-1556 1526,-1556
1526,-1531 1265,-1531"/>
-<text text-anchor="start" x="1270" y="-1540.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">run_id</text>
-<text text-anchor="start" x="1314" y="-1540.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1435" y="-1540.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1265,-1506 1265,-1531 1526,-1531
1526,-1506 1265,-1506"/>
-<text text-anchor="start" x="1270" y="-1515.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">task_id</text>
-<text text-anchor="start" x="1319" y="-1515.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1440" y="-1515.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1265,-1481 1265,-1506 1526,-1506
1526,-1481 1265,-1481"/>
-<text text-anchor="start" x="1270" y="-1490.8"
font-family="Helvetica,sans-Serif" font-size="14.00">content</text>
-<text text-anchor="start" x="1323" y="-1490.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(1000)]</text>
-<polygon fill="none" stroke="black" points="1265,-1456 1265,-1481 1526,-1481
1526,-1456 1265,-1456"/>
-<text text-anchor="start" x="1270" y="-1465.8"
font-family="Helvetica,sans-Serif" font-size="14.00">created_at</text>
-<text text-anchor="start" x="1343" y="-1465.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
-<text text-anchor="start" x="1439" y="-1465.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1265,-1431 1265,-1456 1526,-1456
1526,-1431 1265,-1431"/>
-<text text-anchor="start" x="1270" y="-1440.8"
font-family="Helvetica,sans-Serif" font-size="14.00">updated_at</text>
-<text text-anchor="start" x="1349" y="-1440.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
-<text text-anchor="start" x="1445" y="-1440.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1265,-1406 1265,-1431 1526,-1431
1526,-1406 1265,-1406"/>
-<text text-anchor="start" x="1270" y="-1415.8"
font-family="Helvetica,sans-Serif" font-size="14.00">user_id</text>
-<text text-anchor="start" x="1321" y="-1415.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<polygon fill="none" stroke="black" points="1265,-1615 1265,-1643 1526,-1643
1526,-1615 1265,-1615"/>
+<text text-anchor="start" x="1309.5" y="-1626.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">task_instance_note</text>
+<polygon fill="none" stroke="black" points="1265,-1590 1265,-1615 1526,-1615
1526,-1590 1265,-1590"/>
+<text text-anchor="start" x="1270" y="-1599.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">dag_id</text>
+<text text-anchor="start" x="1316" y="-1599.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1437" y="-1599.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1265,-1565 1265,-1590 1526,-1590
1526,-1565 1265,-1565"/>
+<text text-anchor="start" x="1270" y="-1574.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">map_index</text>
+<text text-anchor="start" x="1346" y="-1574.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1423" y="-1574.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1265,-1540 1265,-1565 1526,-1565
1526,-1540 1265,-1540"/>
+<text text-anchor="start" x="1270" y="-1549.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">run_id</text>
+<text text-anchor="start" x="1314" y="-1549.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1435" y="-1549.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1265,-1515 1265,-1540 1526,-1540
1526,-1515 1265,-1515"/>
+<text text-anchor="start" x="1270" y="-1524.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">task_id</text>
+<text text-anchor="start" x="1319" y="-1524.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1440" y="-1524.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1265,-1490 1265,-1515 1526,-1515
1526,-1490 1265,-1490"/>
+<text text-anchor="start" x="1270" y="-1499.8"
font-family="Helvetica,sans-Serif" font-size="14.00">content</text>
+<text text-anchor="start" x="1323" y="-1499.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(1000)]</text>
+<polygon fill="none" stroke="black" points="1265,-1465 1265,-1490 1526,-1490
1526,-1465 1265,-1465"/>
+<text text-anchor="start" x="1270" y="-1474.8"
font-family="Helvetica,sans-Serif" font-size="14.00">created_at</text>
+<text text-anchor="start" x="1343" y="-1474.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<text text-anchor="start" x="1439" y="-1474.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1265,-1440 1265,-1465 1526,-1465
1526,-1440 1265,-1440"/>
+<text text-anchor="start" x="1270" y="-1449.8"
font-family="Helvetica,sans-Serif" font-size="14.00">updated_at</text>
+<text text-anchor="start" x="1349" y="-1449.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<text text-anchor="start" x="1445" y="-1449.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1265,-1415 1265,-1440 1526,-1440
1526,-1415 1265,-1415"/>
+<text text-anchor="start" x="1270" y="-1424.8"
font-family="Helvetica,sans-Serif" font-size="14.00">user_id</text>
+<text text-anchor="start" x="1321" y="-1424.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
</g>
<!-- ab_user--task_instance_note -->
<g id="edge5" class="edge">
<title>ab_user--task_instance_note</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M763.71,-1815.7C905.51,-1749.18 1117.99,-1649.49 1256.33,-1584.59"/>
-<text text-anchor="start" x="1225.33" y="-1573.39" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="763.71" y="-1804.5" font-family="Times,serif"
font-size="14.00">{0,1}</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M763.71,-1817.41C905.51,-1752.53 1117.99,-1655.3 1256.33,-1592"/>
+<text text-anchor="start" x="1225.33" y="-1580.8" font-family="Times,serif"
font-size="14.00">0..N</text>
+<text text-anchor="start" x="763.71" y="-1806.21" font-family="Times,serif"
font-size="14.00">{0,1}</text>
</g>
<!-- ab_register_user -->
<g id="node10" class="node">
@@ -927,9 +927,9 @@
<!-- dag_run--dag_run_note -->
<g id="edge19" class="edge">
<title>dag_run--dag_run_note</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M766.59,-1249.44C799.88,-1268.33 834.98,-1288.25 867.73,-1306.83"/>
-<text text-anchor="start" x="857.73" y="-1295.63" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="766.59" y="-1238.24" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M766.59,-1250.6C799.88,-1269.75 834.98,-1289.94 867.73,-1308.77"/>
+<text text-anchor="start" x="857.73" y="-1297.57" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="766.59" y="-1239.4" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- dagrun_dataset_event -->
<g id="node27" class="node">
@@ -948,480 +948,483 @@
<!-- dag_run--dagrun_dataset_event -->
<g id="edge16" class="edge">
<title>dag_run--dagrun_dataset_event</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M766.78,-1396.41C791.38,-1424.78 818.29,-1451.6 847,-1474 857.93,-1482.53
870.12,-1490.13 882.75,-1496.87"/>
-<text text-anchor="start" x="872.75" y="-1485.67" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="766.78" y="-1385.21" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M766.55,-1399.51C791.14,-1427.94 818.11,-1454.74 847,-1477 856.62,-1484.41
867.22,-1491.07 878.24,-1497.01"/>
+<text text-anchor="start" x="868.24" y="-1485.81" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="766.55" y="-1388.31" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance -->
<g id="node28" class="node">
<title>task_instance</title>
-<polygon fill="none" stroke="black" points="855.5,-1171 855.5,-1199
1158.5,-1199 1158.5,-1171 855.5,-1171"/>
-<text text-anchor="start" x="945.5" y="-1182.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">task_instance</text>
-<polygon fill="none" stroke="black" points="855.5,-1146 855.5,-1171
1158.5,-1171 1158.5,-1146 855.5,-1146"/>
-<text text-anchor="start" x="860.5" y="-1155.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">dag_id</text>
-<text text-anchor="start" x="906.5" y="-1155.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1027.5" y="-1155.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="855.5,-1121 855.5,-1146
1158.5,-1146 1158.5,-1121 855.5,-1121"/>
-<text text-anchor="start" x="860.5" y="-1130.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">map_index</text>
-<text text-anchor="start" x="936.5" y="-1130.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1013.5" y="-1130.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="855.5,-1096 855.5,-1121
1158.5,-1121 1158.5,-1096 855.5,-1096"/>
-<text text-anchor="start" x="860.5" y="-1105.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">run_id</text>
-<text text-anchor="start" x="904.5" y="-1105.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1025.5" y="-1105.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="855.5,-1071 855.5,-1096
1158.5,-1096 1158.5,-1071 855.5,-1071"/>
-<text text-anchor="start" x="860.5" y="-1080.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">task_id</text>
-<text text-anchor="start" x="909.5" y="-1080.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1030.5" y="-1080.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="855.5,-1046 855.5,-1071
1158.5,-1071 1158.5,-1046 855.5,-1046"/>
-<text text-anchor="start" x="860.5" y="-1055.8"
font-family="Helvetica,sans-Serif" font-size="14.00">custom_operator_name</text>
-<text text-anchor="start" x="1023.5" y="-1055.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(1000)]</text>
-<polygon fill="none" stroke="black" points="855.5,-1021 855.5,-1046
1158.5,-1046 1158.5,-1021 855.5,-1021"/>
-<text text-anchor="start" x="860.5" y="-1030.8"
font-family="Helvetica,sans-Serif" font-size="14.00">duration</text>
-<text text-anchor="start" x="919.5" y="-1030.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [DOUBLE_PRECISION]</text>
-<polygon fill="none" stroke="black" points="855.5,-996 855.5,-1021
1158.5,-1021 1158.5,-996 855.5,-996"/>
-<text text-anchor="start" x="860.5" y="-1005.8"
font-family="Helvetica,sans-Serif" font-size="14.00">end_date</text>
-<text text-anchor="start" x="924.5" y="-1005.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
-<polygon fill="none" stroke="black" points="855.5,-971 855.5,-996 1158.5,-996
1158.5,-971 855.5,-971"/>
-<text text-anchor="start" x="860.5" y="-980.8"
font-family="Helvetica,sans-Serif" font-size="14.00">executor_config</text>
-<text text-anchor="start" x="970.5" y="-980.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [BYTEA]</text>
-<polygon fill="none" stroke="black" points="855.5,-946 855.5,-971 1158.5,-971
1158.5,-946 855.5,-946"/>
-<text text-anchor="start" x="860.5" y="-955.8"
font-family="Helvetica,sans-Serif" font-size="14.00">external_executor_id</text>
-<text text-anchor="start" x="1003.5" y="-955.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<polygon fill="none" stroke="black" points="855.5,-921 855.5,-946 1158.5,-946
1158.5,-921 855.5,-921"/>
-<text text-anchor="start" x="860.5" y="-930.8"
font-family="Helvetica,sans-Serif" font-size="14.00">hostname</text>
-<text text-anchor="start" x="930.5" y="-930.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(1000)]</text>
-<polygon fill="none" stroke="black" points="855.5,-896 855.5,-921 1158.5,-921
1158.5,-896 855.5,-896"/>
-<text text-anchor="start" x="860.5" y="-905.8"
font-family="Helvetica,sans-Serif" font-size="14.00">job_id</text>
-<text text-anchor="start" x="901.5" y="-905.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<polygon fill="none" stroke="black" points="855.5,-871 855.5,-896 1158.5,-896
1158.5,-871 855.5,-871"/>
-<text text-anchor="start" x="860.5" y="-880.8"
font-family="Helvetica,sans-Serif" font-size="14.00">max_tries</text>
-<text text-anchor="start" x="928.5" y="-880.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<polygon fill="none" stroke="black" points="855.5,-846 855.5,-871 1158.5,-871
1158.5,-846 855.5,-846"/>
-<text text-anchor="start" x="860.5" y="-855.8"
font-family="Helvetica,sans-Serif" font-size="14.00">next_kwargs</text>
-<text text-anchor="start" x="948.5" y="-855.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [JSON]</text>
-<polygon fill="none" stroke="black" points="855.5,-821 855.5,-846 1158.5,-846
1158.5,-821 855.5,-821"/>
-<text text-anchor="start" x="860.5" y="-830.8"
font-family="Helvetica,sans-Serif" font-size="14.00">next_method</text>
-<text text-anchor="start" x="951.5" y="-830.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(1000)]</text>
-<polygon fill="none" stroke="black" points="855.5,-796 855.5,-821 1158.5,-821
1158.5,-796 855.5,-796"/>
-<text text-anchor="start" x="860.5" y="-805.8"
font-family="Helvetica,sans-Serif" font-size="14.00">operator</text>
-<text text-anchor="start" x="920.5" y="-805.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(1000)]</text>
-<polygon fill="none" stroke="black" points="855.5,-771 855.5,-796 1158.5,-796
1158.5,-771 855.5,-771"/>
-<text text-anchor="start" x="860.5" y="-780.8"
font-family="Helvetica,sans-Serif" font-size="14.00">pid</text>
-<text text-anchor="start" x="882.5" y="-780.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<polygon fill="none" stroke="black" points="855.5,-746 855.5,-771 1158.5,-771
1158.5,-746 855.5,-746"/>
-<text text-anchor="start" x="860.5" y="-755.8"
font-family="Helvetica,sans-Serif" font-size="14.00">pool</text>
-<text text-anchor="start" x="890.5" y="-755.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(256)]</text>
-<text text-anchor="start" x="1011.5" y="-755.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="855.5,-721 855.5,-746 1158.5,-746
1158.5,-721 855.5,-721"/>
-<text text-anchor="start" x="860.5" y="-730.8"
font-family="Helvetica,sans-Serif" font-size="14.00">pool_slots</text>
-<text text-anchor="start" x="929.5" y="-730.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1006.5" y="-730.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="855.5,-696 855.5,-721 1158.5,-721
1158.5,-696 855.5,-696"/>
-<text text-anchor="start" x="860.5" y="-705.8"
font-family="Helvetica,sans-Serif" font-size="14.00">priority_weight</text>
-<text text-anchor="start" x="964.5" y="-705.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<polygon fill="none" stroke="black" points="855.5,-671 855.5,-696 1158.5,-696
1158.5,-671 855.5,-671"/>
-<text text-anchor="start" x="860.5" y="-680.8"
font-family="Helvetica,sans-Serif" font-size="14.00">queue</text>
-<text text-anchor="start" x="904.5" y="-680.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(256)]</text>
-<polygon fill="none" stroke="black" points="855.5,-646 855.5,-671 1158.5,-671
1158.5,-646 855.5,-646"/>
-<text text-anchor="start" x="860.5" y="-655.8"
font-family="Helvetica,sans-Serif" font-size="14.00">queued_by_job_id</text>
-<text text-anchor="start" x="984.5" y="-655.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<polygon fill="none" stroke="black" points="855.5,-621 855.5,-646 1158.5,-646
1158.5,-621 855.5,-621"/>
-<text text-anchor="start" x="860.5" y="-630.8"
font-family="Helvetica,sans-Serif" font-size="14.00">queued_dttm</text>
-<text text-anchor="start" x="953.5" y="-630.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
-<polygon fill="none" stroke="black" points="855.5,-596 855.5,-621 1158.5,-621
1158.5,-596 855.5,-596"/>
-<text text-anchor="start" x="860.5" y="-605.8"
font-family="Helvetica,sans-Serif" font-size="14.00">start_date</text>
-<text text-anchor="start" x="930.5" y="-605.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
-<polygon fill="none" stroke="black" points="855.5,-571 855.5,-596 1158.5,-596
1158.5,-571 855.5,-571"/>
-<text text-anchor="start" x="860.5" y="-580.8"
font-family="Helvetica,sans-Serif" font-size="14.00">state</text>
-<text text-anchor="start" x="895.5" y="-580.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(20)]</text>
-<polygon fill="none" stroke="black" points="855.5,-546 855.5,-571 1158.5,-571
1158.5,-546 855.5,-546"/>
-<text text-anchor="start" x="860.5" y="-555.8"
font-family="Helvetica,sans-Serif" font-size="14.00">trigger_id</text>
-<text text-anchor="start" x="927.5" y="-555.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<polygon fill="none" stroke="black" points="855.5,-521 855.5,-546 1158.5,-546
1158.5,-521 855.5,-521"/>
-<text text-anchor="start" x="860.5" y="-530.8"
font-family="Helvetica,sans-Serif" font-size="14.00">trigger_timeout</text>
-<text text-anchor="start" x="968.5" y="-530.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
-<polygon fill="none" stroke="black" points="855.5,-496 855.5,-521 1158.5,-521
1158.5,-496 855.5,-496"/>
-<text text-anchor="start" x="860.5" y="-505.8"
font-family="Helvetica,sans-Serif" font-size="14.00">try_number</text>
-<text text-anchor="start" x="942.5" y="-505.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<polygon fill="none" stroke="black" points="855.5,-471 855.5,-496 1158.5,-496
1158.5,-471 855.5,-471"/>
-<text text-anchor="start" x="860.5" y="-480.8"
font-family="Helvetica,sans-Serif" font-size="14.00">unixname</text>
-<text text-anchor="start" x="930.5" y="-480.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(1000)]</text>
-<polygon fill="none" stroke="black" points="855.5,-446 855.5,-471 1158.5,-471
1158.5,-446 855.5,-446"/>
-<text text-anchor="start" x="860.5" y="-455.8"
font-family="Helvetica,sans-Serif" font-size="14.00">updated_at</text>
-<text text-anchor="start" x="939.5" y="-455.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<polygon fill="none" stroke="black" points="855.5,-1181 855.5,-1209
1158.5,-1209 1158.5,-1181 855.5,-1181"/>
+<text text-anchor="start" x="945.5" y="-1192.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">task_instance</text>
+<polygon fill="none" stroke="black" points="855.5,-1156 855.5,-1181
1158.5,-1181 1158.5,-1156 855.5,-1156"/>
+<text text-anchor="start" x="860.5" y="-1165.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">dag_id</text>
+<text text-anchor="start" x="906.5" y="-1165.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1027.5" y="-1165.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="855.5,-1131 855.5,-1156
1158.5,-1156 1158.5,-1131 855.5,-1131"/>
+<text text-anchor="start" x="860.5" y="-1140.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">map_index</text>
+<text text-anchor="start" x="936.5" y="-1140.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1013.5" y="-1140.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="855.5,-1106 855.5,-1131
1158.5,-1131 1158.5,-1106 855.5,-1106"/>
+<text text-anchor="start" x="860.5" y="-1115.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">run_id</text>
+<text text-anchor="start" x="904.5" y="-1115.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1025.5" y="-1115.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="855.5,-1081 855.5,-1106
1158.5,-1106 1158.5,-1081 855.5,-1081"/>
+<text text-anchor="start" x="860.5" y="-1090.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">task_id</text>
+<text text-anchor="start" x="909.5" y="-1090.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1030.5" y="-1090.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="855.5,-1056 855.5,-1081
1158.5,-1081 1158.5,-1056 855.5,-1056"/>
+<text text-anchor="start" x="860.5" y="-1065.8"
font-family="Helvetica,sans-Serif" font-size="14.00">custom_operator_name</text>
+<text text-anchor="start" x="1023.5" y="-1065.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(1000)]</text>
+<polygon fill="none" stroke="black" points="855.5,-1031 855.5,-1056
1158.5,-1056 1158.5,-1031 855.5,-1031"/>
+<text text-anchor="start" x="860.5" y="-1040.8"
font-family="Helvetica,sans-Serif" font-size="14.00">duration</text>
+<text text-anchor="start" x="919.5" y="-1040.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [DOUBLE_PRECISION]</text>
+<polygon fill="none" stroke="black" points="855.5,-1006 855.5,-1031
1158.5,-1031 1158.5,-1006 855.5,-1006"/>
+<text text-anchor="start" x="860.5" y="-1015.8"
font-family="Helvetica,sans-Serif" font-size="14.00">end_date</text>
+<text text-anchor="start" x="924.5" y="-1015.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<polygon fill="none" stroke="black" points="855.5,-981 855.5,-1006
1158.5,-1006 1158.5,-981 855.5,-981"/>
+<text text-anchor="start" x="860.5" y="-990.8"
font-family="Helvetica,sans-Serif" font-size="14.00">executor_config</text>
+<text text-anchor="start" x="970.5" y="-990.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [BYTEA]</text>
+<polygon fill="none" stroke="black" points="855.5,-956 855.5,-981 1158.5,-981
1158.5,-956 855.5,-956"/>
+<text text-anchor="start" x="860.5" y="-965.8"
font-family="Helvetica,sans-Serif" font-size="14.00">external_executor_id</text>
+<text text-anchor="start" x="1003.5" y="-965.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<polygon fill="none" stroke="black" points="855.5,-931 855.5,-956 1158.5,-956
1158.5,-931 855.5,-931"/>
+<text text-anchor="start" x="860.5" y="-940.8"
font-family="Helvetica,sans-Serif" font-size="14.00">hostname</text>
+<text text-anchor="start" x="930.5" y="-940.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(1000)]</text>
+<polygon fill="none" stroke="black" points="855.5,-906 855.5,-931 1158.5,-931
1158.5,-906 855.5,-906"/>
+<text text-anchor="start" x="860.5" y="-915.8"
font-family="Helvetica,sans-Serif" font-size="14.00">job_id</text>
+<text text-anchor="start" x="901.5" y="-915.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<polygon fill="none" stroke="black" points="855.5,-881 855.5,-906 1158.5,-906
1158.5,-881 855.5,-881"/>
+<text text-anchor="start" x="860.5" y="-890.8"
font-family="Helvetica,sans-Serif" font-size="14.00">max_tries</text>
+<text text-anchor="start" x="928.5" y="-890.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<polygon fill="none" stroke="black" points="855.5,-856 855.5,-881 1158.5,-881
1158.5,-856 855.5,-856"/>
+<text text-anchor="start" x="860.5" y="-865.8"
font-family="Helvetica,sans-Serif" font-size="14.00">next_kwargs</text>
+<text text-anchor="start" x="948.5" y="-865.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [JSON]</text>
+<polygon fill="none" stroke="black" points="855.5,-831 855.5,-856 1158.5,-856
1158.5,-831 855.5,-831"/>
+<text text-anchor="start" x="860.5" y="-840.8"
font-family="Helvetica,sans-Serif" font-size="14.00">next_method</text>
+<text text-anchor="start" x="951.5" y="-840.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(1000)]</text>
+<polygon fill="none" stroke="black" points="855.5,-806 855.5,-831 1158.5,-831
1158.5,-806 855.5,-806"/>
+<text text-anchor="start" x="860.5" y="-815.8"
font-family="Helvetica,sans-Serif" font-size="14.00">operator</text>
+<text text-anchor="start" x="920.5" y="-815.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(1000)]</text>
+<polygon fill="none" stroke="black" points="855.5,-781 855.5,-806 1158.5,-806
1158.5,-781 855.5,-781"/>
+<text text-anchor="start" x="860.5" y="-790.8"
font-family="Helvetica,sans-Serif" font-size="14.00">pid</text>
+<text text-anchor="start" x="882.5" y="-790.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<polygon fill="none" stroke="black" points="855.5,-756 855.5,-781 1158.5,-781
1158.5,-756 855.5,-756"/>
+<text text-anchor="start" x="860.5" y="-765.8"
font-family="Helvetica,sans-Serif" font-size="14.00">pool</text>
+<text text-anchor="start" x="890.5" y="-765.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(256)]</text>
+<text text-anchor="start" x="1011.5" y="-765.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="855.5,-731 855.5,-756 1158.5,-756
1158.5,-731 855.5,-731"/>
+<text text-anchor="start" x="860.5" y="-740.8"
font-family="Helvetica,sans-Serif" font-size="14.00">pool_slots</text>
+<text text-anchor="start" x="929.5" y="-740.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1006.5" y="-740.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="855.5,-706 855.5,-731 1158.5,-731
1158.5,-706 855.5,-706"/>
+<text text-anchor="start" x="860.5" y="-715.8"
font-family="Helvetica,sans-Serif" font-size="14.00">priority_weight</text>
+<text text-anchor="start" x="964.5" y="-715.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<polygon fill="none" stroke="black" points="855.5,-681 855.5,-706 1158.5,-706
1158.5,-681 855.5,-681"/>
+<text text-anchor="start" x="860.5" y="-690.8"
font-family="Helvetica,sans-Serif" font-size="14.00">queue</text>
+<text text-anchor="start" x="904.5" y="-690.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(256)]</text>
+<polygon fill="none" stroke="black" points="855.5,-656 855.5,-681 1158.5,-681
1158.5,-656 855.5,-656"/>
+<text text-anchor="start" x="860.5" y="-665.8"
font-family="Helvetica,sans-Serif" font-size="14.00">queued_by_job_id</text>
+<text text-anchor="start" x="984.5" y="-665.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<polygon fill="none" stroke="black" points="855.5,-631 855.5,-656 1158.5,-656
1158.5,-631 855.5,-631"/>
+<text text-anchor="start" x="860.5" y="-640.8"
font-family="Helvetica,sans-Serif" font-size="14.00">queued_dttm</text>
+<text text-anchor="start" x="953.5" y="-640.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<polygon fill="none" stroke="black" points="855.5,-606 855.5,-631 1158.5,-631
1158.5,-606 855.5,-606"/>
+<text text-anchor="start" x="860.5" y="-615.8"
font-family="Helvetica,sans-Serif" font-size="14.00">rendered_map_index</text>
+<text text-anchor="start" x="1005.5" y="-615.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(64)]</text>
+<polygon fill="none" stroke="black" points="855.5,-581 855.5,-606 1158.5,-606
1158.5,-581 855.5,-581"/>
+<text text-anchor="start" x="860.5" y="-590.8"
font-family="Helvetica,sans-Serif" font-size="14.00">start_date</text>
+<text text-anchor="start" x="930.5" y="-590.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<polygon fill="none" stroke="black" points="855.5,-556 855.5,-581 1158.5,-581
1158.5,-556 855.5,-556"/>
+<text text-anchor="start" x="860.5" y="-565.8"
font-family="Helvetica,sans-Serif" font-size="14.00">state</text>
+<text text-anchor="start" x="895.5" y="-565.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(20)]</text>
+<polygon fill="none" stroke="black" points="855.5,-531 855.5,-556 1158.5,-556
1158.5,-531 855.5,-531"/>
+<text text-anchor="start" x="860.5" y="-540.8"
font-family="Helvetica,sans-Serif" font-size="14.00">trigger_id</text>
+<text text-anchor="start" x="927.5" y="-540.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<polygon fill="none" stroke="black" points="855.5,-506 855.5,-531 1158.5,-531
1158.5,-506 855.5,-506"/>
+<text text-anchor="start" x="860.5" y="-515.8"
font-family="Helvetica,sans-Serif" font-size="14.00">trigger_timeout</text>
+<text text-anchor="start" x="968.5" y="-515.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<polygon fill="none" stroke="black" points="855.5,-481 855.5,-506 1158.5,-506
1158.5,-481 855.5,-481"/>
+<text text-anchor="start" x="860.5" y="-490.8"
font-family="Helvetica,sans-Serif" font-size="14.00">try_number</text>
+<text text-anchor="start" x="942.5" y="-490.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<polygon fill="none" stroke="black" points="855.5,-456 855.5,-481 1158.5,-481
1158.5,-456 855.5,-456"/>
+<text text-anchor="start" x="860.5" y="-465.8"
font-family="Helvetica,sans-Serif" font-size="14.00">unixname</text>
+<text text-anchor="start" x="930.5" y="-465.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(1000)]</text>
+<polygon fill="none" stroke="black" points="855.5,-431 855.5,-456 1158.5,-456
1158.5,-431 855.5,-431"/>
+<text text-anchor="start" x="860.5" y="-440.8"
font-family="Helvetica,sans-Serif" font-size="14.00">updated_at</text>
+<text text-anchor="start" x="939.5" y="-440.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
</g>
<!-- dag_run--task_instance -->
<g id="edge17" class="edge">
<title>dag_run--task_instance</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M766.59,-1025.57C792.92,-1002.33 820.39,-978.26 846.93,-955.18"/>
-<text text-anchor="start" x="836.93" y="-943.98" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="766.59" y="-1014.37" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M766.59,-1024.41C792.92,-1000.96 820.39,-976.69 846.93,-953.4"/>
+<text text-anchor="start" x="836.93" y="-942.2" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="766.59" y="-1013.21" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- dag_run--task_instance -->
<g id="edge18" class="edge">
<title>dag_run--task_instance</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M766.59,-1038.75C792.92,-1015.89 820.39,-991.86 846.93,-968.47"/>
-<text text-anchor="start" x="836.93" y="-972.27" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="766.59" y="-1042.55" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M766.59,-1037.59C792.92,-1014.53 820.39,-990.29 846.93,-966.69"/>
+<text text-anchor="start" x="836.93" y="-970.49" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="766.59" y="-1041.39" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_reschedule -->
<g id="node29" class="node">
<title>task_reschedule</title>
-<polygon fill="none" stroke="black" points="1247,-1352 1247,-1380 1543,-1380
1543,-1352 1247,-1352"/>
-<text text-anchor="start" x="1322.5" y="-1363.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">task_reschedule</text>
-<polygon fill="none" stroke="black" points="1247,-1327 1247,-1352 1543,-1352
1543,-1327 1247,-1327"/>
-<text text-anchor="start" x="1252" y="-1336.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">id</text>
-<text text-anchor="start" x="1265" y="-1336.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1342" y="-1336.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1247,-1302 1247,-1327 1543,-1327
1543,-1302 1247,-1302"/>
-<text text-anchor="start" x="1252" y="-1311.8"
font-family="Helvetica,sans-Serif" font-size="14.00">dag_id</text>
-<text text-anchor="start" x="1298" y="-1311.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1419" y="-1311.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1247,-1277 1247,-1302 1543,-1302
1543,-1277 1247,-1277"/>
-<text text-anchor="start" x="1252" y="-1286.8"
font-family="Helvetica,sans-Serif" font-size="14.00">duration</text>
-<text text-anchor="start" x="1311" y="-1286.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1388" y="-1286.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1247,-1252 1247,-1277 1543,-1277
1543,-1252 1247,-1252"/>
-<text text-anchor="start" x="1252" y="-1261.8"
font-family="Helvetica,sans-Serif" font-size="14.00">end_date</text>
-<text text-anchor="start" x="1316" y="-1261.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
-<text text-anchor="start" x="1412" y="-1261.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1247,-1227 1247,-1252 1543,-1252
1543,-1227 1247,-1227"/>
-<text text-anchor="start" x="1252" y="-1236.8"
font-family="Helvetica,sans-Serif" font-size="14.00">map_index</text>
-<text text-anchor="start" x="1328" y="-1236.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1405" y="-1236.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1247,-1202 1247,-1227 1543,-1227
1543,-1202 1247,-1202"/>
-<text text-anchor="start" x="1252" y="-1211.8"
font-family="Helvetica,sans-Serif" font-size="14.00">reschedule_date</text>
-<text text-anchor="start" x="1366" y="-1211.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
-<text text-anchor="start" x="1462" y="-1211.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1247,-1177 1247,-1202 1543,-1202
1543,-1177 1247,-1177"/>
-<text text-anchor="start" x="1252" y="-1186.8"
font-family="Helvetica,sans-Serif" font-size="14.00">run_id</text>
-<text text-anchor="start" x="1296" y="-1186.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1417" y="-1186.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1247,-1152 1247,-1177 1543,-1177
1543,-1152 1247,-1152"/>
-<text text-anchor="start" x="1252" y="-1161.8"
font-family="Helvetica,sans-Serif" font-size="14.00">start_date</text>
-<text text-anchor="start" x="1322" y="-1161.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
-<text text-anchor="start" x="1418" y="-1161.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1247,-1127 1247,-1152 1543,-1152
1543,-1127 1247,-1127"/>
-<text text-anchor="start" x="1252" y="-1136.8"
font-family="Helvetica,sans-Serif" font-size="14.00">task_id</text>
-<text text-anchor="start" x="1301" y="-1136.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1422" y="-1136.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1247,-1102 1247,-1127 1543,-1127
1543,-1102 1247,-1102"/>
-<text text-anchor="start" x="1252" y="-1111.8"
font-family="Helvetica,sans-Serif" font-size="14.00">try_number</text>
-<text text-anchor="start" x="1334" y="-1111.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1411" y="-1111.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1247,-1361 1247,-1389 1543,-1389
1543,-1361 1247,-1361"/>
+<text text-anchor="start" x="1322.5" y="-1372.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">task_reschedule</text>
+<polygon fill="none" stroke="black" points="1247,-1336 1247,-1361 1543,-1361
1543,-1336 1247,-1336"/>
+<text text-anchor="start" x="1252" y="-1345.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">id</text>
+<text text-anchor="start" x="1265" y="-1345.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1342" y="-1345.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1247,-1311 1247,-1336 1543,-1336
1543,-1311 1247,-1311"/>
+<text text-anchor="start" x="1252" y="-1320.8"
font-family="Helvetica,sans-Serif" font-size="14.00">dag_id</text>
+<text text-anchor="start" x="1298" y="-1320.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1419" y="-1320.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1247,-1286 1247,-1311 1543,-1311
1543,-1286 1247,-1286"/>
+<text text-anchor="start" x="1252" y="-1295.8"
font-family="Helvetica,sans-Serif" font-size="14.00">duration</text>
+<text text-anchor="start" x="1311" y="-1295.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1388" y="-1295.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1247,-1261 1247,-1286 1543,-1286
1543,-1261 1247,-1261"/>
+<text text-anchor="start" x="1252" y="-1270.8"
font-family="Helvetica,sans-Serif" font-size="14.00">end_date</text>
+<text text-anchor="start" x="1316" y="-1270.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<text text-anchor="start" x="1412" y="-1270.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1247,-1236 1247,-1261 1543,-1261
1543,-1236 1247,-1236"/>
+<text text-anchor="start" x="1252" y="-1245.8"
font-family="Helvetica,sans-Serif" font-size="14.00">map_index</text>
+<text text-anchor="start" x="1328" y="-1245.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1405" y="-1245.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1247,-1211 1247,-1236 1543,-1236
1543,-1211 1247,-1211"/>
+<text text-anchor="start" x="1252" y="-1220.8"
font-family="Helvetica,sans-Serif" font-size="14.00">reschedule_date</text>
+<text text-anchor="start" x="1366" y="-1220.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<text text-anchor="start" x="1462" y="-1220.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1247,-1186 1247,-1211 1543,-1211
1543,-1186 1247,-1186"/>
+<text text-anchor="start" x="1252" y="-1195.8"
font-family="Helvetica,sans-Serif" font-size="14.00">run_id</text>
+<text text-anchor="start" x="1296" y="-1195.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1417" y="-1195.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1247,-1161 1247,-1186 1543,-1186
1543,-1161 1247,-1161"/>
+<text text-anchor="start" x="1252" y="-1170.8"
font-family="Helvetica,sans-Serif" font-size="14.00">start_date</text>
+<text text-anchor="start" x="1322" y="-1170.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<text text-anchor="start" x="1418" y="-1170.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1247,-1136 1247,-1161 1543,-1161
1543,-1136 1247,-1136"/>
+<text text-anchor="start" x="1252" y="-1145.8"
font-family="Helvetica,sans-Serif" font-size="14.00">task_id</text>
+<text text-anchor="start" x="1301" y="-1145.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1422" y="-1145.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1247,-1111 1247,-1136 1543,-1136
1543,-1111 1247,-1111"/>
+<text text-anchor="start" x="1252" y="-1120.8"
font-family="Helvetica,sans-Serif" font-size="14.00">try_number</text>
+<text text-anchor="start" x="1334" y="-1120.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1411" y="-1120.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
</g>
<!-- dag_run--task_reschedule -->
<g id="edge20" class="edge">
<title>dag_run--task_reschedule</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M766.72,-1189.89C793.35,-1194.91 820.9,-1199.62 847,-1203 978.56,-1220.06
1129.17,-1227.13 1239,-1231.5"/>
-<text text-anchor="start" x="1208" y="-1220.3" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="766.72" y="-1178.69" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M766.74,-1197.47C793.3,-1203.5 820.83,-1209.08 847,-1213 978.19,-1232.64
1128.83,-1239.19 1238.77,-1242.54"/>
+<text text-anchor="start" x="1207.77" y="-1231.34" font-family="Times,serif"
font-size="14.00">0..N</text>
+<text text-anchor="start" x="766.74" y="-1186.27" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- dag_run--task_reschedule -->
<g id="edge21" class="edge">
<title>dag_run--task_reschedule</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M766.72,-1207.61C793.35,-1212.91 820.9,-1217.62 847,-1221 978.56,-1238.06
1129.17,-1245.13 1239,-1246.59"/>
-<text text-anchor="start" x="1208" y="-1235.39" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="766.72" y="-1196.41" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M766.74,-1215.19C793.3,-1221.5 820.83,-1227.08 847,-1231 978.19,-1250.64
1128.83,-1257.19 1238.77,-1257.62"/>
+<text text-anchor="start" x="1207.77" y="-1246.42" font-family="Times,serif"
font-size="14.00">0..N</text>
+<text text-anchor="start" x="766.74" y="-1203.99" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--task_instance_note -->
<g id="edge45" class="edge">
<title>task_instance--task_instance_note</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1143.49,-1203.78C1170.82,-1260.57 1202.57,-1316.56 1239,-1366
1248.18,-1378.46 1258.86,-1390.43 1270.23,-1401.84"/>
-<text text-anchor="start" x="1260.23" y="-1390.64" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="1133.49" y="-1207.58" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1144.43,-1213.16C1171.47,-1269.85 1202.89,-1325.63 1239,-1375
1248.14,-1387.5 1258.78,-1399.48 1270.14,-1410.91"/>
+<text text-anchor="start" x="1260.14" y="-1399.71" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="1134.43" y="-1216.96" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--task_instance_note -->
<g id="edge46" class="edge">
<title>task_instance--task_instance_note</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1135.08,-1203.71C1164.25,-1266.82 1198.76,-1329.4 1239,-1384
1244.37,-1391.28 1250.24,-1398.39 1256.47,-1405.31"/>
-<text text-anchor="start" x="1246.47" y="-1394.11" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="1125.08" y="-1207.51" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1136.1,-1213.12C1164.96,-1276.13 1199.12,-1338.47 1239,-1393
1244.34,-1400.3 1250.19,-1407.43 1256.4,-1414.35"/>
+<text text-anchor="start" x="1246.4" y="-1403.15" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="1126.1" y="-1216.92" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--task_instance_note -->
<g id="edge47" class="edge">
<title>task_instance--task_instance_note</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1127.13,-1203.82C1157.91,-1273.17 1195.04,-1342.35 1239,-1402
1244.37,-1409.28 1250.24,-1416.39 1256.47,-1423.29"/>
-<text text-anchor="start" x="1246.47" y="-1412.09" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="1117.13" y="-1207.62" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1128.22,-1213.27C1158.69,-1282.53 1195.43,-1351.42 1239,-1411
1244.34,-1418.3 1250.19,-1425.43 1256.4,-1432.33"/>
+<text text-anchor="start" x="1246.4" y="-1421.13" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="1118.22" y="-1217.07" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--task_instance_note -->
<g id="edge48" class="edge">
<title>task_instance--task_instance_note</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1119.44,-1203.75C1151.67,-1279.38 1191.32,-1355.3 1239,-1420
1244.37,-1427.28 1250.24,-1434.39 1256.47,-1441.27"/>
-<text text-anchor="start" x="1246.47" y="-1430.07" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="1109.44" y="-1207.55" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1120.61,-1213.24C1152.51,-1288.79 1191.74,-1364.38 1239,-1429
1244.34,-1436.3 1250.19,-1443.43 1256.4,-1450.32"/>
+<text text-anchor="start" x="1246.4" y="-1439.12" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="1110.61" y="-1217.04" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--task_reschedule -->
<g id="edge37" class="edge">
<title>task_instance--task_reschedule</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.3,-982.57C1190.32,-1009.33 1215.07,-1036.6 1239,-1062 1249.98,-1073.66
1261.59,-1085.63 1273.32,-1097.63"/>
-<text text-anchor="start" x="1242.32" y="-1086.43" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="1166.3" y="-971.37" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.01,-988.74C1190.02,-1016.55 1214.84,-1044.79 1239,-1071
1249.86,-1082.78 1261.38,-1094.83 1273.05,-1106.87"/>
+<text text-anchor="start" x="1273.05" y="-1095.67" font-family="Times,serif"
font-size="14.00">0..N</text>
+<text text-anchor="start" x="1166.01" y="-977.54" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--task_reschedule -->
<g id="edge38" class="edge">
<title>task_instance--task_reschedule</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.3,-1000.37C1190.32,-1027.33 1215.07,-1054.6 1239,-1080 1244.56,-1085.9
1250.27,-1091.88 1256.08,-1097.89"/>
-<text text-anchor="start" x="1225.08" y="-1086.69" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="1166.3" y="-989.17" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.01,-1006.55C1190.02,-1034.55 1214.84,-1062.79 1239,-1089
1244.36,-1094.82 1249.89,-1100.71 1255.52,-1106.62"/>
+<text text-anchor="start" x="1224.52" y="-1095.42" font-family="Times,serif"
font-size="14.00">0..N</text>
+<text text-anchor="start" x="1166.01" y="-995.35" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--task_reschedule -->
<g id="edge39" class="edge">
<title>task_instance--task_reschedule</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.3,-1018.17C1190.22,-1045.22 1214.88,-1072.39 1238.72,-1097.7"/>
-<text text-anchor="start" x="1207.72" y="-1101.5" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="1166.3" y="-1006.97" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.01,-1024.35C1189.92,-1052.43 1214.65,-1080.57 1238.72,-1106.69"/>
+<text text-anchor="start" x="1207.72" y="-1110.49" font-family="Times,serif"
font-size="14.00">0..N</text>
+<text text-anchor="start" x="1166.01" y="-1013.15" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--task_reschedule -->
<g id="edge40" class="edge">
<title>task_instance--task_reschedule</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.3,-1035.97C1190.22,-1063.22 1214.88,-1090.39 1238.72,-1115.7"/>
-<text text-anchor="start" x="1207.72" y="-1119.5" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="1166.3" y="-1024.77" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.01,-1042.15C1189.92,-1070.43 1214.65,-1098.57 1238.72,-1124.69"/>
+<text text-anchor="start" x="1207.72" y="-1128.49" font-family="Times,serif"
font-size="14.00">0..N</text>
+<text text-anchor="start" x="1166.01" y="-1030.95" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_fail -->
<g id="node37" class="node">
<title>task_fail</title>
-<polygon fill="none" stroke="black" points="1267,-386 1267,-414 1523,-414
1523,-386 1267,-386"/>
-<text text-anchor="start" x="1357.5" y="-397.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">task_fail</text>
-<polygon fill="none" stroke="black" points="1267,-361 1267,-386 1523,-386
1523,-361 1267,-361"/>
-<text text-anchor="start" x="1272" y="-370.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">id</text>
-<text text-anchor="start" x="1285" y="-370.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1362" y="-370.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-336 1267,-361 1523,-361
1523,-336 1267,-336"/>
-<text text-anchor="start" x="1272" y="-345.8"
font-family="Helvetica,sans-Serif" font-size="14.00">dag_id</text>
-<text text-anchor="start" x="1318" y="-345.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1439" y="-345.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-311 1267,-336 1523,-336
1523,-311 1267,-311"/>
-<text text-anchor="start" x="1272" y="-320.8"
font-family="Helvetica,sans-Serif" font-size="14.00">duration</text>
-<text text-anchor="start" x="1331" y="-320.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<polygon fill="none" stroke="black" points="1267,-286 1267,-311 1523,-311
1523,-286 1267,-286"/>
-<text text-anchor="start" x="1272" y="-295.8"
font-family="Helvetica,sans-Serif" font-size="14.00">end_date</text>
-<text text-anchor="start" x="1336" y="-295.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
-<polygon fill="none" stroke="black" points="1267,-261 1267,-286 1523,-286
1523,-261 1267,-261"/>
-<text text-anchor="start" x="1272" y="-270.8"
font-family="Helvetica,sans-Serif" font-size="14.00">map_index</text>
-<text text-anchor="start" x="1348" y="-270.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1425" y="-270.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-236 1267,-261 1523,-261
1523,-236 1267,-236"/>
-<text text-anchor="start" x="1272" y="-245.8"
font-family="Helvetica,sans-Serif" font-size="14.00">run_id</text>
-<text text-anchor="start" x="1316" y="-245.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1437" y="-245.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-211 1267,-236 1523,-236
1523,-211 1267,-211"/>
-<text text-anchor="start" x="1272" y="-220.8"
font-family="Helvetica,sans-Serif" font-size="14.00">start_date</text>
-<text text-anchor="start" x="1342" y="-220.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
-<polygon fill="none" stroke="black" points="1267,-186 1267,-211 1523,-211
1523,-186 1267,-186"/>
-<text text-anchor="start" x="1272" y="-195.8"
font-family="Helvetica,sans-Serif" font-size="14.00">task_id</text>
-<text text-anchor="start" x="1321" y="-195.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1442" y="-195.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-395 1267,-423 1523,-423
1523,-395 1267,-395"/>
+<text text-anchor="start" x="1357.5" y="-406.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">task_fail</text>
+<polygon fill="none" stroke="black" points="1267,-370 1267,-395 1523,-395
1523,-370 1267,-370"/>
+<text text-anchor="start" x="1272" y="-379.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">id</text>
+<text text-anchor="start" x="1285" y="-379.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1362" y="-379.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-345 1267,-370 1523,-370
1523,-345 1267,-345"/>
+<text text-anchor="start" x="1272" y="-354.8"
font-family="Helvetica,sans-Serif" font-size="14.00">dag_id</text>
+<text text-anchor="start" x="1318" y="-354.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1439" y="-354.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-320 1267,-345 1523,-345
1523,-320 1267,-320"/>
+<text text-anchor="start" x="1272" y="-329.8"
font-family="Helvetica,sans-Serif" font-size="14.00">duration</text>
+<text text-anchor="start" x="1331" y="-329.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<polygon fill="none" stroke="black" points="1267,-295 1267,-320 1523,-320
1523,-295 1267,-295"/>
+<text text-anchor="start" x="1272" y="-304.8"
font-family="Helvetica,sans-Serif" font-size="14.00">end_date</text>
+<text text-anchor="start" x="1336" y="-304.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<polygon fill="none" stroke="black" points="1267,-270 1267,-295 1523,-295
1523,-270 1267,-270"/>
+<text text-anchor="start" x="1272" y="-279.8"
font-family="Helvetica,sans-Serif" font-size="14.00">map_index</text>
+<text text-anchor="start" x="1348" y="-279.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1425" y="-279.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-245 1267,-270 1523,-270
1523,-245 1267,-245"/>
+<text text-anchor="start" x="1272" y="-254.8"
font-family="Helvetica,sans-Serif" font-size="14.00">run_id</text>
+<text text-anchor="start" x="1316" y="-254.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1437" y="-254.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-220 1267,-245 1523,-245
1523,-220 1267,-220"/>
+<text text-anchor="start" x="1272" y="-229.8"
font-family="Helvetica,sans-Serif" font-size="14.00">start_date</text>
+<text text-anchor="start" x="1342" y="-229.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<polygon fill="none" stroke="black" points="1267,-195 1267,-220 1523,-220
1523,-195 1267,-195"/>
+<text text-anchor="start" x="1272" y="-204.8"
font-family="Helvetica,sans-Serif" font-size="14.00">task_id</text>
+<text text-anchor="start" x="1321" y="-204.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1442" y="-204.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
</g>
<!-- task_instance--task_fail -->
<g id="edge29" class="edge">
<title>task_instance--task_fail</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.07,-497.93C1188.81,-463.51 1213.27,-430.13 1239,-400 1245.21,-392.72
1251.88,-385.55 1258.83,-378.56"/>
-<text text-anchor="start" x="1227.83" y="-367.36" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="1166.07" y="-486.73" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.13,-505.1C1188.93,-471.34 1213.4,-438.58 1239,-409 1245.26,-401.77
1251.97,-394.62 1258.95,-387.66"/>
+<text text-anchor="start" x="1227.95" y="-376.46" font-family="Times,serif"
font-size="14.00">0..N</text>
+<text text-anchor="start" x="1166.13" y="-493.9" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--task_fail -->
<g id="edge30" class="edge">
<title>task_instance--task_fail</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.07,-515.79C1188.81,-481.51 1213.27,-448.13 1239,-418 1245.21,-410.72
1251.88,-403.55 1258.83,-396.54"/>
-<text text-anchor="start" x="1227.83" y="-385.34" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="1166.07" y="-504.59" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.13,-522.96C1188.93,-489.34 1213.4,-456.58 1239,-427 1245.26,-419.77
1251.97,-412.62 1258.95,-405.64"/>
+<text text-anchor="start" x="1227.95" y="-394.44" font-family="Times,serif"
font-size="14.00">0..N</text>
+<text text-anchor="start" x="1166.13" y="-511.76" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--task_fail -->
<g id="edge31" class="edge">
<title>task_instance--task_fail</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.07,-533.66C1188.81,-499.51 1213.27,-466.13 1239,-436 1245.21,-428.72
1251.88,-421.55 1258.83,-414.52"/>
-<text text-anchor="start" x="1227.83" y="-403.32" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="1166.07" y="-522.46" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.13,-540.82C1188.93,-507.34 1213.4,-474.58 1239,-445 1245.26,-437.77
1251.97,-430.62 1258.95,-423.62"/>
+<text text-anchor="start" x="1227.95" y="-412.42" font-family="Times,serif"
font-size="14.00">0..N</text>
+<text text-anchor="start" x="1166.13" y="-529.62" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--task_fail -->
<g id="edge32" class="edge">
<title>task_instance--task_fail</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.07,-551.53C1188.81,-517.51 1213.27,-484.13 1239,-454 1249.5,-441.7
1261.31,-429.67 1273.59,-418.07"/>
-<text text-anchor="start" x="1242.59" y="-421.87" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="1166.07" y="-540.33" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.13,-558.69C1188.93,-525.34 1213.4,-492.58 1239,-463 1249.59,-450.77
1261.44,-438.79 1273.75,-427.22"/>
+<text text-anchor="start" x="1242.75" y="-431.02" font-family="Times,serif"
font-size="14.00">0..N</text>
+<text text-anchor="start" x="1166.13" y="-547.49" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_map -->
<g id="node38" class="node">
<title>task_map</title>
-<polygon fill="none" stroke="black" points="1267,-1048 1267,-1076 1523,-1076
1523,-1048 1267,-1048"/>
-<text text-anchor="start" x="1352.5" y="-1059.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">task_map</text>
-<polygon fill="none" stroke="black" points="1267,-1023 1267,-1048 1523,-1048
1523,-1023 1267,-1023"/>
-<text text-anchor="start" x="1272" y="-1032.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">dag_id</text>
-<text text-anchor="start" x="1318" y="-1032.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1439" y="-1032.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-998 1267,-1023 1523,-1023
1523,-998 1267,-998"/>
-<text text-anchor="start" x="1272" y="-1007.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">map_index</text>
-<text text-anchor="start" x="1348" y="-1007.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1425" y="-1007.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-973 1267,-998 1523,-998
1523,-973 1267,-973"/>
-<text text-anchor="start" x="1272" y="-982.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">run_id</text>
-<text text-anchor="start" x="1316" y="-982.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1437" y="-982.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-948 1267,-973 1523,-973
1523,-948 1267,-948"/>
-<text text-anchor="start" x="1272" y="-957.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">task_id</text>
-<text text-anchor="start" x="1321" y="-957.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1442" y="-957.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-923 1267,-948 1523,-948
1523,-923 1267,-923"/>
-<text text-anchor="start" x="1272" y="-932.8"
font-family="Helvetica,sans-Serif" font-size="14.00">keys</text>
-<text text-anchor="start" x="1304" y="-932.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [JSON]</text>
-<polygon fill="none" stroke="black" points="1267,-898 1267,-923 1523,-923
1523,-898 1267,-898"/>
-<text text-anchor="start" x="1272" y="-907.8"
font-family="Helvetica,sans-Serif" font-size="14.00">length</text>
-<text text-anchor="start" x="1317" y="-907.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1394" y="-907.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-1057 1267,-1085 1523,-1085
1523,-1057 1267,-1057"/>
+<text text-anchor="start" x="1352.5" y="-1068.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">task_map</text>
+<polygon fill="none" stroke="black" points="1267,-1032 1267,-1057 1523,-1057
1523,-1032 1267,-1032"/>
+<text text-anchor="start" x="1272" y="-1041.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">dag_id</text>
+<text text-anchor="start" x="1318" y="-1041.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1439" y="-1041.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-1007 1267,-1032 1523,-1032
1523,-1007 1267,-1007"/>
+<text text-anchor="start" x="1272" y="-1016.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">map_index</text>
+<text text-anchor="start" x="1348" y="-1016.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1425" y="-1016.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-982 1267,-1007 1523,-1007
1523,-982 1267,-982"/>
+<text text-anchor="start" x="1272" y="-991.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">run_id</text>
+<text text-anchor="start" x="1316" y="-991.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1437" y="-991.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-957 1267,-982 1523,-982
1523,-957 1267,-957"/>
+<text text-anchor="start" x="1272" y="-966.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">task_id</text>
+<text text-anchor="start" x="1321" y="-966.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1442" y="-966.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-932 1267,-957 1523,-957
1523,-932 1267,-932"/>
+<text text-anchor="start" x="1272" y="-941.8"
font-family="Helvetica,sans-Serif" font-size="14.00">keys</text>
+<text text-anchor="start" x="1304" y="-941.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [JSON]</text>
+<polygon fill="none" stroke="black" points="1267,-907 1267,-932 1523,-932
1523,-907 1267,-907"/>
+<text text-anchor="start" x="1272" y="-916.8"
font-family="Helvetica,sans-Serif" font-size="14.00">length</text>
+<text text-anchor="start" x="1317" y="-916.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1394" y="-916.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
</g>
<!-- task_instance--task_map -->
<g id="edge33" class="edge">
<title>task_instance--task_map</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-870.34C1196.93,-882.9 1228.98,-896.68 1258.97,-910.29"/>
-<text text-anchor="start" x="1248.97" y="-899.09" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="1166.1" y="-859.14" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-872.26C1196.93,-885.78 1228.98,-900.56 1258.97,-915.1"/>
+<text text-anchor="start" x="1248.97" y="-903.9" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="1166.1" y="-861.06" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--task_map -->
<g id="edge34" class="edge">
<title>task_instance--task_map</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-883.64C1196.93,-896.55 1228.98,-910.21 1258.97,-923.23"/>
-<text text-anchor="start" x="1248.97" y="-927.03" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="1166.1" y="-887.44" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-885.57C1196.93,-899.43 1228.98,-914.09 1258.97,-928.04"/>
+<text text-anchor="start" x="1248.97" y="-931.84" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="1166.1" y="-889.37" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--task_map -->
<g id="edge35" class="edge">
<title>task_instance--task_map</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-896.95C1196.93,-910.21 1228.98,-923.75 1258.97,-936.17"/>
-<text text-anchor="start" x="1248.97" y="-939.97" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="1166.1" y="-900.75" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-898.87C1196.93,-913.09 1228.98,-927.62 1258.97,-940.98"/>
+<text text-anchor="start" x="1248.97" y="-944.78" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="1166.1" y="-902.67" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--task_map -->
<g id="edge36" class="edge">
<title>task_instance--task_map</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-910.25C1196.93,-923.86 1228.98,-937.28 1258.97,-949.11"/>
-<text text-anchor="start" x="1248.97" y="-952.91" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="1166.1" y="-914.05" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-912.18C1196.93,-926.74 1228.98,-941.16 1258.97,-953.92"/>
+<text text-anchor="start" x="1248.97" y="-957.72" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="1166.1" y="-915.98" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- xcom -->
<g id="node39" class="node">
<title>xcom</title>
-<polygon fill="none" stroke="black" points="1267,-844 1267,-872 1524,-872
1524,-844 1267,-844"/>
-<text text-anchor="start" x="1371" y="-855.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">xcom</text>
-<polygon fill="none" stroke="black" points="1267,-819 1267,-844 1524,-844
1524,-819 1267,-819"/>
-<text text-anchor="start" x="1272" y="-828.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">dag_run_id</text>
-<text text-anchor="start" x="1349" y="-828.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1426" y="-828.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-794 1267,-819 1524,-819
1524,-794 1267,-794"/>
-<text text-anchor="start" x="1272" y="-803.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">key</text>
-<text text-anchor="start" x="1297" y="-803.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(512)]</text>
-<text text-anchor="start" x="1418" y="-803.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-769 1267,-794 1524,-794
1524,-769 1267,-769"/>
-<text text-anchor="start" x="1272" y="-778.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">map_index</text>
-<text text-anchor="start" x="1348" y="-778.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1425" y="-778.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-744 1267,-769 1524,-769
1524,-744 1267,-744"/>
-<text text-anchor="start" x="1272" y="-753.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">task_id</text>
-<text text-anchor="start" x="1321" y="-753.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1442" y="-753.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-719 1267,-744 1524,-744
1524,-719 1267,-719"/>
-<text text-anchor="start" x="1272" y="-728.8"
font-family="Helvetica,sans-Serif" font-size="14.00">dag_id</text>
-<text text-anchor="start" x="1318" y="-728.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1439" y="-728.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-694 1267,-719 1524,-719
1524,-694 1267,-694"/>
-<text text-anchor="start" x="1272" y="-703.8"
font-family="Helvetica,sans-Serif" font-size="14.00">run_id</text>
-<text text-anchor="start" x="1316" y="-703.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1437" y="-703.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-669 1267,-694 1524,-694
1524,-669 1267,-669"/>
-<text text-anchor="start" x="1272" y="-678.8"
font-family="Helvetica,sans-Serif" font-size="14.00">timestamp</text>
-<text text-anchor="start" x="1347" y="-678.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
-<text text-anchor="start" x="1443" y="-678.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1267,-644 1267,-669 1524,-669
1524,-644 1267,-644"/>
-<text text-anchor="start" x="1272" y="-653.8"
font-family="Helvetica,sans-Serif" font-size="14.00">value</text>
-<text text-anchor="start" x="1310" y="-653.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [BYTEA]</text>
+<polygon fill="none" stroke="black" points="1267,-853 1267,-881 1524,-881
1524,-853 1267,-853"/>
+<text text-anchor="start" x="1371" y="-864.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">xcom</text>
+<polygon fill="none" stroke="black" points="1267,-828 1267,-853 1524,-853
1524,-828 1267,-828"/>
+<text text-anchor="start" x="1272" y="-837.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">dag_run_id</text>
+<text text-anchor="start" x="1349" y="-837.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1426" y="-837.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-803 1267,-828 1524,-828
1524,-803 1267,-803"/>
+<text text-anchor="start" x="1272" y="-812.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">key</text>
+<text text-anchor="start" x="1297" y="-812.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(512)]</text>
+<text text-anchor="start" x="1418" y="-812.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-778 1267,-803 1524,-803
1524,-778 1267,-778"/>
+<text text-anchor="start" x="1272" y="-787.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">map_index</text>
+<text text-anchor="start" x="1348" y="-787.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1425" y="-787.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-753 1267,-778 1524,-778
1524,-753 1267,-753"/>
+<text text-anchor="start" x="1272" y="-762.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">task_id</text>
+<text text-anchor="start" x="1321" y="-762.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1442" y="-762.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-728 1267,-753 1524,-753
1524,-728 1267,-728"/>
+<text text-anchor="start" x="1272" y="-737.8"
font-family="Helvetica,sans-Serif" font-size="14.00">dag_id</text>
+<text text-anchor="start" x="1318" y="-737.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1439" y="-737.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-703 1267,-728 1524,-728
1524,-703 1267,-703"/>
+<text text-anchor="start" x="1272" y="-712.8"
font-family="Helvetica,sans-Serif" font-size="14.00">run_id</text>
+<text text-anchor="start" x="1316" y="-712.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1437" y="-712.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-678 1267,-703 1524,-703
1524,-678 1267,-678"/>
+<text text-anchor="start" x="1272" y="-687.8"
font-family="Helvetica,sans-Serif" font-size="14.00">timestamp</text>
+<text text-anchor="start" x="1347" y="-687.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [TIMESTAMP]</text>
+<text text-anchor="start" x="1443" y="-687.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1267,-653 1267,-678 1524,-678
1524,-653 1267,-653"/>
+<text text-anchor="start" x="1272" y="-662.8"
font-family="Helvetica,sans-Serif" font-size="14.00">value</text>
+<text text-anchor="start" x="1310" y="-662.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [BYTEA]</text>
</g>
<!-- task_instance--xcom -->
<g id="edge41" class="edge">
<title>task_instance--xcom</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-776.37C1196.72,-770.7 1228.55,-765.52 1258.36,-761.38"/>
-<text text-anchor="start" x="1227.36" y="-750.18" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="1166.1" y="-765.17" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-778.29C1196.72,-773.57 1228.55,-769.39 1258.36,-766.17"/>
+<text text-anchor="start" x="1227.36" y="-754.97" font-family="Times,serif"
font-size="14.00">0..N</text>
+<text text-anchor="start" x="1166.1" y="-767.09" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--xcom -->
<g id="edge42" class="edge">
<title>task_instance--xcom</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-789.67C1196.72,-784.35 1228.55,-779.06 1258.36,-774.33"/>
-<text text-anchor="start" x="1248.36" y="-778.13" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="1166.1" y="-793.47" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-791.6C1196.72,-787.23 1228.55,-782.92 1258.36,-779.12"/>
+<text text-anchor="start" x="1248.36" y="-782.92" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="1166.1" y="-795.4" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--xcom -->
<g id="edge43" class="edge">
<title>task_instance--xcom</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-802.98C1196.72,-798 1228.55,-792.59 1258.36,-787.29"/>
-<text text-anchor="start" x="1227.36" y="-791.09" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="1166.1" y="-806.78" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-804.9C1196.72,-800.88 1228.55,-796.46 1258.36,-792.08"/>
+<text text-anchor="start" x="1248.36" y="-795.88" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="1166.1" y="-808.7" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--xcom -->
<g id="edge44" class="edge">
<title>task_instance--xcom</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-816.29C1196.72,-811.66 1228.55,-806.13 1258.36,-800.24"/>
-<text text-anchor="start" x="1227.36" y="-804.04" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="1166.1" y="-820.09" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.1,-818.21C1196.72,-814.53 1228.55,-809.99 1258.36,-805.03"/>
+<text text-anchor="start" x="1227.36" y="-808.83" font-family="Times,serif"
font-size="14.00">0..N</text>
+<text text-anchor="start" x="1166.1" y="-822.01" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- rendered_task_instance_fields -->
<g id="node40" class="node">
<title>rendered_task_instance_fields</title>
-<polygon fill="none" stroke="black" points="1255,-590 1255,-618 1535,-618
1535,-590 1255,-590"/>
-<text text-anchor="start" x="1260" y="-601.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">rendered_task_instance_fields</text>
-<polygon fill="none" stroke="black" points="1255,-565 1255,-590 1535,-590
1535,-565 1255,-565"/>
-<text text-anchor="start" x="1260" y="-574.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">dag_id</text>
-<text text-anchor="start" x="1306" y="-574.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1427" y="-574.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1255,-540 1255,-565 1535,-565
1535,-540 1255,-540"/>
-<text text-anchor="start" x="1260" y="-549.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">map_index</text>
-<text text-anchor="start" x="1336" y="-549.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
-<text text-anchor="start" x="1413" y="-549.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1255,-515 1255,-540 1535,-540
1535,-515 1255,-515"/>
-<text text-anchor="start" x="1260" y="-524.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">run_id</text>
-<text text-anchor="start" x="1304" y="-524.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1425" y="-524.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1255,-490 1255,-515 1535,-515
1535,-490 1255,-490"/>
-<text text-anchor="start" x="1260" y="-499.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">task_id</text>
-<text text-anchor="start" x="1309" y="-499.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
-<text text-anchor="start" x="1430" y="-499.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
-<polygon fill="none" stroke="black" points="1255,-465 1255,-490 1535,-490
1535,-465 1255,-465"/>
-<text text-anchor="start" x="1260" y="-474.8"
font-family="Helvetica,sans-Serif" font-size="14.00">k8s_pod_yaml</text>
-<text text-anchor="start" x="1359" y="-474.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [JSON]</text>
-<polygon fill="none" stroke="black" points="1255,-440 1255,-465 1535,-465
1535,-440 1255,-440"/>
-<text text-anchor="start" x="1260" y="-449.8"
font-family="Helvetica,sans-Serif" font-size="14.00">rendered_fields</text>
-<text text-anchor="start" x="1367" y="-449.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [JSON]</text>
-<text text-anchor="start" x="1418" y="-449.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1255,-599 1255,-627 1535,-627
1535,-599 1255,-599"/>
+<text text-anchor="start" x="1260" y="-610.2"
font-family="Helvetica,sans-Serif" font-weight="bold"
font-size="16.00">rendered_task_instance_fields</text>
+<polygon fill="none" stroke="black" points="1255,-574 1255,-599 1535,-599
1535,-574 1255,-574"/>
+<text text-anchor="start" x="1260" y="-583.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">dag_id</text>
+<text text-anchor="start" x="1306" y="-583.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1427" y="-583.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1255,-549 1255,-574 1535,-574
1535,-549 1255,-549"/>
+<text text-anchor="start" x="1260" y="-558.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">map_index</text>
+<text text-anchor="start" x="1336" y="-558.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [INTEGER]</text>
+<text text-anchor="start" x="1413" y="-558.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1255,-524 1255,-549 1535,-549
1535,-524 1255,-524"/>
+<text text-anchor="start" x="1260" y="-533.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">run_id</text>
+<text text-anchor="start" x="1304" y="-533.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1425" y="-533.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1255,-499 1255,-524 1535,-524
1535,-499 1255,-499"/>
+<text text-anchor="start" x="1260" y="-508.8"
font-family="Helvetica,sans-Serif" text-decoration="underline"
font-size="14.00">task_id</text>
+<text text-anchor="start" x="1309" y="-508.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [VARCHAR(250)]</text>
+<text text-anchor="start" x="1430" y="-508.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
+<polygon fill="none" stroke="black" points="1255,-474 1255,-499 1535,-499
1535,-474 1255,-474"/>
+<text text-anchor="start" x="1260" y="-483.8"
font-family="Helvetica,sans-Serif" font-size="14.00">k8s_pod_yaml</text>
+<text text-anchor="start" x="1359" y="-483.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [JSON]</text>
+<polygon fill="none" stroke="black" points="1255,-449 1255,-474 1535,-474
1535,-449 1255,-449"/>
+<text text-anchor="start" x="1260" y="-458.8"
font-family="Helvetica,sans-Serif" font-size="14.00">rendered_fields</text>
+<text text-anchor="start" x="1367" y="-458.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> [JSON]</text>
+<text text-anchor="start" x="1418" y="-458.8"
font-family="Helvetica,sans-Serif" font-size="14.00"> NOT NULL</text>
</g>
<!-- task_instance--rendered_task_instance_fields -->
<g id="edge49" class="edge">
<title>task_instance--rendered_task_instance_fields</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.31,-660.71C1190.33,-641.05 1215.08,-621.71 1239,-604 1241.59,-602.08
1244.21,-600.16 1246.86,-598.24"/>
-<text text-anchor="start" x="1236.86" y="-587.04" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="1166.31" y="-649.51" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.28,-667.21C1190.41,-648.51 1215.2,-630.04 1239,-613 1241.62,-611.12
1244.27,-609.24 1246.95,-607.35"/>
+<text text-anchor="start" x="1236.95" y="-596.15" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="1166.28" y="-656.01" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--rendered_task_instance_fields -->
<g id="edge50" class="edge">
<title>task_instance--rendered_task_instance_fields</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.31,-678.52C1190.33,-659.05 1215.08,-639.71 1239,-622 1241.59,-620.08
1244.21,-618.16 1246.86,-616.24"/>
-<text text-anchor="start" x="1236.86" y="-605.04" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="1166.31" y="-667.32" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.28,-685.01C1190.41,-666.51 1215.2,-648.04 1239,-631 1241.62,-629.12
1244.27,-627.24 1246.95,-625.35"/>
+<text text-anchor="start" x="1236.95" y="-614.15" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="1166.28" y="-673.81" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--rendered_task_instance_fields -->
<g id="edge51" class="edge">
<title>task_instance--rendered_task_instance_fields</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.31,-696.32C1190.33,-677.05 1215.08,-657.71 1239,-640 1247.03,-634.06
1255.38,-628.06 1263.87,-622.09"/>
-<text text-anchor="start" x="1253.87" y="-625.89" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="1166.31" y="-685.12" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.28,-702.8C1190.41,-684.51 1215.2,-666.04 1239,-649 1247.25,-643.09
1255.82,-637.09 1264.5,-631.1"/>
+<text text-anchor="start" x="1254.5" y="-634.9" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="1166.28" y="-691.6" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- task_instance--rendered_task_instance_fields -->
<g id="edge52" class="edge">
<title>task_instance--rendered_task_instance_fields</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.31,-714.12C1190.33,-695.05 1215.08,-675.71 1239,-658 1255.05,-646.12
1272.42,-634.01 1289.53,-622.09"/>
-<text text-anchor="start" x="1279.53" y="-625.89" font-family="Times,serif"
font-size="14.00">1</text>
-<text text-anchor="start" x="1166.31" y="-702.92" font-family="Times,serif"
font-size="14.00">1</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M1166.28,-720.6C1190.41,-702.51 1215.2,-684.04 1239,-667 1255.37,-655.28
1272.98,-643.2 1290.26,-631.25"/>
+<text text-anchor="start" x="1280.26" y="-635.05" font-family="Times,serif"
font-size="14.00">1</text>
+<text text-anchor="start" x="1166.28" y="-709.4" font-family="Times,serif"
font-size="14.00">1</text>
</g>
<!-- ab_permission -->
<g id="node30" class="node">
@@ -1601,9 +1604,9 @@
<!-- trigger--task_instance -->
<g id="edge28" class="edge">
<title>trigger--task_instance</title>
-<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M764.64,-814.96C791.5,-815.86 819.6,-816.8 846.74,-817.7"/>
-<text text-anchor="start" x="815.74" y="-806.5" font-family="Times,serif"
font-size="14.00">0..N</text>
-<text text-anchor="start" x="764.64" y="-803.76" font-family="Times,serif"
font-size="14.00">{0,1}</text>
+<path fill="none" stroke="#7f7f7f" stroke-dasharray="5,2"
d="M764.64,-813.82C791.5,-814.51 819.6,-815.23 846.74,-815.92"/>
+<text text-anchor="start" x="815.74" y="-804.72" font-family="Times,serif"
font-size="14.00">0..N</text>
+<text text-anchor="start" x="764.64" y="-802.62" font-family="Times,serif"
font-size="14.00">{0,1}</text>
</g>
<!-- session -->
<g id="node41" class="node">
diff --git a/docs/apache-airflow/migrations-ref.rst
b/docs/apache-airflow/migrations-ref.rst
index 0b068e5e53..4b35d68be2 100644
--- a/docs/apache-airflow/migrations-ref.rst
+++ b/docs/apache-airflow/migrations-ref.rst
@@ -39,7 +39,9 @@ Here's the list of all the Database Migrations that are
executed via when you ru
+---------------------------------+-------------------+-------------------+--------------------------------------------------------------+
| Revision ID | Revises ID | Airflow Version |
Description |
+=================================+===================+===================+==============================================================+
-| ``88344c1d9134`` (head) | ``10b52ebd31f7`` | ``2.8.1`` |
Drop unused TI index |
+| ``1fd565369930`` (head) | ``88344c1d9134`` | ``2.9.0`` |
Add rendered_map_index to TaskInstance. |
++---------------------------------+-------------------+-------------------+--------------------------------------------------------------+
+| ``88344c1d9134`` | ``10b52ebd31f7`` | ``2.8.1`` |
Drop unused TI index |
+---------------------------------+-------------------+-------------------+--------------------------------------------------------------+
| ``10b52ebd31f7`` | ``bd5dfbe21f88`` | ``2.8.0`` |
Add processor_subdir to ImportError. |
+---------------------------------+-------------------+-------------------+--------------------------------------------------------------+