Distributed Job Scheduler (Airflow, Temporal, Celery)
Diagram: Distributed Job Scheduler (Airflow, Temporal, Celery) · 105 elements
{
"type": "excalidraw",
"version": 2,
"source": "https://marketplace.visualstudio.com/items?itemName=pomdtr.excalidraw-editor",
"elements": [
{
"id": "w40-DcQ-CQJBQrFHiudQd",
"type": "text",
"x": 693.25,
"y": 124.171875,
"width": 1084.619140625,
"height": 100,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "a0",
"roundness": null,
"seed": 860716622,
"version": 280,
"versionNonce": 371766350,
"isDeleted": false,
"boundElements": [],
"updated": 1766905595486,
"link": null,
"locked": false,
"text": "Design Distributed Job Scheduler (Airflow, Temporal)\n\nA job scheduler is a program that automatically schedules and executes jobs at specified times or intervals.\nIt is used to automate repetitive tasks, run scheduled maintenance, or execute batch processes near real time",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Design Distributed Job Scheduler (Airflow, Temporal)\n\nA job scheduler is a program that automatically schedules and executes jobs at specified times or intervals.\nIt is used to automate repetitive tasks, run scheduled maintenance, or execute batch processes near real time",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "nRC8Xrzu01JRyzuQmlDuT",
"type": "text",
"x": 646.375,
"y": 291,
"width": 561.5595703125,
"height": 150,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "a1",
"roundness": null,
"seed": 52706642,
"version": 219,
"versionNonce": 548979534,
"isDeleted": false,
"boundElements": [],
"updated": 1766905659105,
"link": null,
"locked": false,
"text": "Functional Requirements\n- User can create/schedule a job (immediate/future/cron)\n- monitor the status of job (real time)\n- Support update/cancel schedule jobs.\n\nOut of Scope: dependenc in job (DAG)",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Functional Requirements\n- User can create/schedule a job (immediate/future/cron)\n- monitor the status of job (real time)\n- Support update/cancel schedule jobs.\n\nOut of Scope: dependenc in job (DAG)",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "BYKqBdlgEY4tTXoOqf6Bz",
"type": "text",
"x": 1371.21875,
"y": 286.5,
"width": 793.99951171875,
"height": 125,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "a2",
"roundness": null,
"seed": 1751940690,
"version": 222,
"versionNonce": 64130318,
"isDeleted": false,
"boundElements": [],
"updated": 1766905725819,
"link": null,
"locked": false,
"text": "Non Functional Requirements\n- Scale: 10k jobs/sec\n- CAP Theorem: Availability > Consistency\n- Job should run at least once\n- Latency: The system should execute the jobs within 2s of their scheduled time",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Non Functional Requirements\n- Scale: 10k jobs/sec\n- CAP Theorem: Availability > Consistency\n- Job should run at least once\n- Latency: The system should execute the jobs within 2s of their scheduled time",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "rVbu62nuc9cEGAn1zUERq",
"type": "text",
"x": 676.046875,
"y": 520.34375,
"width": 129.29991149902344,
"height": 100,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "a3",
"roundness": null,
"seed": 811671950,
"version": 50,
"versionNonce": 1885552658,
"isDeleted": false,
"boundElements": [],
"updated": 1766905748888,
"link": null,
"locked": false,
"text": "Core Entities\n- Job\n- Scheduler\n- Executor",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Core Entities\n- Job\n- Scheduler\n- Executor",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "IlbmUkdvL2bEWR6H25mVV",
"type": "text",
"x": 1174.140625,
"y": 523.609375,
"width": 641.8195190429688,
"height": 175,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "a4",
"roundness": null,
"seed": 240903058,
"version": 366,
"versionNonce": 443574222,
"isDeleted": false,
"boundElements": [],
"updated": 1766905877501,
"link": null,
"locked": false,
"text": "API Designing\n- POST /v1/api/jobs - create/schedule a job\n- GET /v1/api/jobs/{jobID} - get the job detail\n- GET / v1/jobs/{jobID}/{status} - get the current status\n- PUT /v1/jobs/{jobID} - update job metadata/schedule\n- POST /v1/jobs/{jobID}/cancel - Cancel a scheduled/running job\n- POST /v1/jobs/{jobID}/runNow - Run job immediately",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "API Designing\n- POST /v1/api/jobs - create/schedule a job\n- GET /v1/api/jobs/{jobID} - get the job detail\n- GET / v1/jobs/{jobID}/{status} - get the current status\n- PUT /v1/jobs/{jobID} - update job metadata/schedule\n- POST /v1/jobs/{jobID}/cancel - Cancel a scheduled/running job\n- POST /v1/jobs/{jobID}/runNow - Run job immediately",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "-ymPYkEEeSBcWZXQP8KRI",
"type": "text",
"x": 684.890625,
"y": 777.265625,
"width": 37.91996765136719,
"height": 75,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "a5",
"roundness": null,
"seed": 1269232082,
"version": 7,
"versionNonce": 114375118,
"isDeleted": false,
"boundElements": [],
"updated": 1766905884017,
"link": null,
"locked": false,
"text": "HLD\n\n",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "HLD\n\n",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "9I1bFkGz0f6-jpuUJnVal",
"type": "rectangle",
"x": 682.671875,
"y": 912.546875,
"width": 112.12109375,
"height": 49.9140625,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "a6",
"roundness": {
"type": 3
},
"seed": 1427800018,
"version": 19,
"versionNonce": 1850329934,
"isDeleted": false,
"boundElements": [
{
"id": "3yf_qD6qlWmYj9S-LTa2i",
"type": "arrow"
}
],
"updated": 1766906098276,
"link": null,
"locked": false
},
{
"id": "kIV6vcZB4_rm7sFfdDOu6",
"type": "rectangle",
"x": 927.421875,
"y": 850.875,
"width": 196.02734375000009,
"height": 367.73046875000006,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "a7",
"roundness": {
"type": 3
},
"seed": 532841362,
"version": 87,
"versionNonce": 512797198,
"isDeleted": false,
"boundElements": [
{
"id": "TVavkA3meLat9Le-M1B-x",
"type": "arrow"
},
{
"id": "y2XEieU1YCfwWfaRB0I84",
"type": "arrow"
},
{
"id": "pqQpLhjnX0aXo47To1KA-",
"type": "arrow"
}
],
"updated": 1766906066397,
"link": null,
"locked": false
},
{
"id": "iuaaBnC_GqVms9PBKPe0Y",
"type": "rectangle",
"x": 1218.703125,
"y": 962.296875,
"width": 164.265625,
"height": 71.08984375,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "a8",
"roundness": {
"type": 3
},
"seed": 377552206,
"version": 64,
"versionNonce": 1340541326,
"isDeleted": false,
"boundElements": [
{
"type": "text",
"id": "r3ynFS_0sWmMXt_KxeLIx"
},
{
"id": "TVavkA3meLat9Le-M1B-x",
"type": "arrow"
},
{
"id": "Mne_rmXLX8PKxBxSZbnkE",
"type": "arrow"
}
],
"updated": 1766905960138,
"link": null,
"locked": false
},
{
"id": "r3ynFS_0sWmMXt_KxeLIx",
"type": "text",
"x": 1263.0859603881836,
"y": 985.341796875,
"width": 75.49995422363281,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "a8V",
"roundness": null,
"seed": 1512748818,
"version": 13,
"versionNonce": 464886226,
"isDeleted": false,
"boundElements": [],
"updated": 1766905914225,
"link": null,
"locked": false,
"text": "Job Svc",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "center",
"verticalAlign": "middle",
"containerId": "iuaaBnC_GqVms9PBKPe0Y",
"originalText": "Job Svc",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "UfDLt9b7dlKaq-09wnJyk",
"type": "ellipse",
"x": 1625.40625,
"y": 935.40625,
"width": 118.09375,
"height": 114.0625,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "a9",
"roundness": {
"type": 2
},
"seed": 1543170258,
"version": 32,
"versionNonce": 816612686,
"isDeleted": false,
"boundElements": [
{
"type": "text",
"id": "Z8d_Czv_yqXMdbUiBPE3n"
},
{
"id": "Mne_rmXLX8PKxBxSZbnkE",
"type": "arrow"
},
{
"id": "3vf6cJGcAwL1X7KGaghP7",
"type": "arrow"
},
{
"id": "2twZgjXeVds5OQUTXaCYt",
"type": "arrow"
}
],
"updated": 1766905977639,
"link": null,
"locked": false
},
{
"id": "Z8d_Czv_yqXMdbUiBPE3n",
"type": "text",
"x": 1669.2906908763052,
"y": 980.1103163854547,
"width": 30.819976806640625,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aA",
"roundness": null,
"seed": 2010737294,
"version": 6,
"versionNonce": 414689294,
"isDeleted": false,
"boundElements": [],
"updated": 1766905918276,
"link": null,
"locked": false,
"text": "DB",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "center",
"verticalAlign": "middle",
"containerId": "UfDLt9b7dlKaq-09wnJyk",
"originalText": "DB",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "0ZGPQavzrzFPl13sm-UM3",
"type": "text",
"x": 946.0078125,
"y": 923.65234375,
"width": 158.35987854003906,
"height": 150,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aB",
"roundness": null,
"seed": 787504530,
"version": 90,
"versionNonce": 1680254670,
"isDeleted": false,
"boundElements": [
{
"id": "3yf_qD6qlWmYj9S-LTa2i",
"type": "arrow"
}
],
"updated": 1766906098276,
"link": null,
"locked": false,
"text": "LB\nAPI Gateway\n\n- authentication\n- authorization\n- rate limiting",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "LB\nAPI Gateway\n\n- authentication\n- authorization\n- rate limiting",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "eq5MNQOIoYJyRODo41CSj",
"type": "rectangle",
"x": 1472.546875,
"y": 1128.9765625,
"width": 192.28515625,
"height": 57.92578125,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aC",
"roundness": {
"type": 3
},
"seed": 1329715794,
"version": 84,
"versionNonce": 940564686,
"isDeleted": false,
"boundElements": [
{
"id": "3vf6cJGcAwL1X7KGaghP7",
"type": "arrow"
},
{
"id": "2twZgjXeVds5OQUTXaCYt",
"type": "arrow"
}
],
"updated": 1766905977639,
"link": null,
"locked": false
},
{
"id": "mSF3tT137kahuEqnpRB8n",
"type": "text",
"x": 1495.40625,
"y": 1147.78125,
"width": 131.51992797851562,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aD",
"roundness": null,
"seed": 673394446,
"version": 14,
"versionNonce": 1673025614,
"isDeleted": false,
"boundElements": [],
"updated": 1766905948463,
"link": null,
"locked": false,
"text": "Job Executor",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Job Executor",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "TVavkA3meLat9Le-M1B-x",
"type": "arrow",
"x": 1123.9583923368393,
"y": 1008.4475259142544,
"width": 92.82961934349282,
"height": 2.5791014622853936,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aE",
"roundness": {
"type": 2
},
"seed": 874334354,
"version": 76,
"versionNonce": 860633166,
"isDeleted": false,
"boundElements": [],
"updated": 1766906066397,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
92.82961934349282,
-2.5791014622853936
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "kIV6vcZB4_rm7sFfdDOu6",
"focus": -0.12615963787926332,
"gap": 1.078125
},
"endBinding": {
"elementId": "iuaaBnC_GqVms9PBKPe0Y",
"focus": -0.15083246332216035,
"gap": 2.09765625
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "Mne_rmXLX8PKxBxSZbnkE",
"type": "arrow",
"x": 1380.4375,
"y": 998.875,
"width": 245.26953125,
"height": 0.0078125,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aF",
"roundness": {
"type": 2
},
"seed": 31283726,
"version": 27,
"versionNonce": 967485390,
"isDeleted": false,
"boundElements": [],
"updated": 1766905960138,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
245.26953125,
0.0078125
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "iuaaBnC_GqVms9PBKPe0Y",
"focus": 0.028994064186999225,
"gap": 2.53125
},
"endBinding": {
"elementId": "UfDLt9b7dlKaq-09wnJyk",
"focus": -0.11304278112870368,
"gap": 1
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "3vf6cJGcAwL1X7KGaghP7",
"type": "arrow",
"x": 1623.09375,
"y": 1123.546875,
"width": 38.046875,
"height": 80.53125,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aG",
"roundness": {
"type": 2
},
"seed": 1650905742,
"version": 24,
"versionNonce": 704356370,
"isDeleted": false,
"boundElements": [],
"updated": 1766905964639,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
38.046875,
-80.53125
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "eq5MNQOIoYJyRODo41CSj",
"focus": 0.34741821628414177,
"gap": 5.4296875
},
"endBinding": {
"elementId": "UfDLt9b7dlKaq-09wnJyk",
"focus": -0.006780501521682432,
"gap": 1.6767811488435302
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "2twZgjXeVds5OQUTXaCYt",
"type": "arrow",
"x": 1564.046875,
"y": 1128.65625,
"width": 73.1796875,
"height": 107.48828125,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aH",
"roundness": {
"type": 2
},
"seed": 2684558,
"version": 97,
"versionNonce": 758552334,
"isDeleted": false,
"boundElements": [],
"updated": 1766905977639,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
73.1796875,
-107.48828125
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "eq5MNQOIoYJyRODo41CSj",
"focus": -0.21214251955941332,
"gap": 1
},
"endBinding": {
"elementId": "UfDLt9b7dlKaq-09wnJyk",
"focus": 0.28267195606730716,
"gap": 3.2005832766418942
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "y2XEieU1YCfwWfaRB0I84",
"type": "arrow",
"x": 789.65234375,
"y": 1011.078125,
"width": 135.06463237099786,
"height": 22.365075289211518,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aI",
"roundness": {
"type": 2
},
"seed": 1422526926,
"version": 134,
"versionNonce": 1039924878,
"isDeleted": false,
"boundElements": [],
"updated": 1766906066397,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
135.06463237099786,
22.365075289211518
]
],
"lastCommittedPoint": null,
"startBinding": null,
"endBinding": {
"elementId": "kIV6vcZB4_rm7sFfdDOu6",
"focus": -0.07686717979664172,
"gap": 5.63671875
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "PA8aKSmkmTGvcSzuppl-1",
"type": "rectangle",
"x": 678.189453125,
"y": 1070.44921875,
"width": 112.12109375,
"height": 49.9140625,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aJ",
"roundness": {
"type": 3
},
"seed": 1917219086,
"version": 53,
"versionNonce": 331359502,
"isDeleted": false,
"boundElements": [],
"updated": 1766905994172,
"link": null,
"locked": false
},
{
"id": "_W_51M4p5jYr6lbMYHJk7",
"type": "rectangle",
"x": 676.611328125,
"y": 1156.44140625,
"width": 112.12109375,
"height": 49.9140625,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aK",
"roundness": {
"type": 3
},
"seed": 1454072402,
"version": 69,
"versionNonce": 1141894606,
"isDeleted": false,
"boundElements": [
{
"id": "pqQpLhjnX0aXo47To1KA-",
"type": "arrow"
}
],
"updated": 1766906005276,
"link": null,
"locked": false
},
{
"id": "0Dv779WjBgKYqqpH-hUo-",
"type": "rectangle",
"x": 675.517578125,
"y": 987.8046875,
"width": 112.12109375,
"height": 49.9140625,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aL",
"roundness": {
"type": 3
},
"seed": 1066928206,
"version": 42,
"versionNonce": 1433739218,
"isDeleted": false,
"boundElements": [],
"updated": 1766905989372,
"link": null,
"locked": false
},
{
"id": "3yf_qD6qlWmYj9S-LTa2i",
"type": "arrow",
"x": 807.6509630123946,
"y": 938.0603801451624,
"width": 116.12890625,
"height": 16.9921875,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aM",
"roundness": {
"type": 2
},
"seed": 1785997330,
"version": 77,
"versionNonce": 1414385614,
"isDeleted": false,
"boundElements": [],
"updated": 1766906100658,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
116.12890625,
16.9921875
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "9I1bFkGz0f6-jpuUJnVal",
"focus": -0.2873291662825624,
"gap": 12.85799426239464
},
"endBinding": {
"elementId": "0ZGPQavzrzFPl13sm-UM3",
"focus": 0.3321746961141256,
"gap": 22.22794323760536
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "qL4jVP9247Z_l5XIy1IpT",
"type": "arrow",
"x": 791.2329942623946,
"y": 1094.5017863951625,
"width": 132.1328125,
"height": 17.37109375,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aN",
"roundness": {
"type": 2
},
"seed": 1421799054,
"version": 87,
"versionNonce": 1037273746,
"isDeleted": false,
"boundElements": [],
"updated": 1766906008607,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
132.1328125,
17.37109375
]
],
"lastCommittedPoint": null,
"startBinding": null,
"endBinding": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "pqQpLhjnX0aXo47To1KA-",
"type": "arrow",
"x": 789.6426656061562,
"y": 1184.0445030476865,
"width": 137.30706681017148,
"height": 27.06065470293379,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aO",
"roundness": {
"type": 2
},
"seed": 1270799570,
"version": 170,
"versionNonce": 1666776270,
"isDeleted": false,
"boundElements": [],
"updated": 1766906066397,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
137.30706681017148,
-27.06065470293379
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "_W_51M4p5jYr6lbMYHJk7",
"focus": 0.38600808436476364,
"gap": 1
},
"endBinding": {
"elementId": "kIV6vcZB4_rm7sFfdDOu6",
"focus": -0.506279446684743,
"gap": 1
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "Rs8UbslwbJPD6fnvmeuSV",
"type": "text",
"x": 1382.6640625,
"y": 1056.87109375,
"width": 201.2398681640625,
"height": 50,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aP",
"roundness": null,
"seed": 88482830,
"version": 85,
"versionNonce": 74446222,
"isDeleted": false,
"boundElements": [],
"updated": 1766906034227,
"link": null,
"locked": false,
"text": "- pull jobs that \nneed to be executed",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "- pull jobs that \nneed to be executed",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "NzNl6xci8ZROyFOYqXVrw",
"type": "text",
"x": 1658.765625,
"y": 1069.53125,
"width": 175.05990600585938,
"height": 50,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aQ",
"roundness": null,
"seed": 1858099218,
"version": 48,
"versionNonce": 1219156434,
"isDeleted": false,
"boundElements": [],
"updated": 1766906050129,
"link": null,
"locked": false,
"text": "- update the \nstatus of the job",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "- update the \nstatus of the job",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "AN0smvcr007_B4Ohz2SnC",
"type": "text",
"x": 674.5194058326204,
"y": 1233.8774787008444,
"width": 114.65988159179688,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aR",
"roundness": null,
"seed": 1161561362,
"version": 117,
"versionNonce": 686516626,
"isDeleted": false,
"boundElements": [],
"updated": 1766907170029,
"link": null,
"locked": false,
"text": "client/users",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "client/users",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "xJBnCMvPYXmh7PIz-pppk",
"type": "rectangle",
"x": 649.9659851379633,
"y": 1817.768285069199,
"width": 112.12109375,
"height": 49.9140625,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aS",
"roundness": {
"type": 3
},
"seed": 420902670,
"version": 160,
"versionNonce": 1048226830,
"isDeleted": false,
"boundElements": [
{
"id": "YyfSerorxWuHWgHHfIiwG",
"type": "arrow"
}
],
"updated": 1766907166813,
"link": null,
"locked": false
},
{
"id": "dJU_Prwz4WtnBxii_xhMT",
"type": "rectangle",
"x": 894.7159851379633,
"y": 1756.096410069199,
"width": 196.02734375000009,
"height": 367.73046875000006,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aT",
"roundness": {
"type": 3
},
"seed": 1435526478,
"version": 228,
"versionNonce": 1221427342,
"isDeleted": false,
"boundElements": [
{
"id": "bxPDxu7D3nJdghwZTHaii",
"type": "arrow"
},
{
"id": "Y4s9fE-CmQp6pVnAdAK8X",
"type": "arrow"
},
{
"id": "og75e6pzJSP_uteQeiCDc",
"type": "arrow"
}
],
"updated": 1766907166813,
"link": null,
"locked": false
},
{
"id": "u0UCeP_IaEcgELC14siHd",
"type": "rectangle",
"x": 1185.9972351379633,
"y": 1867.518285069199,
"width": 164.265625,
"height": 71.08984375,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aU",
"roundness": {
"type": 3
},
"seed": 1093831566,
"version": 205,
"versionNonce": 1255486734,
"isDeleted": false,
"boundElements": [
{
"type": "text",
"id": "YOrJ7eHaoh99w8Rg7xzWB"
},
{
"id": "bxPDxu7D3nJdghwZTHaii",
"type": "arrow"
},
{
"id": "1wDEtCcIFXbbgEPpJ1qOl",
"type": "arrow"
}
],
"updated": 1766907166813,
"link": null,
"locked": false
},
{
"id": "YOrJ7eHaoh99w8Rg7xzWB",
"type": "text",
"x": 1194.2001007385493,
"y": 1890.563206944199,
"width": 147.85989379882812,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aV",
"roundness": null,
"seed": 976611790,
"version": 161,
"versionNonce": 482829134,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "Job Search Svc",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "center",
"verticalAlign": "middle",
"containerId": "u0UCeP_IaEcgELC14siHd",
"originalText": "Job Search Svc",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "bLsPQDpRTsXxhJFdaElJ3",
"type": "ellipse",
"x": 1592.7003601379633,
"y": 1840.627660069199,
"width": 118.09375,
"height": 120,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aW",
"roundness": {
"type": 2
},
"seed": 1874034702,
"version": 178,
"versionNonce": 1159937550,
"isDeleted": false,
"boundElements": [
{
"type": "text",
"id": "lEW4U-2XyZMQV73BE3uRU"
},
{
"id": "1wDEtCcIFXbbgEPpJ1qOl",
"type": "arrow"
},
{
"id": "I35N0nu6-YmD1_FpQUFRg",
"type": "arrow"
},
{
"id": "J-iCh0Et5Td9UEFZDlZiZ",
"type": "arrow"
}
],
"updated": 1766907166813,
"link": null,
"locked": false
},
{
"id": "lEW4U-2XyZMQV73BE3uRU",
"type": "text",
"x": 1618.3948138316514,
"y": 1863.2012531980063,
"width": 67.199951171875,
"height": 75,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aX",
"roundness": null,
"seed": 1168395854,
"version": 163,
"versionNonce": 309087310,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "DB\n(Postg\nres)",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "center",
"verticalAlign": "middle",
"containerId": "bLsPQDpRTsXxhJFdaElJ3",
"originalText": "DB\n(Postgres)",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "Z1Fh04ZpuW1_MdID-GazE",
"type": "text",
"x": 913.3019226379633,
"y": 1828.873753819199,
"width": 158.35987854003906,
"height": 150,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aY",
"roundness": null,
"seed": 954291342,
"version": 234,
"versionNonce": 1305785678,
"isDeleted": false,
"boundElements": [
{
"id": "YyfSerorxWuHWgHHfIiwG",
"type": "arrow"
},
{
"id": "bxPDxu7D3nJdghwZTHaii",
"type": "arrow"
},
{
"id": "Y4s9fE-CmQp6pVnAdAK8X",
"type": "arrow"
},
{
"id": "tv13tZ6j5FTJ9tyuWdi5D",
"type": "arrow"
}
],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "LB\nAPI Gateway\n\n- authentication\n- authorization\n- rate limiting",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "LB\nAPI Gateway\n\n- authentication\n- authorization\n- rate limiting",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "jTBvkyr6yjJA54s20laOk",
"type": "rectangle",
"x": 1567.1339538879633,
"y": 2194.651097569199,
"width": 206.09375000000003,
"height": 58.44921875,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aZ",
"roundness": {
"type": 3
},
"seed": 1126404814,
"version": 315,
"versionNonce": 1819518094,
"isDeleted": false,
"boundElements": [
{
"id": "I35N0nu6-YmD1_FpQUFRg",
"type": "arrow"
},
{
"id": "0zxtGk4xbALXcpUV0dShK",
"type": "arrow"
},
{
"id": "nU0b0jgIeOUmWORnwz1Kz",
"type": "arrow"
},
{
"id": "c_TtfxYAIQrqdNcbYPvin",
"type": "arrow"
}
],
"updated": 1766907166813,
"link": null,
"locked": false
},
{
"id": "VsQXk7dcbWhxwrgcvk0ax",
"type": "text",
"x": 1587.6378601379633,
"y": 2207.916722569199,
"width": 176.4998779296875,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aa",
"roundness": null,
"seed": 1057229070,
"version": 238,
"versionNonce": 1797769938,
"isDeleted": false,
"boundElements": [
{
"id": "XCJN4aSxJIoIx99VDfyOW",
"type": "arrow"
},
{
"id": "P_2XWjMnv9oQaNKZPcwHV",
"type": "arrow"
},
{
"id": "nU0b0jgIeOUmWORnwz1Kz",
"type": "arrow"
},
{
"id": "c_TtfxYAIQrqdNcbYPvin",
"type": "arrow"
}
],
"updated": 1766907166996,
"link": null,
"locked": false,
"text": "Job Consumer SVC",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Job Consumer SVC",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "bxPDxu7D3nJdghwZTHaii",
"type": "arrow",
"x": 1091.2525024748027,
"y": 1913.6689359834536,
"width": 92.82961934349282,
"height": 2.5791014622853936,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "ab",
"roundness": {
"type": 2
},
"seed": 1274787662,
"version": 497,
"versionNonce": 1338240018,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166993,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
92.82961934349282,
-2.5791014622853936
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "Z1Fh04ZpuW1_MdID-GazE",
"focus": 0.16242700989476572,
"gap": 19.590701296800262
},
"endBinding": {
"elementId": "u0UCeP_IaEcgELC14siHd",
"focus": -0.15046222796617512,
"gap": 1.915113319667853
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "1wDEtCcIFXbbgEPpJ1qOl",
"type": "arrow",
"x": 1347.7316101379633,
"y": 1904.096410069199,
"width": 245.26953125,
"height": 0.0078125,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "ac",
"roundness": {
"type": 2
},
"seed": 845389198,
"version": 448,
"versionNonce": 1988202386,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166993,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
245.26953125,
0.0078125
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "u0UCeP_IaEcgELC14siHd",
"focus": 0.028994064186993553,
"gap": 2.53125
},
"endBinding": {
"elementId": "bLsPQDpRTsXxhJFdaElJ3",
"focus": -0.057972078139990044,
"gap": 1
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "I35N0nu6-YmD1_FpQUFRg",
"type": "arrow",
"x": 1358.4512795502815,
"y": 2135.293857003041,
"width": 244.9721853095116,
"height": 199.66826287688082,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "ae",
"roundness": {
"type": 2
},
"seed": 1363677710,
"version": 575,
"versionNonce": 97276690,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166993,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
244.9721853095116,
-199.66826287688082
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "w0cI9aTpRA6Rjl4sfh9-p",
"focus": 0.3854179344400817,
"gap": 8.539668852364079
},
"endBinding": {
"elementId": "bLsPQDpRTsXxhJFdaElJ3",
"focus": 0.040591893945816956,
"gap": 1
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "Y4s9fE-CmQp6pVnAdAK8X",
"type": "arrow",
"x": 756.9464538879633,
"y": 1916.299535069199,
"width": 135.06463237099786,
"height": 22.365075289211518,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "af",
"roundness": {
"type": 2
},
"seed": 1792450638,
"version": 415,
"versionNonce": 313794770,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166993,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
135.06463237099786,
22.365075289211518
]
],
"lastCommittedPoint": null,
"startBinding": null,
"endBinding": {
"elementId": "Z1Fh04ZpuW1_MdID-GazE",
"focus": -0.5836667825790297,
"gap": 21.290836379002144
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "1NaDWwQaNluJCJkCDdwCw",
"type": "rectangle",
"x": 645.4835632629633,
"y": 1975.670628819199,
"width": 112.12109375,
"height": 49.9140625,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "ag",
"roundness": {
"type": 3
},
"seed": 1744397966,
"version": 194,
"versionNonce": 1108957518,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false
},
{
"id": "WT20pmgyyAo0xDZWxce8L",
"type": "rectangle",
"x": 643.9054382629633,
"y": 2061.662816319199,
"width": 112.12109375,
"height": 49.9140625,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "ah",
"roundness": {
"type": 3
},
"seed": 963208398,
"version": 210,
"versionNonce": 410845070,
"isDeleted": false,
"boundElements": [
{
"id": "og75e6pzJSP_uteQeiCDc",
"type": "arrow"
}
],
"updated": 1766907166813,
"link": null,
"locked": false
},
{
"id": "flXzYk4x8TbUM0Zd0LZAd",
"type": "rectangle",
"x": 642.8116882629633,
"y": 1893.026097569199,
"width": 112.12109375,
"height": 49.9140625,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "ai",
"roundness": {
"type": 3
},
"seed": 1354734350,
"version": 183,
"versionNonce": 636548110,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false
},
{
"id": "YyfSerorxWuHWgHHfIiwG",
"type": "arrow",
"x": 774.945073150358,
"y": 1843.2817902143615,
"width": 116.12890625,
"height": 16.9921875,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aj",
"roundness": {
"type": 2
},
"seed": 74778958,
"version": 498,
"versionNonce": 1291555922,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166993,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
116.12890625,
16.9921875
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "xJBnCMvPYXmh7PIz-pppk",
"focus": -0.28732916628256505,
"gap": 12.85799426239464
},
"endBinding": {
"elementId": "Z1Fh04ZpuW1_MdID-GazE",
"focus": 0.3321746961141219,
"gap": 22.22794323760536
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "ByMoa_UViKSh2BPHjlNSF",
"type": "arrow",
"x": 758.527104400358,
"y": 1999.7231964643615,
"width": 132.1328125,
"height": 17.37109375,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "ak",
"roundness": {
"type": 2
},
"seed": 1944235918,
"version": 228,
"versionNonce": 1834076302,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
132.1328125,
17.37109375
]
],
"lastCommittedPoint": null,
"startBinding": null,
"endBinding": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "og75e6pzJSP_uteQeiCDc",
"type": "arrow",
"x": 756.9367757441196,
"y": 2089.2659131168857,
"width": 137.30706681017148,
"height": 27.06065470293379,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "al",
"roundness": {
"type": 2
},
"seed": 1799458254,
"version": 591,
"versionNonce": 1402742738,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166994,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
137.30706681017148,
-27.06065470293379
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "WT20pmgyyAo0xDZWxce8L",
"focus": 0.3853282540164075,
"gap": 1
},
"endBinding": {
"elementId": "dJU_Prwz4WtnBxii_xhMT",
"focus": -0.5061174449544625,
"gap": 1
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "zLKwIFHrtMmRkJhYlHTwm",
"type": "text",
"x": 1206.7823913879633,
"y": 2060.033910069199,
"width": 201.2398681640625,
"height": 50,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "am",
"roundness": null,
"seed": 1202365454,
"version": 447,
"versionNonce": 1088912654,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "- pull jobs that \nneed to be executed",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "- pull jobs that \nneed to be executed",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "FpG9euOQdEgUhBySS-UQp",
"type": "text",
"x": 647.6847351379633,
"y": 2136.221410069199,
"width": 114.65988159179688,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "ao",
"roundness": null,
"seed": 1348434062,
"version": 155,
"versionNonce": 693152590,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "client/users",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "client/users",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "oAkeBlYf0aH6qDVZO_UzR",
"type": "text",
"x": 694.9940723938762,
"y": 1447.1141591716582,
"width": 153.89988708496094,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "ap",
"roundness": null,
"seed": 1606661902,
"version": 101,
"versionNonce": 1638229586,
"isDeleted": false,
"boundElements": [],
"updated": 1766907172648,
"link": null,
"locked": false,
"text": "Low level design",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Low level design",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "6J3QynDnLhbCsOcNW8DE8",
"type": "rectangle",
"x": 1185.778164703393,
"y": 1760.488988194199,
"width": 164.265625,
"height": 71.08984375,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aq",
"roundness": {
"type": 3
},
"seed": 188248978,
"version": 213,
"versionNonce": 278068690,
"isDeleted": false,
"boundElements": [
{
"type": "text",
"id": "Va6dywPAKsAIu76QnBAym"
},
{
"id": "tv13tZ6j5FTJ9tyuWdi5D",
"type": "arrow"
},
{
"id": "YpCP_-8fgGLnqkn0pHjqs",
"type": "arrow"
},
{
"id": "xt6idcHK3lUZIjhKbpBmy",
"type": "arrow"
}
],
"updated": 1766907292096,
"link": null,
"locked": false
},
{
"id": "Va6dywPAKsAIu76QnBAym",
"type": "text",
"x": 1230.1610000915766,
"y": 1783.533910069199,
"width": 75.49995422363281,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "ar",
"roundness": null,
"seed": 1187524946,
"version": 157,
"versionNonce": 466716174,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "Job Svc",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "center",
"verticalAlign": "middle",
"containerId": "6J3QynDnLhbCsOcNW8DE8",
"originalText": "Job Svc",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "tv13tZ6j5FTJ9tyuWdi5D",
"type": "arrow",
"x": 1090.254727203393,
"y": 1816.783910069199,
"width": 97.7890625,
"height": 20.09375,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "at",
"roundness": {
"type": 2
},
"seed": 507227026,
"version": 172,
"versionNonce": 2060311378,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166994,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
97.7890625,
-20.09375
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "Z1Fh04ZpuW1_MdID-GazE",
"focus": -0.7340798517397107,
"gap": 22.17794445130256
},
"endBinding": {
"elementId": "6J3QynDnLhbCsOcNW8DE8",
"focus": 0.3005421086222989,
"gap": 2.265625
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "1zLEwLlLFJnUe4yrdl_tB",
"type": "rectangle",
"x": 1431.973477203393,
"y": 1680.987035069199,
"width": 120.234375,
"height": 47.1953125,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "au",
"roundness": {
"type": 3
},
"seed": 1109071250,
"version": 83,
"versionNonce": 1626279694,
"isDeleted": false,
"boundElements": [
{
"id": "YpCP_-8fgGLnqkn0pHjqs",
"type": "arrow"
},
{
"id": "qAbc_6bxRAK4AfzZKa5_5",
"type": "arrow"
},
{
"id": "co0PDMYG2b7KLp1ZQWg29",
"type": "arrow"
}
],
"updated": 1766907166813,
"link": null,
"locked": false
},
{
"id": "Zc1d6mE4LiOpZCVcw-fBq",
"type": "rectangle",
"x": 1643.567227203393,
"y": 1676.205785069199,
"width": 157.40234375000006,
"height": 55.91406250000003,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "av",
"roundness": {
"type": 3
},
"seed": 1595287246,
"version": 117,
"versionNonce": 444602382,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false
},
{
"id": "wpz5p9rhiyfjVGTz6_7dq",
"type": "text",
"x": 1454.426602203393,
"y": 1699.612035069199,
"width": 54.89994812011719,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "aw",
"roundness": null,
"seed": 1406767698,
"version": 56,
"versionNonce": 454944334,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "Kafka",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Kafka",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "nYsNCzql577QzwUKu21Qb",
"type": "text",
"x": 1649.481289703393,
"y": 1694.213597569199,
"width": 134.0198974609375,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "ax",
"roundness": null,
"seed": 945416078,
"version": 91,
"versionNonce": 1533537422,
"isDeleted": false,
"boundElements": [
{
"id": "qAbc_6bxRAK4AfzZKa5_5",
"type": "arrow"
},
{
"id": "J-iCh0Et5Td9UEFZDlZiZ",
"type": "arrow"
}
],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "Consumer SVC",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Consumer SVC",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "YpCP_-8fgGLnqkn0pHjqs",
"type": "arrow",
"x": 1345.942227203393,
"y": 1761.346410069199,
"width": 85.421875,
"height": 53.234375,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "ay",
"roundness": {
"type": 2
},
"seed": 1720694994,
"version": 184,
"versionNonce": 1429144722,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166994,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
85.421875,
-53.234375
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "lPZxBKWqYlMOpb2_cDrbo",
"focus": 0,
"gap": 13.64453125
},
"endBinding": {
"elementId": "1zLEwLlLFJnUe4yrdl_tB",
"focus": 0.5620008205722111,
"gap": 1
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "qAbc_6bxRAK4AfzZKa5_5",
"type": "arrow",
"x": 1554.645352203393,
"y": 1704.049535069199,
"width": 92.859375,
"height": 0.390625,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "az",
"roundness": {
"type": 2
},
"seed": 1681812302,
"version": 181,
"versionNonce": 1969260562,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166995,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
92.859375,
-0.390625
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "1zLEwLlLFJnUe4yrdl_tB",
"focus": -0.011404847318468882,
"gap": 2.4375
},
"endBinding": {
"elementId": "nYsNCzql577QzwUKu21Qb",
"focus": 0.26168972198454993,
"gap": 1.9765625
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "J-iCh0Et5Td9UEFZDlZiZ",
"type": "arrow",
"x": 1707.504727203393,
"y": 1734.221410069199,
"width": 39.453125,
"height": 108.265625,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b00",
"roundness": {
"type": 2
},
"seed": 1221456654,
"version": 200,
"versionNonce": 1520905106,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166995,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
-39.453125,
108.265625
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "nYsNCzql577QzwUKu21Qb",
"focus": -0.014499013747613247,
"gap": 15.0078125
},
"endBinding": {
"elementId": "bLsPQDpRTsXxhJFdaElJ3",
"focus": -0.06034598382268402,
"gap": 1
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "lPZxBKWqYlMOpb2_cDrbo",
"type": "text",
"x": 1147.750820953393,
"y": 1722.701878819199,
"width": 200.7798614501953,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b01",
"roundness": null,
"seed": 1877168014,
"version": 100,
"versionNonce": 2068031250,
"isDeleted": false,
"boundElements": [
{
"id": "YpCP_-8fgGLnqkn0pHjqs",
"type": "arrow"
},
{
"id": "7_oKl0TAfcBZqNbZmI85Q",
"type": "arrow"
}
],
"updated": 1766907303794,
"link": null,
"locked": false,
"text": "submit/edit the jobs",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "submit/edit the jobs",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "pcao54TFXW3xNDu3h9I7I",
"type": "text",
"x": 1717.910977203393,
"y": 1781.721410069199,
"width": 65.39993286132812,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b02",
"roundness": null,
"seed": 1428560146,
"version": 56,
"versionNonce": 2067281998,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "- write",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "- write",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "nfFOTW96qzimFhObX68Rt",
"type": "text",
"x": 1423.946133453393,
"y": 1881.522191319199,
"width": 58.419952392578125,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b03",
"roundness": null,
"seed": 1210665618,
"version": 62,
"versionNonce": 677904014,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "- read",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "- read",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "UcICtY2w62BxSN-qukmX8",
"type": "text",
"x": 1799.379727203393,
"y": 1862.190160069199,
"width": 346.61968994140625,
"height": 250,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b04",
"roundness": null,
"seed": 1776604814,
"version": 214,
"versionNonce": 1826599634,
"isDeleted": false,
"boundElements": [],
"updated": 1766907484309,
"link": null,
"locked": false,
"text": "jobs (Postgres)\n- id (index)\n- name\n- schedule_type\n- status (paused/scheduled/cancel)\n- schedule_time (partition)\n- cron_expression\n- payload\n- retries (3)\n..meta",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "jobs (Postgres)\n- id (index)\n- name\n- schedule_type\n- status (paused/scheduled/cancel)\n- schedule_time (partition)\n- cron_expression\n- payload\n- retries (3)\n..meta",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "0Sy1bzJ8w6j-iB4rtaYSy",
"type": "text",
"x": 2215.258633453393,
"y": 1847.229222569199,
"width": 477.1195373535156,
"height": 250,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b05",
"roundness": null,
"seed": 1904803922,
"version": 266,
"versionNonce": 1890770514,
"isDeleted": false,
"boundElements": [],
"updated": 1766907515342,
"link": null,
"locked": false,
"text": "Job_runs\n- id\n- job_id (index)\n- status (index) (queued/running/success/failed)\n- start_time\n- end_time\n- modified_time (index)\n- executor_id\n- attempt_number\n- error_msg",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Job_runs\n- id\n- job_id (index)\n- status (index) (queued/running/success/failed)\n- start_time\n- end_time\n- modified_time (index)\n- executor_id\n- attempt_number\n- error_msg",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "w0cI9aTpRA6Rjl4sfh9-p",
"type": "rectangle",
"x": 1168.686367828393,
"y": 2141.274144444199,
"width": 192.28515625,
"height": 57.92578125,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b06",
"roundness": {
"type": 3
},
"seed": 1699029842,
"version": 293,
"versionNonce": 1800053070,
"isDeleted": false,
"boundElements": [
{
"id": "I35N0nu6-YmD1_FpQUFRg",
"type": "arrow"
},
{
"id": "7jQTvRbC5JpF-c24S40eC",
"type": "arrow"
}
],
"updated": 1766907166813,
"link": null,
"locked": false
},
{
"id": "z9ef4Kq0LtqHiK2BSiDw6",
"type": "text",
"x": 1191.545742828393,
"y": 2160.078831944199,
"width": 76.23992919921875,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b07",
"roundness": null,
"seed": 1663625490,
"version": 230,
"versionNonce": 2051488782,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "watcher",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "watcher",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "WRqqPWKgPb_CK-nnMR2_o",
"type": "rectangle",
"x": 1348.989102203393,
"y": 2274.643285069199,
"width": 135.61328125,
"height": 50.52734375,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b08",
"roundness": {
"type": 3
},
"seed": 1224777106,
"version": 90,
"versionNonce": 2089234770,
"isDeleted": false,
"boundElements": [
{
"type": "text",
"id": "ZDLHJOjEpCkEIxrPWYgKy"
},
{
"id": "7jQTvRbC5JpF-c24S40eC",
"type": "arrow"
},
{
"id": "0zxtGk4xbALXcpUV0dShK",
"type": "arrow"
},
{
"id": "mRZQSFZosPTesz6FqYp2G",
"type": "arrow"
},
{
"id": "xt6idcHK3lUZIjhKbpBmy",
"type": "arrow"
}
],
"updated": 1766907292097,
"link": null,
"locked": false
},
{
"id": "ZDLHJOjEpCkEIxrPWYgKy",
"type": "text",
"x": 1389.6457718200922,
"y": 2287.406956944199,
"width": 54.29994201660156,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b09",
"roundness": null,
"seed": 404356690,
"version": 54,
"versionNonce": 1186336910,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "kafka",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "center",
"verticalAlign": "middle",
"containerId": "WRqqPWKgPb_CK-nnMR2_o",
"originalText": "kafka",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "7jQTvRbC5JpF-c24S40eC",
"type": "arrow",
"x": 1346.192227203393,
"y": 2199.705785069199,
"width": 41.42578125,
"height": 75.8203125,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0A",
"roundness": {
"type": 2
},
"seed": 299348498,
"version": 178,
"versionNonce": 1513811730,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166995,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
41.42578125,
75.8203125
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "w0cI9aTpRA6Rjl4sfh9-p",
"focus": -0.582872818284696,
"gap": 1
},
"endBinding": {
"elementId": "WRqqPWKgPb_CK-nnMR2_o",
"focus": -0.19430016284979335,
"gap": 1
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "0zxtGk4xbALXcpUV0dShK",
"type": "arrow",
"x": 1486.988945645457,
"y": 2287.8997526754006,
"width": 87.48602225980608,
"height": 35.40671872931398,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0B",
"roundness": {
"type": 2
},
"seed": 843877198,
"version": 196,
"versionNonce": 1532220050,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166995,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
87.48602225980608,
-35.40671872931398
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "WRqqPWKgPb_CK-nnMR2_o",
"focus": 0.3111775066318011,
"gap": 2.386562192064048
},
"endBinding": {
"elementId": "jTBvkyr6yjJA54s20laOk",
"focus": 0.1426224173150308,
"gap": 1
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "ZGb9n2B2R-K5wg0ggjYCs",
"type": "text",
"x": 1382.403164703393,
"y": 2001.830785069199,
"width": 104.5599365234375,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0C",
"roundness": null,
"seed": 617439314,
"version": 102,
"versionNonce": 2136985102,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "- read 20s",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "- read 20s",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "h5DGEpNPrrsOs8ucbobpg",
"type": "text",
"x": 965.977383453393,
"y": 2226.678441319199,
"width": 335.32019042968756,
"height": 14.252458353628947,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0D",
"roundness": null,
"seed": 1531619346,
"version": 178,
"versionNonce": 1989598286,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "pull every 10/20s and pull jobs scheduled in [now,now+5 min]",
"fontSize": 11.401966682903147,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "pull every 10/20s and pull jobs scheduled in [now,now+5 min]",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "I5JzbX1oaLlg5YVBZZRxw",
"type": "text",
"x": 1378.317227203393,
"y": 2336.315160069199,
"width": 126.73991394042969,
"height": 75,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0E",
"roundness": null,
"seed": 468627538,
"version": 110,
"versionNonce": 139600526,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "- topic: run\n- topic: retry\n- topic: dead",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "- topic: run\n- topic: retry\n- topic: dead",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "m2CH4VYEi7R1LcE8YjXFt",
"type": "rectangle",
"x": 1885.314297515893,
"y": 2184.379613194199,
"width": 112.12109375,
"height": 60,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0F",
"roundness": {
"type": 3
},
"seed": 1442954190,
"version": 176,
"versionNonce": 1196073166,
"isDeleted": false,
"boundElements": [
{
"id": "XCJN4aSxJIoIx99VDfyOW",
"type": "arrow"
},
{
"type": "text",
"id": "eQY08bfZBz24p8enysmJu"
},
{
"id": "gvZgPwlksjVPB0DGipUbg",
"type": "arrow"
}
],
"updated": 1766907166813,
"link": null,
"locked": false
},
{
"id": "eQY08bfZBz24p8enysmJu",
"type": "text",
"x": 1896.8548706360102,
"y": 2189.379613194199,
"width": 89.03994750976562,
"height": 50,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0FV",
"roundness": null,
"seed": 1068587474,
"version": 64,
"versionNonce": 119101198,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "Executor\nSVC",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "center",
"verticalAlign": "middle",
"containerId": "m2CH4VYEi7R1LcE8YjXFt",
"originalText": "Executor SVC",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "XCJN4aSxJIoIx99VDfyOW",
"type": "arrow",
"x": 1769.129727203393,
"y": 2214.127660069199,
"width": 113.37890625,
"height": 0.0078125,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0J",
"roundness": {
"type": 2
},
"seed": 1562629970,
"version": 178,
"versionNonce": 1462359570,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166995,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
113.37890625,
0.0078125
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "VsQXk7dcbWhxwrgcvk0ax",
"focus": -0.5033941055518083,
"gap": 4.9919891357421875
},
"endBinding": {
"elementId": "m2CH4VYEi7R1LcE8YjXFt",
"focus": 0.008001782429130792,
"gap": 2.8056640625
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "P_2XWjMnv9oQaNKZPcwHV",
"type": "arrow",
"x": 1775.379727203393,
"y": 2233.752660069199,
"width": 101.5859375,
"height": 47.30859375,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0K",
"roundness": {
"type": 2
},
"seed": 2144444942,
"version": 139,
"versionNonce": 57230290,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166995,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
101.5859375,
47.30859375
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "VsQXk7dcbWhxwrgcvk0ax",
"focus": -0.6156473300596333,
"gap": 11.273025824154384
},
"endBinding": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "nU0b0jgIeOUmWORnwz1Kz",
"type": "arrow",
"x": 1766.582852203393,
"y": 2248.893285069199,
"width": 113.890625,
"height": 115.32421875,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0L",
"roundness": {
"type": 2
},
"seed": 626896274,
"version": 140,
"versionNonce": 1492449682,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166996,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
113.890625,
115.32421875
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "VsQXk7dcbWhxwrgcvk0ax",
"focus": -0.6220265544278559,
"gap": 14
},
"endBinding": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "c_TtfxYAIQrqdNcbYPvin",
"type": "arrow",
"x": 1760.239102203393,
"y": 2251.737035069199,
"width": 114.62890625,
"height": 210.3515625,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0M",
"roundness": {
"type": 2
},
"seed": 299883282,
"version": 144,
"versionNonce": 2112699666,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166996,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
114.62890625,
210.3515625
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "VsQXk7dcbWhxwrgcvk0ax",
"focus": -0.7077890884534804,
"gap": 14
},
"endBinding": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "UL79v2ZfqT7c1u6sawWFW",
"type": "rectangle",
"x": 1884.991055328393,
"y": 2428.283910069199,
"width": 112.12109375,
"height": 60,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0N",
"roundness": {
"type": 3
},
"seed": 1425610638,
"version": 241,
"versionNonce": 1004936910,
"isDeleted": false,
"boundElements": [
{
"type": "text",
"id": "3YnAZMxLWONbNro1bRTkW"
},
{
"id": "aM-ePVaKLajmLhi2rI9mK",
"type": "arrow"
},
{
"id": "mRZQSFZosPTesz6FqYp2G",
"type": "arrow"
},
{
"id": "Pa6hQ7pZ4hfrUXc7MkDvj",
"type": "arrow"
}
],
"updated": 1766907330160,
"link": null,
"locked": false
},
{
"id": "3YnAZMxLWONbNro1bRTkW",
"type": "text",
"x": 1896.5316284485102,
"y": 2433.283910069199,
"width": 89.03994750976562,
"height": 50,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0O",
"roundness": null,
"seed": 759887310,
"version": 127,
"versionNonce": 1411836174,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "Executor\nSVC",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "center",
"verticalAlign": "middle",
"containerId": "UL79v2ZfqT7c1u6sawWFW",
"originalText": "Executor SVC",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "mt40eFgLYaiOht5z-Mf6e",
"type": "rectangle",
"x": 1882.807461578393,
"y": 2328.319066319199,
"width": 112.12109375,
"height": 60,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0P",
"roundness": {
"type": 3
},
"seed": 1928640338,
"version": 252,
"versionNonce": 419666894,
"isDeleted": false,
"boundElements": [
{
"type": "text",
"id": "lR0KRWyp34TYsZU9UaRxh"
},
{
"id": "xar4-NnIloXbRF_4upLHf",
"type": "arrow"
}
],
"updated": 1766907166813,
"link": null,
"locked": false
},
{
"id": "lR0KRWyp34TYsZU9UaRxh",
"type": "text",
"x": 1894.3480346985102,
"y": 2333.319066319199,
"width": 89.03994750976562,
"height": 50,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0Q",
"roundness": null,
"seed": 1036385554,
"version": 140,
"versionNonce": 1308291598,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "Executor\nSVC",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "center",
"verticalAlign": "middle",
"containerId": "mt40eFgLYaiOht5z-Mf6e",
"originalText": "Executor SVC",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "wk4W5Trx_Scu5X7F5ruxZ",
"type": "rectangle",
"x": 1882.307461578393,
"y": 2259.444066319199,
"width": 112.12109375,
"height": 60,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0R",
"roundness": {
"type": 3
},
"seed": 1270728654,
"version": 214,
"versionNonce": 1031030414,
"isDeleted": false,
"boundElements": [
{
"type": "text",
"id": "Dj7XKsaElUk3ce1QgDnB0"
},
{
"id": "OD2pBe4nz7bn1HEY9wSpn",
"type": "arrow"
}
],
"updated": 1766907166813,
"link": null,
"locked": false
},
{
"id": "Dj7XKsaElUk3ce1QgDnB0",
"type": "text",
"x": 1893.8480346985102,
"y": 2264.444066319199,
"width": 89.03994750976562,
"height": 50,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0S",
"roundness": null,
"seed": 9412110,
"version": 102,
"versionNonce": 1552434382,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "Executor\nSVC",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "center",
"verticalAlign": "middle",
"containerId": "wk4W5Trx_Scu5X7F5ruxZ",
"originalText": "Executor SVC",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "gvZgPwlksjVPB0DGipUbg",
"type": "arrow",
"x": 2000.285977203393,
"y": 2207.705785069199,
"width": 202.45703125,
"height": 81.359375,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0T",
"roundness": {
"type": 2
},
"seed": 348134994,
"version": 111,
"versionNonce": 1967825042,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166996,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
202.45703125,
81.359375
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "m2CH4VYEi7R1LcE8YjXFt",
"focus": -0.5777408445281266,
"gap": 2.8505859375
},
"endBinding": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "OD2pBe4nz7bn1HEY9wSpn",
"type": "arrow",
"x": 1996.364102203393,
"y": 2284.143285069199,
"width": 203.1328125,
"height": 2.41796875,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0U",
"roundness": {
"type": 2
},
"seed": 1340104270,
"version": 165,
"versionNonce": 1745665618,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166996,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
203.1328125,
2.41796875
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "wk4W5Trx_Scu5X7F5ruxZ",
"focus": -0.19535887516154588,
"gap": 1.935546875
},
"endBinding": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "xar4-NnIloXbRF_4upLHf",
"type": "arrow",
"x": 1997.727383453393,
"y": 2356.436253819199,
"width": 200.609375,
"height": 66.90234375,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0V",
"roundness": {
"type": 2
},
"seed": 2030596690,
"version": 166,
"versionNonce": 4531218,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166996,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
200.609375,
-66.90234375
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "mt40eFgLYaiOht5z-Mf6e",
"focus": 0.36443547393984177,
"gap": 2.798828125
},
"endBinding": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "aM-ePVaKLajmLhi2rI9mK",
"type": "arrow",
"x": 1996.489102203393,
"y": 2460.690160069199,
"width": 202.88671875,
"height": 175.53515625,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0W",
"roundness": {
"type": 2
},
"seed": 114438862,
"version": 131,
"versionNonce": 1206571474,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166996,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
202.88671875,
-175.53515625
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "UL79v2ZfqT7c1u6sawWFW",
"focus": 0.6416336460195019,
"gap": 1
},
"endBinding": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "co0PDMYG2b7KLp1ZQWg29",
"type": "arrow",
"x": 2204.5071278223245,
"y": 2284.8015620444753,
"width": 1201.3780184460916,
"height": 799.7051519752763,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0X",
"roundness": null,
"seed": 1361522450,
"version": 1206,
"versionNonce": 2129239630,
"isDeleted": false,
"boundElements": [],
"updated": 1766907521284,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
497.00843032715966,
0
],
[
497.00843032715966,
-799.7051519752763
],
[
-704.3695881189319,
-799.7051519752763
],
[
-704.3695881189319,
-607.6782055053468
]
],
"lastCommittedPoint": null,
"startBinding": null,
"endBinding": {
"elementId": "1zLEwLlLFJnUe4yrdl_tB",
"focus": -1.3708844740500694,
"gap": 3.8636785300705014,
"fixedPoint": [
0.5692042229019456,
-0.10166779778059151
]
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": true,
"fixedSegments": [
{
"index": 2,
"start": [
497.00843032715966,
0
],
"end": [
497.00843032715966,
-799.7051519752763
]
},
{
"index": 3,
"start": [
475.32572438106854,
-799.7051519752763
],
"end": [
-704.3695881189319,
-799.7051519752763
]
}
],
"startIsSpecial": false,
"endIsSpecial": false
},
{
"id": "Jk0MxIpLckttAkKVSkBCj",
"type": "text",
"x": 2709.426602203393,
"y": 1907.018285069199,
"width": 229.05987548828125,
"height": 50,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0Z",
"roundness": null,
"seed": 1266102094,
"version": 116,
"versionNonce": 1425692814,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "update the status\nof the job every 10 sec",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "update the status\nof the job every 10 sec",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "mRZQSFZosPTesz6FqYp2G",
"type": "arrow",
"x": 1893.942227203393,
"y": 2493.393285069199,
"width": 584.953125,
"height": 228.4769531249999,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0b",
"roundness": null,
"seed": 773157582,
"version": 280,
"versionNonce": 2105284302,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
0,
34.890625
],
[
-584.953125,
34.890625
],
[
-584.953125,
-193.5863281249999
],
[
-549.953125,
-193.5863281249999
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "UL79v2ZfqT7c1u6sawWFW",
"fixedPoint": [
0.07983486046754695,
1.08515625
],
"focus": 0,
"gap": 0
},
"endBinding": {
"elementId": "WRqqPWKgPb_CK-nnMR2_o",
"fixedPoint": [
-0.03686954517959501,
0.49802087359876485
],
"focus": 0,
"gap": 0
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": true,
"fixedSegments": null,
"startIsSpecial": null,
"endIsSpecial": null
},
{
"id": "HztNfndV67UTGF9C6YdC2",
"type": "text",
"x": 1582.926602203393,
"y": 2548.096410069199,
"width": 48.47996520996094,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0c",
"roundness": null,
"seed": 1834644690,
"version": 54,
"versionNonce": 598478094,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "retry",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "retry",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "x4ZJtwW7c9uIdQUcc5hBS",
"type": "text",
"x": 1565.715664703393,
"y": 2156.033910069199,
"width": 227.35986328125,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0d",
"roundness": null,
"seed": 1600615122,
"version": 100,
"versionNonce": 1694710606,
"isDeleted": false,
"boundElements": [],
"updated": 1766907166813,
"link": null,
"locked": false,
"text": "update the retry count",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "update the retry count",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "tIS2BWatX6ot1iwvp9n-G",
"type": "ellipse",
"x": 2215.519578481342,
"y": 2535.475351924365,
"width": 113.38428698984352,
"height": 111.5168323784369,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0e",
"roundness": {
"type": 2
},
"seed": 676414542,
"version": 177,
"versionNonce": 109790030,
"isDeleted": false,
"boundElements": [
{
"type": "text",
"id": "pCc1BqkI3I32Ta6PHujMB"
},
{
"id": "7_oKl0TAfcBZqNbZmI85Q",
"type": "arrow"
},
{
"id": "Pa6hQ7pZ4hfrUXc7MkDvj",
"type": "arrow"
}
],
"updated": 1766907330160,
"link": null,
"locked": false
},
{
"id": "pCc1BqkI3I32Ta6PHujMB",
"type": "text",
"x": 2245.474351862703,
"y": 2578.8066139179655,
"width": 53.29994201660156,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0f",
"roundness": null,
"seed": 2063892174,
"version": 133,
"versionNonce": 951707598,
"isDeleted": false,
"boundElements": [],
"updated": 1766907219069,
"link": null,
"locked": false,
"text": "Redis",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "center",
"verticalAlign": "middle",
"containerId": "tIS2BWatX6ot1iwvp9n-G",
"originalText": "Redis",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "K6P0gVvaSnJRX726s2-0z",
"type": "text",
"x": 2246.2126846236833,
"y": 2671.966664845232,
"width": 306.7598571777344,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0g",
"roundness": null,
"seed": 182809042,
"version": 45,
"versionNonce": 1920847694,
"isDeleted": false,
"boundElements": [],
"updated": 1766907244586,
"link": null,
"locked": false,
"text": "job: 1232, request: cancel, TTL",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "job: 1232, request: cancel, TTL",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "xt6idcHK3lUZIjhKbpBmy",
"type": "arrow",
"x": 1345.2985359462607,
"y": 1832.3314405528017,
"width": 107.9883318801692,
"height": 439.24565798272715,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0h",
"roundness": {
"type": 2
},
"seed": 200782418,
"version": 68,
"versionNonce": 229047054,
"isDeleted": false,
"boundElements": [],
"updated": 1766907293319,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
107.9883318801692,
439.24565798272715
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "6J3QynDnLhbCsOcNW8DE8",
"fixedPoint": [
0.9711123142341416,
1.0105867247542335
],
"focus": 0,
"gap": 0
},
"endBinding": {
"elementId": "WRqqPWKgPb_CK-nnMR2_o",
"fixedPoint": [
0.7690822363538738,
-0.060683707199037824
],
"focus": 0,
"gap": 0
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false,
"fixedSegments": null,
"startIsSpecial": null,
"endIsSpecial": null
},
{
"id": "7_oKl0TAfcBZqNbZmI85Q",
"type": "arrow",
"x": 1272.6657241712855,
"y": 1758.2073173992708,
"width": 1074.9272201346778,
"height": 895.4989838721681,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0i",
"roundness": {
"type": 2
},
"seed": 1836083534,
"version": 277,
"versionNonce": 1163094542,
"isDeleted": false,
"boundElements": [],
"updated": 1766907310944,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
-131.579253320436,
895.4989838721681
],
[
943.3479668142418,
847.4756082815579
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "lPZxBKWqYlMOpb2_cDrbo",
"focus": -0.2729744720588216,
"gap": 10.505438580071768
},
"endBinding": {
"elementId": "tIS2BWatX6ot1iwvp9n-G",
"focus": -0.20480724503399508,
"gap": 1.3929079500621941
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "6oCfdjovCepWUz5JbFJbx",
"type": "text",
"x": 1486.5728403214398,
"y": 2714.896321826519,
"width": 73.65992736816406,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0j",
"roundness": null,
"seed": 1941370958,
"version": 48,
"versionNonce": 1106586254,
"isDeleted": false,
"boundElements": [],
"updated": 1766907325447,
"link": null,
"locked": false,
"text": "- cancel",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "- cancel",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "Pa6hQ7pZ4hfrUXc7MkDvj",
"type": "arrow",
"x": 1989.9426875999845,
"y": 2480.8613874911644,
"width": 229.01387932958846,
"height": 74.8144462219575,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0k",
"roundness": {
"type": 2
},
"seed": 2143916818,
"version": 46,
"versionNonce": 395646222,
"isDeleted": false,
"boundElements": [],
"updated": 1766907330160,
"link": null,
"locked": false,
"points": [
[
0,
0
],
[
229.01387932958846,
74.8144462219575
]
],
"lastCommittedPoint": null,
"startBinding": {
"elementId": "UL79v2ZfqT7c1u6sawWFW",
"focus": 0.13672453978846802,
"gap": 5.011929641336748
},
"endBinding": {
"elementId": "tIS2BWatX6ot1iwvp9n-G",
"focus": 0.2444914506992552,
"gap": 7.634931314053364
},
"startArrowhead": null,
"endArrowhead": "arrow",
"elbowed": false
},
{
"id": "1dO1pdb4gRlLFx7dpYZFA",
"type": "text",
"x": 1422.6724673536958,
"y": 2106.7818900210204,
"width": 345.57977294921875,
"height": 25,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0l",
"roundness": null,
"seed": 1884421714,
"version": 65,
"versionNonce": 1906575570,
"isDeleted": false,
"boundElements": [],
"updated": 1766907418527,
"link": null,
"locked": false,
"text": " if run immediately or 1 min (almost)",
"fontSize": 20,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": " if run immediately or 1 min (almost)",
"autoResize": true,
"lineHeight": 1.25
},
{
"id": "fdFIgghtOQjExmXtK1-k5",
"type": "text",
"x": 777.7103221846041,
"y": 2786.5281022126937,
"width": 1304.595780316454,
"height": 103.04401034448117,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"index": "b0m",
"roundness": null,
"seed": 1351309582,
"version": 196,
"versionNonce": 1525110866,
"isDeleted": false,
"boundElements": [],
"updated": 1766907627547,
"link": null,
"locked": false,
"text": "for priority job scheduler we can solve with the redis sorted set\nAmazon SQS support scheduling at exact timestamp",
"fontSize": 41.217604137792485,
"fontFamily": 5,
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "for priority job scheduler we can solve with the redis sorted set\nAmazon SQS support scheduling at exact timestamp",
"autoResize": true,
"lineHeight": 1.25
}
],
"appState": {
"gridSize": 20,
"gridStep": 5,
"gridModeEnabled": false,
"viewBackgroundColor": "#ffffff"
},
"files": {}
}