mage-ai 0.9.70__py3-none-any.whl → 0.9.71__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mage-ai might be problematic. Click here for more details.

Files changed (568) hide show
  1. mage_ai/ai/utils/xgboost.py +222 -0
  2. mage_ai/api/errors.py +37 -25
  3. mage_ai/api/operations/base.py +13 -1
  4. mage_ai/api/parsers/PipelineScheduleParser.py +1 -1
  5. mage_ai/api/policies/BlockOutputPolicy.py +40 -17
  6. mage_ai/api/policies/GlobalDataProductPolicy.py +91 -41
  7. mage_ai/api/policies/KernelPolicy.py +55 -32
  8. mage_ai/api/policies/KernelProcessPolicy.py +56 -0
  9. mage_ai/api/policies/OutputPolicy.py +73 -41
  10. mage_ai/api/policies/PipelinePolicy.py +206 -138
  11. mage_ai/api/presenters/BlockLayoutItemPresenter.py +9 -7
  12. mage_ai/api/presenters/BlockPresenter.py +1 -1
  13. mage_ai/api/presenters/GlobalDataProductPresenter.py +6 -1
  14. mage_ai/api/presenters/KernelPresenter.py +5 -26
  15. mage_ai/api/presenters/KernelProcessPresenter.py +28 -0
  16. mage_ai/api/presenters/PipelinePresenter.py +18 -5
  17. mage_ai/api/presenters/StatusPresenter.py +2 -0
  18. mage_ai/api/presenters/SyncPresenter.py +25 -0
  19. mage_ai/api/resources/AutocompleteItemResource.py +1 -1
  20. mage_ai/api/resources/BlockLayoutItemResource.py +90 -44
  21. mage_ai/api/resources/BlockOutputResource.py +42 -9
  22. mage_ai/api/resources/BlockResource.py +4 -3
  23. mage_ai/api/resources/BlockRunResource.py +27 -22
  24. mage_ai/api/resources/ClusterResource.py +4 -1
  25. mage_ai/api/resources/CustomTemplateResource.py +34 -14
  26. mage_ai/api/resources/DataProviderResource.py +1 -1
  27. mage_ai/api/resources/ExecutionStateResource.py +3 -1
  28. mage_ai/api/resources/FileContentResource.py +8 -2
  29. mage_ai/api/resources/FileResource.py +10 -4
  30. mage_ai/api/resources/FileVersionResource.py +3 -1
  31. mage_ai/api/resources/GitBranchResource.py +46 -9
  32. mage_ai/api/resources/GlobalDataProductResource.py +44 -7
  33. mage_ai/api/resources/GlobalHookResource.py +4 -1
  34. mage_ai/api/resources/IntegrationDestinationResource.py +6 -2
  35. mage_ai/api/resources/IntegrationSourceResource.py +8 -4
  36. mage_ai/api/resources/IntegrationSourceStreamResource.py +6 -2
  37. mage_ai/api/resources/KernelProcessResource.py +44 -0
  38. mage_ai/api/resources/KernelResource.py +25 -3
  39. mage_ai/api/resources/OutputResource.py +33 -11
  40. mage_ai/api/resources/PageBlockLayoutResource.py +34 -23
  41. mage_ai/api/resources/PipelineInteractionResource.py +31 -15
  42. mage_ai/api/resources/PipelineResource.py +250 -123
  43. mage_ai/api/resources/PipelineRunResource.py +11 -3
  44. mage_ai/api/resources/PipelineScheduleResource.py +7 -2
  45. mage_ai/api/resources/PipelineTriggerResource.py +6 -1
  46. mage_ai/api/resources/ProjectResource.py +18 -7
  47. mage_ai/api/resources/SecretResource.py +1 -1
  48. mage_ai/api/resources/SeedResource.py +8 -1
  49. mage_ai/api/resources/StatusResource.py +21 -6
  50. mage_ai/api/resources/SyncResource.py +6 -8
  51. mage_ai/api/resources/VariableResource.py +46 -26
  52. mage_ai/api/resources/VersionControlProjectResource.py +9 -2
  53. mage_ai/api/resources/WidgetResource.py +1 -1
  54. mage_ai/api/resources/WorkspaceResource.py +1 -1
  55. mage_ai/api/views.py +47 -40
  56. mage_ai/authentication/permissions/seed.py +16 -2
  57. mage_ai/authentication/providers/oidc.py +21 -1
  58. mage_ai/autocomplete/utils.py +13 -9
  59. mage_ai/cache/base.py +1 -1
  60. mage_ai/cache/block.py +18 -12
  61. mage_ai/cache/block_action_object/__init__.py +32 -4
  62. mage_ai/cache/file.py +22 -19
  63. mage_ai/cache/pipeline.py +18 -12
  64. mage_ai/cli/main.py +1 -0
  65. mage_ai/cluster_manager/aws/emr_cluster_manager.py +9 -5
  66. mage_ai/cluster_manager/config.py +2 -2
  67. mage_ai/cluster_manager/manage.py +1 -1
  68. mage_ai/cluster_manager/workspace/base.py +1 -1
  69. mage_ai/command_center/applications/factory.py +10 -7
  70. mage_ai/command_center/files/factory.py +17 -15
  71. mage_ai/command_center/utils.py +25 -13
  72. mage_ai/data/__init__.py +0 -0
  73. mage_ai/data/constants.py +45 -0
  74. mage_ai/data/models/__init__.py +0 -0
  75. mage_ai/data/models/base.py +119 -0
  76. mage_ai/data/models/constants.py +1 -0
  77. mage_ai/data/models/generator.py +115 -0
  78. mage_ai/data/models/manager.py +168 -0
  79. mage_ai/data/models/pyarrow/__init__.py +0 -0
  80. mage_ai/data/models/pyarrow/record_batch.py +55 -0
  81. mage_ai/data/models/pyarrow/shared.py +21 -0
  82. mage_ai/data/models/pyarrow/table.py +8 -0
  83. mage_ai/data/models/reader.py +103 -0
  84. mage_ai/data/models/utils.py +59 -0
  85. mage_ai/data/models/writer.py +91 -0
  86. mage_ai/data/tabular/__init__.py +0 -0
  87. mage_ai/data/tabular/constants.py +23 -0
  88. mage_ai/data/tabular/mocks.py +19 -0
  89. mage_ai/data/tabular/models.py +126 -0
  90. mage_ai/data/tabular/reader.py +602 -0
  91. mage_ai/data/tabular/utils.py +102 -0
  92. mage_ai/data/tabular/writer.py +266 -0
  93. mage_ai/data/variables/__init__.py +0 -0
  94. mage_ai/data/variables/wrapper.py +54 -0
  95. mage_ai/data_cleaner/analysis/charts.py +61 -39
  96. mage_ai/data_cleaner/column_types/column_type_detector.py +53 -31
  97. mage_ai/data_cleaner/estimators/encoders.py +5 -2
  98. mage_ai/data_integrations/utils/scheduler.py +16 -11
  99. mage_ai/data_preparation/decorators.py +1 -0
  100. mage_ai/data_preparation/executors/block_executor.py +237 -155
  101. mage_ai/data_preparation/executors/streaming_pipeline_executor.py +1 -1
  102. mage_ai/data_preparation/git/__init__.py +27 -7
  103. mage_ai/data_preparation/git/api.py +7 -1
  104. mage_ai/data_preparation/git/utils.py +22 -16
  105. mage_ai/data_preparation/logging/logger_manager.py +4 -3
  106. mage_ai/data_preparation/models/block/__init__.py +1542 -878
  107. mage_ai/data_preparation/models/block/data_integration/mixins.py +4 -3
  108. mage_ai/data_preparation/models/block/dynamic/__init__.py +17 -6
  109. mage_ai/data_preparation/models/block/dynamic/child.py +41 -102
  110. mage_ai/data_preparation/models/block/dynamic/constants.py +1 -0
  111. mage_ai/data_preparation/models/block/dynamic/counter.py +296 -0
  112. mage_ai/data_preparation/models/block/dynamic/data.py +16 -0
  113. mage_ai/data_preparation/models/block/dynamic/factory.py +163 -0
  114. mage_ai/data_preparation/models/block/dynamic/models.py +19 -0
  115. mage_ai/data_preparation/models/block/dynamic/shared.py +92 -0
  116. mage_ai/data_preparation/models/block/dynamic/utils.py +291 -168
  117. mage_ai/data_preparation/models/block/dynamic/variables.py +384 -144
  118. mage_ai/data_preparation/models/block/dynamic/wrappers.py +77 -0
  119. mage_ai/data_preparation/models/block/extension/utils.py +10 -1
  120. mage_ai/data_preparation/models/block/global_data_product/__init__.py +10 -1
  121. mage_ai/data_preparation/models/block/integration/__init__.py +6 -2
  122. mage_ai/data_preparation/models/block/outputs.py +722 -0
  123. mage_ai/data_preparation/models/block/platform/mixins.py +7 -8
  124. mage_ai/data_preparation/models/block/r/__init__.py +56 -38
  125. mage_ai/data_preparation/models/block/settings/__init__.py +0 -0
  126. mage_ai/data_preparation/models/block/settings/dynamic/__init__.py +0 -0
  127. mage_ai/data_preparation/models/block/settings/dynamic/constants.py +7 -0
  128. mage_ai/data_preparation/models/block/settings/dynamic/mixins.py +118 -0
  129. mage_ai/data_preparation/models/block/settings/dynamic/models.py +31 -0
  130. mage_ai/data_preparation/models/block/settings/global_data_products/__init__.py +0 -0
  131. mage_ai/data_preparation/models/block/settings/global_data_products/mixins.py +20 -0
  132. mage_ai/data_preparation/models/block/settings/global_data_products/models.py +46 -0
  133. mage_ai/data_preparation/models/block/settings/variables/__init__.py +0 -0
  134. mage_ai/data_preparation/models/block/settings/variables/mixins.py +74 -0
  135. mage_ai/data_preparation/models/block/settings/variables/models.py +49 -0
  136. mage_ai/data_preparation/models/block/spark/mixins.py +2 -1
  137. mage_ai/data_preparation/models/block/sql/__init__.py +30 -5
  138. mage_ai/data_preparation/models/block/sql/utils/shared.py +21 -3
  139. mage_ai/data_preparation/models/block/utils.py +127 -70
  140. mage_ai/data_preparation/models/constants.py +19 -14
  141. mage_ai/data_preparation/models/custom_templates/custom_block_template.py +18 -13
  142. mage_ai/data_preparation/models/custom_templates/custom_pipeline_template.py +33 -16
  143. mage_ai/data_preparation/models/custom_templates/utils.py +1 -1
  144. mage_ai/data_preparation/models/file.py +41 -28
  145. mage_ai/data_preparation/models/global_data_product/__init__.py +88 -58
  146. mage_ai/data_preparation/models/global_hooks/models.py +1 -0
  147. mage_ai/data_preparation/models/interfaces.py +29 -0
  148. mage_ai/data_preparation/models/pipeline.py +365 -180
  149. mage_ai/data_preparation/models/pipelines/integration_pipeline.py +1 -2
  150. mage_ai/data_preparation/models/pipelines/seed.py +1 -1
  151. mage_ai/data_preparation/models/project/__init__.py +66 -18
  152. mage_ai/data_preparation/models/project/constants.py +2 -0
  153. mage_ai/data_preparation/models/triggers/__init__.py +120 -24
  154. mage_ai/data_preparation/models/utils.py +467 -17
  155. mage_ai/data_preparation/models/variable.py +1028 -137
  156. mage_ai/data_preparation/models/variables/__init__.py +0 -0
  157. mage_ai/data_preparation/models/variables/cache.py +149 -0
  158. mage_ai/data_preparation/models/variables/constants.py +72 -0
  159. mage_ai/data_preparation/models/variables/summarizer.py +336 -0
  160. mage_ai/data_preparation/models/variables/utils.py +77 -0
  161. mage_ai/data_preparation/models/widget/__init__.py +63 -41
  162. mage_ai/data_preparation/models/widget/charts.py +40 -27
  163. mage_ai/data_preparation/models/widget/constants.py +2 -0
  164. mage_ai/data_preparation/models/widget/utils.py +3 -3
  165. mage_ai/data_preparation/preferences.py +3 -3
  166. mage_ai/data_preparation/repo_manager.py +55 -21
  167. mage_ai/data_preparation/storage/base_storage.py +2 -2
  168. mage_ai/data_preparation/storage/gcs_storage.py +7 -4
  169. mage_ai/data_preparation/storage/local_storage.py +6 -3
  170. mage_ai/data_preparation/storage/s3_storage.py +5 -2
  171. mage_ai/data_preparation/templates/data_exporters/streaming/oracledb.yaml +8 -0
  172. mage_ai/data_preparation/variable_manager.py +281 -76
  173. mage_ai/io/base.py +3 -2
  174. mage_ai/io/bigquery.py +1 -0
  175. mage_ai/io/redshift.py +7 -5
  176. mage_ai/kernels/__init__.py +0 -0
  177. mage_ai/kernels/models.py +188 -0
  178. mage_ai/kernels/utils.py +169 -0
  179. mage_ai/orchestration/concurrency.py +6 -2
  180. mage_ai/orchestration/db/__init__.py +1 -0
  181. mage_ai/orchestration/db/migrations/versions/0227396a216c_add_userproject_table.py +38 -0
  182. mage_ai/orchestration/db/models/dynamic/__init__.py +0 -0
  183. mage_ai/orchestration/db/models/dynamic/controller.py +67 -0
  184. mage_ai/orchestration/db/models/oauth.py +2 -9
  185. mage_ai/orchestration/db/models/projects.py +10 -0
  186. mage_ai/orchestration/db/models/schedules.py +204 -187
  187. mage_ai/orchestration/db/models/schedules_project_platform.py +18 -12
  188. mage_ai/orchestration/db/models/utils.py +46 -5
  189. mage_ai/orchestration/metrics/pipeline_run.py +8 -9
  190. mage_ai/orchestration/notification/sender.py +1 -0
  191. mage_ai/orchestration/pipeline_scheduler_original.py +32 -8
  192. mage_ai/orchestration/pipeline_scheduler_project_platform.py +1 -1
  193. mage_ai/orchestration/run_status_checker.py +11 -4
  194. mage_ai/orchestration/triggers/api.py +12 -1
  195. mage_ai/presenters/charts/data_sources/base.py +4 -2
  196. mage_ai/presenters/charts/data_sources/block.py +15 -9
  197. mage_ai/presenters/charts/data_sources/chart_code.py +8 -5
  198. mage_ai/presenters/charts/data_sources/constants.py +1 -0
  199. mage_ai/presenters/charts/data_sources/system_metrics.py +22 -0
  200. mage_ai/presenters/interactions/models.py +11 -7
  201. mage_ai/presenters/pages/loaders/pipelines.py +5 -3
  202. mage_ai/presenters/pages/models/page_components/pipeline_schedules.py +3 -1
  203. mage_ai/presenters/utils.py +2 -0
  204. mage_ai/server/api/blocks.py +2 -1
  205. mage_ai/server/api/downloads.py +5 -1
  206. mage_ai/server/api/triggers.py +3 -1
  207. mage_ai/server/constants.py +1 -1
  208. mage_ai/server/frontend_dist/404.html +5 -5
  209. mage_ai/server/frontend_dist/_next/static/UZLabyPgcxtZvp0O0EUUS/_buildManifest.js +1 -0
  210. mage_ai/server/frontend_dist/_next/static/chunks/1376-22de38b4ad008d8a.js +1 -0
  211. mage_ai/server/frontend_dist/_next/static/chunks/{1557-b3502f3f1aa92ac7.js → 1557-25a7d985d5564fd3.js} +1 -1
  212. mage_ai/server/frontend_dist/_next/static/chunks/1668-30b4619b9534519b.js +1 -0
  213. mage_ai/server/frontend_dist/_next/static/chunks/1799-c42db95a015689ee.js +1 -0
  214. mage_ai/server/frontend_dist/_next/static/chunks/2996-2108b53b9d371d8d.js +1 -0
  215. mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/3763-61b542dafdbf5754.js → frontend_dist/_next/static/chunks/3763-40780c6d1e4b261d.js} +1 -1
  216. mage_ai/server/frontend_dist/_next/static/chunks/3782-129dd2a2448a2e36.js +1 -0
  217. mage_ai/server/frontend_dist/_next/static/chunks/3958-bcdfa414ccfa1eb2.js +1 -0
  218. mage_ai/server/frontend_dist/_next/static/chunks/4168-97fd1578d1a38315.js +1 -0
  219. mage_ai/server/frontend_dist/_next/static/chunks/4982-fa5a238b139fbdd2.js +1 -0
  220. mage_ai/server/frontend_dist/_next/static/chunks/5699-176f445e1313f001.js +1 -0
  221. mage_ai/server/frontend_dist/_next/static/chunks/7162-7dd03f0f605de721.js +1 -0
  222. mage_ai/server/frontend_dist/_next/static/chunks/7779-68d2b72a90c5f925.js +1 -0
  223. mage_ai/server/frontend_dist/_next/static/chunks/7966-5446a8e43711e2f9.js +1 -0
  224. mage_ai/server/frontend_dist/_next/static/chunks/8023-6c2f172f48dcb99b.js +1 -0
  225. mage_ai/server/frontend_dist/_next/static/chunks/8095-c351b8a735d73e0c.js +1 -0
  226. mage_ai/server/frontend_dist/_next/static/chunks/{main-77fe248a6fbd12d8.js → main-b99d4e30a88d9dc7.js} +1 -1
  227. mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-9fe2d9d07c94e968.js +1 -0
  228. mage_ai/server/frontend_dist/_next/static/chunks/pages/{block-layout-14f952f66964022f.js → block-layout-7f4b735c67115df5.js} +1 -1
  229. mage_ai/server/frontend_dist/_next/static/chunks/pages/global-data-products/[...slug]-e7d48e6b0c3068ac.js +1 -0
  230. mage_ai/server/frontend_dist/_next/static/chunks/pages/global-data-products-b943f31f050fc3a4.js +1 -0
  231. mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/overview-597b74828bf105db.js → frontend_dist/_next/static/chunks/pages/overview-9f1ac4ec003884f3.js} +1 -1
  232. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/backfills/{[...slug]-7181b086c93784d2.js → [...slug]-7e737f6fc7e83e9b.js} +1 -1
  233. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/dashboard-d94488e3f2eeef36.js +1 -0
  234. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit-cc641a7fa8473796.js +1 -0
  235. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/{block-runs-a5c0362763a21fa8.js → block-runs-284309877f3c5a5a.js} +1 -1
  236. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-26250e5335194ade.js +1 -0
  237. mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/monitors-7acc7afc00df17c2.js → frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors-5f4c8128b2413fd8.js} +1 -1
  238. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-4ebfc8e400315dda.js +1 -0
  239. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/settings-e5e0150a256aadb3.js +1 -0
  240. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/account/{profile-3f0df3decc856ee9.js → profile-3ae43c932537b254.js} +1 -1
  241. mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/settings/platform/preferences-32985f3f7c7dd3ab.js → frontend_dist/_next/static/chunks/pages/settings/platform/preferences-b603d7fe4b175256.js} +1 -1
  242. mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/settings/platform/settings-c2e9ef989c8bfa73.js → frontend_dist/_next/static/chunks/pages/settings/platform/settings-319ddbabc239e91b.js} +1 -1
  243. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/permissions/{[...slug]-47b64ced27c24985.js → [...slug]-5c360f72e4498855.js} +1 -1
  244. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/{permissions-e5a4d3d815cec25d.js → permissions-fb29fa6c2bd90bb0.js} +1 -1
  245. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/preferences-3b76fa959ffa09d3.js +1 -0
  246. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/roles/{[...slug]-379e1ee292504842.js → [...slug]-3b787b42f1093b1f.js} +1 -1
  247. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/roles-0b83fbdd39e85f5b.js +1 -0
  248. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/sync-data-a1e6950974d643a8.js +1 -0
  249. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/users/{[...slug]-2af9afbe727d88aa.js → [...slug]-0aa019d87db8b0b8.js} +1 -1
  250. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/{users-a4db8710f703c729.js → users-88c694d19207f2ec.js} +1 -1
  251. mage_ai/server/frontend_dist/_next/static/chunks/pages/version-control-31d0d50f7f30462b.js +1 -0
  252. mage_ai/server/frontend_dist/_next/static/chunks/{webpack-d079359c241db804.js → webpack-ac7fdc472bedf682.js} +1 -1
  253. mage_ai/server/frontend_dist/block-layout.html +3 -3
  254. mage_ai/server/frontend_dist/compute.html +6 -6
  255. mage_ai/server/frontend_dist/files.html +6 -6
  256. mage_ai/server/frontend_dist/global-data-products/[...slug].html +6 -6
  257. mage_ai/server/frontend_dist/global-data-products.html +6 -6
  258. mage_ai/server/frontend_dist/global-hooks/[...slug].html +6 -6
  259. mage_ai/server/frontend_dist/global-hooks.html +6 -6
  260. mage_ai/server/frontend_dist/index.html +3 -3
  261. mage_ai/server/frontend_dist/manage/files.html +6 -6
  262. mage_ai/server/frontend_dist/manage/settings.html +6 -6
  263. mage_ai/server/frontend_dist/manage/users/[user].html +6 -6
  264. mage_ai/server/frontend_dist/manage/users/new.html +6 -6
  265. mage_ai/server/frontend_dist/manage/users.html +6 -6
  266. mage_ai/server/frontend_dist/manage.html +6 -6
  267. mage_ai/server/frontend_dist/oauth.html +5 -5
  268. mage_ai/server/frontend_dist/overview.html +6 -6
  269. mage_ai/server/frontend_dist/pipeline-runs.html +6 -6
  270. mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills/[...slug].html +6 -6
  271. mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills.html +6 -6
  272. mage_ai/server/frontend_dist/pipelines/[pipeline]/dashboard.html +6 -6
  273. mage_ai/server/frontend_dist/pipelines/[pipeline]/edit.html +3 -3
  274. mage_ai/server/frontend_dist/pipelines/[pipeline]/logs.html +6 -6
  275. mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runs.html +6 -6
  276. mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runtime.html +6 -6
  277. mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors.html +6 -6
  278. mage_ai/server/frontend_dist/pipelines/[pipeline]/runs/[run].html +6 -6
  279. mage_ai/server/frontend_dist/pipelines/[pipeline]/runs.html +6 -6
  280. mage_ai/server/frontend_dist/pipelines/[pipeline]/settings.html +6 -6
  281. mage_ai/server/frontend_dist/pipelines/[pipeline]/syncs.html +6 -6
  282. mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers/[...slug].html +6 -6
  283. mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers.html +6 -6
  284. mage_ai/server/frontend_dist/pipelines/[pipeline].html +3 -3
  285. mage_ai/server/frontend_dist/pipelines.html +6 -6
  286. mage_ai/server/frontend_dist/platform/global-hooks/[...slug].html +6 -6
  287. mage_ai/server/frontend_dist/platform/global-hooks.html +6 -6
  288. mage_ai/server/frontend_dist/settings/account/profile.html +6 -6
  289. mage_ai/server/frontend_dist/settings/platform/preferences.html +6 -6
  290. mage_ai/server/frontend_dist/settings/platform/settings.html +6 -6
  291. mage_ai/server/frontend_dist/settings/workspace/permissions/[...slug].html +6 -6
  292. mage_ai/server/frontend_dist/settings/workspace/permissions.html +6 -6
  293. mage_ai/server/frontend_dist/settings/workspace/preferences.html +6 -6
  294. mage_ai/server/frontend_dist/settings/workspace/roles/[...slug].html +6 -6
  295. mage_ai/server/frontend_dist/settings/workspace/roles.html +6 -6
  296. mage_ai/server/frontend_dist/settings/workspace/sync-data.html +6 -6
  297. mage_ai/server/frontend_dist/settings/workspace/users/[...slug].html +6 -6
  298. mage_ai/server/frontend_dist/settings/workspace/users.html +6 -6
  299. mage_ai/server/frontend_dist/settings.html +3 -3
  300. mage_ai/server/frontend_dist/sign-in.html +12 -12
  301. mage_ai/server/frontend_dist/templates/[...slug].html +6 -6
  302. mage_ai/server/frontend_dist/templates.html +6 -6
  303. mage_ai/server/frontend_dist/terminal.html +6 -6
  304. mage_ai/server/frontend_dist/test.html +3 -3
  305. mage_ai/server/frontend_dist/triggers.html +6 -6
  306. mage_ai/server/frontend_dist/version-control.html +6 -6
  307. mage_ai/server/frontend_dist_base_path_template/404.html +5 -5
  308. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/1376-22de38b4ad008d8a.js +1 -0
  309. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{1557-b3502f3f1aa92ac7.js → 1557-25a7d985d5564fd3.js} +1 -1
  310. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/1668-30b4619b9534519b.js +1 -0
  311. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/1799-c42db95a015689ee.js +1 -0
  312. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/2996-2108b53b9d371d8d.js +1 -0
  313. mage_ai/server/{frontend_dist/_next/static/chunks/3763-61b542dafdbf5754.js → frontend_dist_base_path_template/_next/static/chunks/3763-40780c6d1e4b261d.js} +1 -1
  314. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/3782-129dd2a2448a2e36.js +1 -0
  315. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/3958-bcdfa414ccfa1eb2.js +1 -0
  316. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/4168-97fd1578d1a38315.js +1 -0
  317. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/4982-fa5a238b139fbdd2.js +1 -0
  318. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/5699-176f445e1313f001.js +1 -0
  319. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/7162-7dd03f0f605de721.js +1 -0
  320. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/7779-68d2b72a90c5f925.js +1 -0
  321. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/7966-5446a8e43711e2f9.js +1 -0
  322. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/8023-6c2f172f48dcb99b.js +1 -0
  323. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/8095-c351b8a735d73e0c.js +1 -0
  324. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{main-70b78159c2bb3fe1.js → main-384298e9133cec76.js} +1 -1
  325. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/_app-13a578bce3b7f30c.js +1 -0
  326. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{block-layout-14f952f66964022f.js → block-layout-7f4b735c67115df5.js} +1 -1
  327. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/global-data-products/[...slug]-e7d48e6b0c3068ac.js +1 -0
  328. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/global-data-products-b943f31f050fc3a4.js +1 -0
  329. mage_ai/server/{frontend_dist/_next/static/chunks/pages/overview-597b74828bf105db.js → frontend_dist_base_path_template/_next/static/chunks/pages/overview-9f1ac4ec003884f3.js} +1 -1
  330. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/backfills/{[...slug]-7181b086c93784d2.js → [...slug]-7e737f6fc7e83e9b.js} +1 -1
  331. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/dashboard-d94488e3f2eeef36.js +1 -0
  332. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/edit-cc641a7fa8473796.js +1 -0
  333. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/monitors/{block-runs-a5c0362763a21fa8.js → block-runs-284309877f3c5a5a.js} +1 -1
  334. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-26250e5335194ade.js +1 -0
  335. mage_ai/server/{frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors-7acc7afc00df17c2.js → frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/monitors-5f4c8128b2413fd8.js} +1 -1
  336. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-4ebfc8e400315dda.js +1 -0
  337. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/settings-e5e0150a256aadb3.js +1 -0
  338. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/account/{profile-3f0df3decc856ee9.js → profile-3ae43c932537b254.js} +1 -1
  339. mage_ai/server/{frontend_dist/_next/static/chunks/pages/settings/platform/preferences-32985f3f7c7dd3ab.js → frontend_dist_base_path_template/_next/static/chunks/pages/settings/platform/preferences-b603d7fe4b175256.js} +1 -1
  340. mage_ai/server/{frontend_dist/_next/static/chunks/pages/settings/platform/settings-c2e9ef989c8bfa73.js → frontend_dist_base_path_template/_next/static/chunks/pages/settings/platform/settings-319ddbabc239e91b.js} +1 -1
  341. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/permissions/{[...slug]-47b64ced27c24985.js → [...slug]-5c360f72e4498855.js} +1 -1
  342. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/{permissions-e5a4d3d815cec25d.js → permissions-fb29fa6c2bd90bb0.js} +1 -1
  343. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/preferences-3b76fa959ffa09d3.js +1 -0
  344. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/roles/{[...slug]-379e1ee292504842.js → [...slug]-3b787b42f1093b1f.js} +1 -1
  345. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/roles-0b83fbdd39e85f5b.js +1 -0
  346. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/sync-data-a1e6950974d643a8.js +1 -0
  347. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/users/{[...slug]-2af9afbe727d88aa.js → [...slug]-0aa019d87db8b0b8.js} +1 -1
  348. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/{users-a4db8710f703c729.js → users-88c694d19207f2ec.js} +1 -1
  349. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/version-control-31d0d50f7f30462b.js +1 -0
  350. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{webpack-68c003fb6a175cd7.js → webpack-481689d9989710cd.js} +1 -1
  351. mage_ai/server/frontend_dist_base_path_template/_next/static/kcptwoOU-JJJg6Vwpkfmx/_buildManifest.js +1 -0
  352. mage_ai/server/frontend_dist_base_path_template/block-layout.html +3 -3
  353. mage_ai/server/frontend_dist_base_path_template/compute.html +6 -6
  354. mage_ai/server/frontend_dist_base_path_template/files.html +6 -6
  355. mage_ai/server/frontend_dist_base_path_template/global-data-products/[...slug].html +6 -6
  356. mage_ai/server/frontend_dist_base_path_template/global-data-products.html +6 -6
  357. mage_ai/server/frontend_dist_base_path_template/global-hooks/[...slug].html +6 -6
  358. mage_ai/server/frontend_dist_base_path_template/global-hooks.html +6 -6
  359. mage_ai/server/frontend_dist_base_path_template/index.html +3 -3
  360. mage_ai/server/frontend_dist_base_path_template/manage/files.html +6 -6
  361. mage_ai/server/frontend_dist_base_path_template/manage/settings.html +6 -6
  362. mage_ai/server/frontend_dist_base_path_template/manage/users/[user].html +6 -6
  363. mage_ai/server/frontend_dist_base_path_template/manage/users/new.html +6 -6
  364. mage_ai/server/frontend_dist_base_path_template/manage/users.html +6 -6
  365. mage_ai/server/frontend_dist_base_path_template/manage.html +6 -6
  366. mage_ai/server/frontend_dist_base_path_template/oauth.html +5 -5
  367. mage_ai/server/frontend_dist_base_path_template/overview.html +6 -6
  368. mage_ai/server/frontend_dist_base_path_template/pipeline-runs.html +6 -6
  369. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/backfills/[...slug].html +6 -6
  370. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/backfills.html +6 -6
  371. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/dashboard.html +6 -6
  372. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/edit.html +3 -3
  373. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/logs.html +6 -6
  374. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors/block-runs.html +6 -6
  375. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors/block-runtime.html +6 -6
  376. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors.html +6 -6
  377. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/runs/[run].html +6 -6
  378. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/runs.html +6 -6
  379. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/settings.html +6 -6
  380. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/syncs.html +6 -6
  381. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/triggers/[...slug].html +6 -6
  382. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/triggers.html +6 -6
  383. mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline].html +3 -3
  384. mage_ai/server/frontend_dist_base_path_template/pipelines.html +6 -6
  385. mage_ai/server/frontend_dist_base_path_template/platform/global-hooks/[...slug].html +6 -6
  386. mage_ai/server/frontend_dist_base_path_template/platform/global-hooks.html +6 -6
  387. mage_ai/server/frontend_dist_base_path_template/settings/account/profile.html +6 -6
  388. mage_ai/server/frontend_dist_base_path_template/settings/platform/preferences.html +6 -6
  389. mage_ai/server/frontend_dist_base_path_template/settings/platform/settings.html +6 -6
  390. mage_ai/server/frontend_dist_base_path_template/settings/workspace/permissions/[...slug].html +6 -6
  391. mage_ai/server/frontend_dist_base_path_template/settings/workspace/permissions.html +6 -6
  392. mage_ai/server/frontend_dist_base_path_template/settings/workspace/preferences.html +6 -6
  393. mage_ai/server/frontend_dist_base_path_template/settings/workspace/roles/[...slug].html +6 -6
  394. mage_ai/server/frontend_dist_base_path_template/settings/workspace/roles.html +6 -6
  395. mage_ai/server/frontend_dist_base_path_template/settings/workspace/sync-data.html +6 -6
  396. mage_ai/server/frontend_dist_base_path_template/settings/workspace/users/[...slug].html +6 -6
  397. mage_ai/server/frontend_dist_base_path_template/settings/workspace/users.html +6 -6
  398. mage_ai/server/frontend_dist_base_path_template/settings.html +3 -3
  399. mage_ai/server/frontend_dist_base_path_template/sign-in.html +12 -12
  400. mage_ai/server/frontend_dist_base_path_template/templates/[...slug].html +6 -6
  401. mage_ai/server/frontend_dist_base_path_template/templates.html +6 -6
  402. mage_ai/server/frontend_dist_base_path_template/terminal.html +6 -6
  403. mage_ai/server/frontend_dist_base_path_template/test.html +3 -3
  404. mage_ai/server/frontend_dist_base_path_template/triggers.html +6 -6
  405. mage_ai/server/frontend_dist_base_path_template/version-control.html +6 -6
  406. mage_ai/server/kernel_output_parser.py +4 -1
  407. mage_ai/server/scheduler_manager.py +9 -0
  408. mage_ai/server/server.py +35 -31
  409. mage_ai/server/utils/custom_output.py +284 -0
  410. mage_ai/server/utils/execute_custom_code.py +245 -0
  411. mage_ai/server/utils/output_display.py +123 -289
  412. mage_ai/server/websocket_server.py +116 -69
  413. mage_ai/services/k8s/config.py +23 -0
  414. mage_ai/services/k8s/job_manager.py +6 -1
  415. mage_ai/services/ssh/aws/emr/utils.py +8 -8
  416. mage_ai/settings/keys/auth.py +1 -0
  417. mage_ai/settings/platform/__init__.py +159 -38
  418. mage_ai/settings/platform/constants.py +5 -0
  419. mage_ai/settings/platform/utils.py +53 -10
  420. mage_ai/settings/repo.py +26 -12
  421. mage_ai/settings/server.py +128 -37
  422. mage_ai/shared/array.py +24 -1
  423. mage_ai/shared/complex.py +45 -0
  424. mage_ai/shared/config.py +2 -1
  425. mage_ai/shared/custom_logger.py +11 -0
  426. mage_ai/shared/dates.py +10 -6
  427. mage_ai/shared/files.py +63 -8
  428. mage_ai/shared/hash.py +33 -9
  429. mage_ai/shared/io.py +9 -5
  430. mage_ai/shared/models.py +82 -24
  431. mage_ai/shared/outputs.py +87 -0
  432. mage_ai/shared/parsers.py +141 -15
  433. mage_ai/shared/path_fixer.py +11 -7
  434. mage_ai/shared/singletons/__init__.py +0 -0
  435. mage_ai/shared/singletons/base.py +47 -0
  436. mage_ai/shared/singletons/memory.py +38 -0
  437. mage_ai/shared/strings.py +34 -1
  438. mage_ai/shared/yaml.py +24 -0
  439. mage_ai/streaming/sinks/oracledb.py +57 -0
  440. mage_ai/streaming/sinks/sink_factory.py +4 -0
  441. mage_ai/system/__init__.py +0 -0
  442. mage_ai/system/constants.py +14 -0
  443. mage_ai/system/memory/__init__.py +0 -0
  444. mage_ai/system/memory/constants.py +1 -0
  445. mage_ai/system/memory/manager.py +174 -0
  446. mage_ai/system/memory/presenters.py +158 -0
  447. mage_ai/system/memory/process.py +216 -0
  448. mage_ai/system/memory/samples.py +13 -0
  449. mage_ai/system/memory/utils.py +656 -0
  450. mage_ai/system/memory/wrappers.py +177 -0
  451. mage_ai/system/models.py +58 -0
  452. mage_ai/system/storage/__init__.py +0 -0
  453. mage_ai/system/storage/utils.py +29 -0
  454. mage_ai/tests/api/endpoints/mixins.py +2 -2
  455. mage_ai/tests/api/endpoints/test_blocks.py +2 -1
  456. mage_ai/tests/api/endpoints/test_custom_designs.py +4 -4
  457. mage_ai/tests/api/endpoints/test_pipeline_runs.py +2 -2
  458. mage_ai/tests/api/endpoints/test_projects.py +2 -1
  459. mage_ai/tests/api/operations/base/test_base.py +27 -27
  460. mage_ai/tests/api/operations/base/test_base_with_user_authentication.py +27 -27
  461. mage_ai/tests/api/operations/base/test_base_with_user_permissions.py +23 -23
  462. mage_ai/tests/api/operations/test_syncs.py +6 -4
  463. mage_ai/tests/api/resources/test_pipeline_resource.py +9 -2
  464. mage_ai/tests/authentication/providers/test_oidc.py +59 -0
  465. mage_ai/tests/base_test.py +2 -2
  466. mage_ai/tests/data/__init__.py +0 -0
  467. mage_ai/tests/data/models/__init__.py +0 -0
  468. mage_ai/tests/data_preparation/executors/test_block_executor.py +23 -16
  469. mage_ai/tests/data_preparation/git/test_git.py +4 -1
  470. mage_ai/tests/data_preparation/models/block/dynamic/test_combos.py +305 -0
  471. mage_ai/tests/data_preparation/models/block/dynamic/test_counter.py +212 -0
  472. mage_ai/tests/data_preparation/models/block/dynamic/test_factory.py +360 -0
  473. mage_ai/tests/data_preparation/models/block/dynamic/test_variables.py +332 -0
  474. mage_ai/tests/data_preparation/models/block/hook/test_hook_block.py +2 -2
  475. mage_ai/tests/data_preparation/models/block/platform/test_mixins.py +1 -1
  476. mage_ai/tests/data_preparation/models/block/sql/utils/test_shared.py +26 -1
  477. mage_ai/tests/data_preparation/models/block/test_global_data_product.py +3 -2
  478. mage_ai/tests/data_preparation/models/custom_templates/test_utils.py +5 -4
  479. mage_ai/tests/data_preparation/models/global_hooks/test_hook.py +3 -0
  480. mage_ai/tests/data_preparation/models/global_hooks/test_predicates.py +9 -3
  481. mage_ai/tests/data_preparation/models/test_block.py +115 -120
  482. mage_ai/tests/data_preparation/models/test_blocks_helper.py +114 -0
  483. mage_ai/tests/data_preparation/models/test_global_data_product.py +41 -24
  484. mage_ai/tests/data_preparation/models/test_pipeline.py +9 -6
  485. mage_ai/tests/data_preparation/models/test_project.py +4 -1
  486. mage_ai/tests/data_preparation/models/test_utils.py +80 -0
  487. mage_ai/tests/data_preparation/models/test_variable.py +242 -69
  488. mage_ai/tests/data_preparation/models/variables/__init__.py +0 -0
  489. mage_ai/tests/data_preparation/models/variables/test_summarizer.py +481 -0
  490. mage_ai/tests/data_preparation/storage/shared/__init__.py +0 -0
  491. mage_ai/tests/data_preparation/test_repo_manager.py +6 -7
  492. mage_ai/tests/data_preparation/test_variable_manager.py +57 -48
  493. mage_ai/tests/factory.py +64 -43
  494. mage_ai/tests/orchestration/db/models/test_schedules.py +3 -3
  495. mage_ai/tests/orchestration/db/models/test_schedules_dynamic_blocks.py +279 -0
  496. mage_ai/tests/orchestration/test_pipeline_scheduler.py +1 -0
  497. mage_ai/tests/orchestration/triggers/test_global_data_product.py +3 -2
  498. mage_ai/tests/orchestration/triggers/test_utils.py +3 -2
  499. mage_ai/tests/services/k8s/test_job_manager.py +18 -0
  500. mage_ai/tests/streaming/sinks/test_oracledb.py +38 -0
  501. mage_ai/tests/test_shared.py +61 -0
  502. mage_ai/usage_statistics/logger.py +7 -2
  503. mage_ai/utils/code.py +33 -19
  504. {mage_ai-0.9.70.dist-info → mage_ai-0.9.71.dist-info}/METADATA +5 -2
  505. {mage_ai-0.9.70.dist-info → mage_ai-0.9.71.dist-info}/RECORD +513 -417
  506. mage_ai/data_preparation/models/global_data_product/constants.py +0 -6
  507. mage_ai/server/frontend_dist/_next/static/RhDiJSkcjCsh4xxX4BFBk/_buildManifest.js +0 -1
  508. mage_ai/server/frontend_dist/_next/static/chunks/2631-b9f9bea3f1cf906d.js +0 -1
  509. mage_ai/server/frontend_dist/_next/static/chunks/3782-ef4cd4f0b52072d0.js +0 -1
  510. mage_ai/server/frontend_dist/_next/static/chunks/4783-422429203610c318.js +0 -1
  511. mage_ai/server/frontend_dist/_next/static/chunks/5699-6d708c6b2153ea08.js +0 -1
  512. mage_ai/server/frontend_dist/_next/static/chunks/635-0d6b7c8804bcd2dc.js +0 -1
  513. mage_ai/server/frontend_dist/_next/static/chunks/7022-0d52dd8868621fb0.js +0 -1
  514. mage_ai/server/frontend_dist/_next/static/chunks/7361-8a23dd8360593e7a.js +0 -1
  515. mage_ai/server/frontend_dist/_next/static/chunks/7966-b9b85ba10667e654.js +0 -1
  516. mage_ai/server/frontend_dist/_next/static/chunks/8095-bdce03896ef9639a.js +0 -1
  517. mage_ai/server/frontend_dist/_next/static/chunks/8146-6bed4e7401e067e6.js +0 -1
  518. mage_ai/server/frontend_dist/_next/static/chunks/9265-d2a1aaec75ec69b8.js +0 -1
  519. mage_ai/server/frontend_dist/_next/static/chunks/9440-4069842b90d4b801.js +0 -1
  520. mage_ai/server/frontend_dist/_next/static/chunks/9832-67896490f6e8a014.js +0 -1
  521. mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-2a69553d8c6eeb53.js +0 -1
  522. mage_ai/server/frontend_dist/_next/static/chunks/pages/global-data-products/[...slug]-591abd392dc50ed4.js +0 -1
  523. mage_ai/server/frontend_dist/_next/static/chunks/pages/global-data-products-78e8e88f2a757a18.js +0 -1
  524. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/dashboard-95ffcd3e2b27e567.js +0 -1
  525. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit-b645a6d13ab9fe3a.js +0 -1
  526. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-1ed9045b2f1dfd65.js +0 -1
  527. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-1417ad1c821d720a.js +0 -1
  528. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/settings-59aca25a5b1d3998.js +0 -1
  529. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/preferences-349af617d05f001b.js +0 -1
  530. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/roles-36fa165a48af586b.js +0 -1
  531. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/sync-data-60d01d3887e31136.js +0 -1
  532. mage_ai/server/frontend_dist/_next/static/chunks/pages/version-control-3433c8b22e8342aa.js +0 -1
  533. mage_ai/server/frontend_dist_base_path_template/_next/static/TdpLLFome13qvM0gXvpHs/_buildManifest.js +0 -1
  534. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/2631-b9f9bea3f1cf906d.js +0 -1
  535. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/3782-ef4cd4f0b52072d0.js +0 -1
  536. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/4783-422429203610c318.js +0 -1
  537. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/5699-6d708c6b2153ea08.js +0 -1
  538. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/635-0d6b7c8804bcd2dc.js +0 -1
  539. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/7022-0d52dd8868621fb0.js +0 -1
  540. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/7361-8a23dd8360593e7a.js +0 -1
  541. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/7966-b9b85ba10667e654.js +0 -1
  542. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/8095-bdce03896ef9639a.js +0 -1
  543. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/8146-6bed4e7401e067e6.js +0 -1
  544. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/9265-d2a1aaec75ec69b8.js +0 -1
  545. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/9440-4069842b90d4b801.js +0 -1
  546. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/9832-67896490f6e8a014.js +0 -1
  547. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/_app-2a69553d8c6eeb53.js +0 -1
  548. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/global-data-products/[...slug]-591abd392dc50ed4.js +0 -1
  549. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/global-data-products-78e8e88f2a757a18.js +0 -1
  550. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/dashboard-95ffcd3e2b27e567.js +0 -1
  551. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/edit-b645a6d13ab9fe3a.js +0 -1
  552. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-1ed9045b2f1dfd65.js +0 -1
  553. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-1417ad1c821d720a.js +0 -1
  554. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/settings-59aca25a5b1d3998.js +0 -1
  555. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/preferences-349af617d05f001b.js +0 -1
  556. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/roles-36fa165a48af586b.js +0 -1
  557. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/sync-data-60d01d3887e31136.js +0 -1
  558. mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/version-control-3433c8b22e8342aa.js +0 -1
  559. mage_ai/shared/memory.py +0 -90
  560. mage_ai/tests/data_preparation/models/block/dynamic/test_dynamic_helpers.py +0 -48
  561. /mage_ai/{tests/data_preparation/shared → ai/utils}/__init__.py +0 -0
  562. /mage_ai/server/frontend_dist/_next/static/{RhDiJSkcjCsh4xxX4BFBk → UZLabyPgcxtZvp0O0EUUS}/_ssgManifest.js +0 -0
  563. /mage_ai/server/frontend_dist_base_path_template/_next/static/{TdpLLFome13qvM0gXvpHs → kcptwoOU-JJJg6Vwpkfmx}/_ssgManifest.js +0 -0
  564. /mage_ai/tests/data_preparation/{shared → storage/shared}/test_secrets.py +0 -0
  565. {mage_ai-0.9.70.dist-info → mage_ai-0.9.71.dist-info}/LICENSE +0 -0
  566. {mage_ai-0.9.70.dist-info → mage_ai-0.9.71.dist-info}/WHEEL +0 -0
  567. {mage_ai-0.9.70.dist-info → mage_ai-0.9.71.dist-info}/entry_points.txt +0 -0
  568. {mage_ai-0.9.70.dist-info → mage_ai-0.9.71.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,57 @@
1
+ import json
2
+ import time
3
+ from dataclasses import dataclass
4
+ from typing import Dict, List
5
+
6
+ import pandas as pd
7
+
8
+ from mage_ai.io.base import ExportWritePolicy
9
+ from mage_ai.io.oracledb import OracleDB
10
+ from mage_ai.shared.config import BaseConfig
11
+ from mage_ai.streaming.sinks.base import BaseSink
12
+
13
+
14
+ @dataclass
15
+ class OracleDbConfig(BaseConfig):
16
+ user: str
17
+ password: int
18
+ host: str
19
+ port: int
20
+ table: str
21
+ service_name: str
22
+ verbose: bool = False
23
+ mode: str = 'thin'
24
+
25
+
26
+ class OracleDbSink(BaseSink):
27
+ config_class = OracleDbConfig
28
+
29
+ def init_client(self):
30
+ self.oracledb_client = OracleDB(
31
+ user=self.config.user,
32
+ password=self.config.password,
33
+ host=self.config.host,
34
+ port=self.config.port,
35
+ service_name=self.config.service_name,
36
+ verbose=self.config.verbose,
37
+ mode=self.config.mode,
38
+ )
39
+ self.oracledb_client.open()
40
+
41
+ def write(self, message: Dict):
42
+ self.batch_write([message])
43
+
44
+ def batch_write(self, messages: List[Dict]):
45
+ if not messages:
46
+ return
47
+ self._print(
48
+ f'Batch ingest {len(messages)} records, time={time.time()}. Sample: {messages[0]}')
49
+ # Convert string formated dictionary array to array of dictionaries.
50
+ # To be used for dataframe creation.
51
+ dictionary_messages = [json.loads(doc_string) for doc_string in messages]
52
+ df = pd.DataFrame(dictionary_messages)
53
+ self.oracledb_client.export(
54
+ df,
55
+ self.config.table,
56
+ if_exists=ExportWritePolicy.APPEND,
57
+ )
@@ -59,6 +59,10 @@ class SinkFactory:
59
59
  from mage_ai.streaming.sinks.opensearch import OpenSearchSink
60
60
 
61
61
  return OpenSearchSink(config, **kwargs)
62
+ elif connector_type == SinkType.ORACLEDB:
63
+ from mage_ai.streaming.sinks.oracledb import OracleDbSink
64
+
65
+ return OracleDbSink(config, **kwargs)
62
66
  elif connector_type == SinkType.POSTGRES:
63
67
  from mage_ai.streaming.sinks.postgres import PostgresSink
64
68
 
File without changes
@@ -0,0 +1,14 @@
1
+ from enum import Enum
2
+
3
+
4
+ class LogType(str, Enum):
5
+ END = 'END'
6
+ GENERIC = 'GENERIC'
7
+ MEMORY = 'MEMORY'
8
+ METRICS = 'METRICS'
9
+ PROCESS = 'PROCESS'
10
+ START = 'START'
11
+
12
+
13
+ METRICS_DIRECTORY = 'metrics'
14
+ SYSTEM_DIRECTORY = 'system'
File without changes
@@ -0,0 +1 @@
1
+ MEMORY_DIRECTORY = 'memory'
@@ -0,0 +1,174 @@
1
+ import os
2
+ from datetime import datetime
3
+ from typing import Dict, Optional
4
+
5
+ import aiofiles
6
+
7
+ from mage_ai.data.constants import SUPPORTED_VARIABLE_TYPES
8
+ from mage_ai.settings.server import (
9
+ MEMORY_MANAGER_PANDAS_VERSION,
10
+ MEMORY_MANAGER_POLARS_VERSION,
11
+ MEMORY_MANAGER_V2,
12
+ MEMORY_MANAGER_VERSION,
13
+ SYSTEM_LOGS_PARTITIONS,
14
+ SYSTEM_LOGS_POLL_INTERVAL,
15
+ )
16
+ from mage_ai.shared.files import makedirs_async, makedirs_sync
17
+ from mage_ai.shared.singletons.memory import get_memory_manager_controller
18
+ from mage_ai.system.constants import LogType
19
+ from mage_ai.system.memory.constants import MEMORY_DIRECTORY
20
+ from mage_ai.system.memory.utils import (
21
+ current_memory_usage,
22
+ format_log_message,
23
+ get_log_directory,
24
+ monitor_memory_usage,
25
+ monitor_memory_usage_async,
26
+ )
27
+
28
+
29
+ class MemoryManager:
30
+ def __init__(
31
+ self,
32
+ scope_uuid: str,
33
+ process_uuid: str,
34
+ poll_interval: Optional[float] = None,
35
+ repo_path: Optional[str] = None,
36
+ metadata: Optional[Dict] = None,
37
+ ):
38
+ """
39
+ Usage example with EnhancedMemoryUsage class for enhanced memory usage tracking:
40
+
41
+ def run_operations():
42
+ # Simulating memory usage scenario
43
+ a = [1] * (10**6)
44
+ time.sleep(1) # Simulate time delay
45
+ b = [2] * (10**6)
46
+ del a # Manual deletion to potentially influence memory usage metrics
47
+
48
+ with EnhancedMemoryUsage() as emu:
49
+ result = emu.profile_memory(run_operations)
50
+ print(emu.report())
51
+ """
52
+ self.monitor = None
53
+ self.poll_interval = poll_interval or SYSTEM_LOGS_POLL_INTERVAL
54
+ self.process_uuid = process_uuid # [process_uuid]
55
+ self.repo_path = repo_path
56
+ self.scope_uuid = scope_uuid # [pipeline_uuid]/[block_uuid]
57
+ self._log_path = None
58
+ self._metadata = metadata or {}
59
+
60
+ @property
61
+ def log_path(self) -> str:
62
+ """
63
+ /root/.mage_data/[project]
64
+ /system/metrics
65
+ /pipelines/[pipeline_uuid]/[block_uuid]
66
+ /[date]/[hour]
67
+ /[metric]
68
+ /[process_uuid].log
69
+ """
70
+ if not self._log_path:
71
+ now = datetime.utcnow()
72
+
73
+ datetime_partitions = []
74
+ for partition_name in SYSTEM_LOGS_PARTITIONS:
75
+ if 'ds' == partition_name:
76
+ datetime_partitions.append(now.strftime('%Y-%m-%d'))
77
+ elif 'hr' == partition_name:
78
+ datetime_partitions.append(now.strftime('%H'))
79
+
80
+ self._log_path = os.path.join(
81
+ get_log_directory(self.scope_uuid, repo_path=self.repo_path),
82
+ *datetime_partitions,
83
+ MEMORY_DIRECTORY,
84
+ f'{self.process_uuid}.log',
85
+ )
86
+ return self._log_path
87
+
88
+ @property
89
+ def metadata(self) -> Dict:
90
+ supported_variable_types = [v.value for v in SUPPORTED_VARIABLE_TYPES]
91
+
92
+ self._metadata.update(
93
+ dict(
94
+ memory_manager_version=MEMORY_MANAGER_VERSION,
95
+ memory_manager_pandas_version=MEMORY_MANAGER_PANDAS_VERSION,
96
+ memory_manager_polars_version=MEMORY_MANAGER_POLARS_VERSION,
97
+ supported_variable_types=supported_variable_types,
98
+ ),
99
+ )
100
+ return self._metadata
101
+
102
+ def __enter__(self):
103
+ if not MEMORY_MANAGER_V2:
104
+ return self
105
+
106
+ makedirs_sync(os.path.dirname(self.log_path))
107
+
108
+ self.stop()
109
+ self.start(
110
+ *monitor_memory_usage(
111
+ callback=self.__write_sync,
112
+ interval_seconds=self.poll_interval,
113
+ )
114
+ )
115
+
116
+ with open(self.log_path, 'a') as f:
117
+ f.write(format_log_message(log_type=LogType.START, metadata=self.metadata))
118
+ f.write(format_log_message(message=current_memory_usage()))
119
+ return self
120
+
121
+ def __exit__(self, exc_type, exc_value, traceback):
122
+ if not MEMORY_MANAGER_V2:
123
+ return
124
+
125
+ try:
126
+ with open(self.log_path, 'a') as f:
127
+ f.write(format_log_message(message=current_memory_usage()))
128
+ f.write(format_log_message(log_type=LogType.END, metadata=self.metadata))
129
+ except Exception as err:
130
+ print(f'[MemoryManager] Error writing memory usage logs: {err}')
131
+ finally:
132
+ self.stop()
133
+
134
+ async def __aenter__(self):
135
+ await makedirs_async(os.path.dirname(self.log_path))
136
+
137
+ self.stop()
138
+ self.start(
139
+ *(
140
+ await monitor_memory_usage_async(
141
+ callback=self.__write_async,
142
+ interval_seconds=self.poll_interval,
143
+ )
144
+ )
145
+ )
146
+
147
+ async with aiofiles.open(self.log_path, mode='a', encoding='utf-8') as fp:
148
+ await fp.write(format_log_message(log_type=LogType.START, metadata=self.metadata))
149
+ await fp.write(format_log_message(message=current_memory_usage()))
150
+ return self
151
+
152
+ async def __aexit__(self, exc_type, exc_value, traceback):
153
+ try:
154
+ async with aiofiles.open(self.log_path, mode='a', encoding='utf-8') as fp:
155
+ await fp.write(format_log_message(message=current_memory_usage()))
156
+ await fp.write(format_log_message(log_type=LogType.END, metadata=self.metadata))
157
+ finally:
158
+ self.stop()
159
+
160
+ def __write_sync(self, memory: float) -> None:
161
+ with open(self.log_path, 'a') as f:
162
+ f.write(format_log_message(message=memory))
163
+
164
+ async def __write_async(self, memory: float) -> None:
165
+ async with aiofiles.open(self.log_path, mode='a', encoding='utf-8') as fp:
166
+ await fp.write(format_log_message(message=memory))
167
+
168
+ def start(self, stop_event, monitor_thread) -> None:
169
+ get_memory_manager_controller().add_event_monitor(
170
+ self.log_path, stop_event, monitor_thread
171
+ )
172
+
173
+ def stop(self) -> None:
174
+ get_memory_manager_controller().stop_event(self.log_path)
@@ -0,0 +1,158 @@
1
+ import os
2
+ from pathlib import Path
3
+ from typing import Callable, Dict, List, Optional
4
+
5
+ import polars as pl
6
+
7
+ from mage_ai.settings.server import SYSTEM_LOGS_PARTITIONS
8
+ from mage_ai.system.constants import LogType
9
+ from mage_ai.system.memory.constants import MEMORY_DIRECTORY
10
+ from mage_ai.system.memory.utils import get_log_directory
11
+
12
+ DEFAULT_SCHEMA = {
13
+ 'block_uuid': pl.Utf8,
14
+ 'log_type': pl.Utf8,
15
+ 'message': pl.Utf8,
16
+ 'metadata': pl.Utf8,
17
+ 'metric': pl.Utf8,
18
+ 'pipeline_uuid': pl.Utf8,
19
+ 'process_uuid': pl.Utf8,
20
+ 'scope_uuid': pl.Utf8,
21
+ 'timestamp': pl.Int64,
22
+ 'value': pl.Float64,
23
+ }
24
+
25
+
26
+ def parse_line(line: str) -> dict:
27
+ # Initial parsing by removing brackets and splitting
28
+ parts = line.strip('[]').split(']', 1)
29
+ timestamp = parts[0]
30
+ rest = parts[1].strip() if len(parts) > 1 else ''
31
+
32
+ data = {}
33
+ for k in DEFAULT_SCHEMA.keys():
34
+ if k not in ['timestamp', 'value']:
35
+ data[k] = None
36
+ data['timestamp'] = int(timestamp)
37
+ data['value'] = float('nan')
38
+
39
+ # Extract the log type and the rest
40
+ if rest:
41
+ segments = rest.split(' ', 2) # Expecting type, potential message, and metadata
42
+ log_type = segments[0].replace('[', '').replace(']', '')
43
+ data['log_type'] = log_type
44
+
45
+ # The rest could contain a message and/or metadata
46
+ rest_segments = ' '.join(segments[1:]).split('=', 1)
47
+
48
+ message = None
49
+ if len(rest_segments) > 1: # There's metadata
50
+ # Attempt to identify potential message before metadata
51
+ pre_meta = rest_segments[0].rpartition(' ')
52
+
53
+ message = pre_meta[0].strip()
54
+ # Reconstruct metadata split and parse
55
+ metadata_content = pre_meta[2] + '=' + rest_segments[1]
56
+ data['metadata'] = metadata_content
57
+ else:
58
+ # No metadata, the rest could be a message
59
+ message = rest_segments[0].strip()
60
+
61
+ data['message'] = message
62
+ if LogType.MEMORY.value == log_type:
63
+ data['metric'] = LogType.MEMORY.value
64
+ if message.isdigit():
65
+ data['value'] = float(message)
66
+
67
+ return data
68
+
69
+
70
+ def parse_log_to_polars(log_contents: str, process_uuid: str) -> pl.DataFrame:
71
+ data_records: List[dict] = []
72
+ lines = log_contents.strip().split('\n')
73
+
74
+ for line in lines:
75
+ log_data = parse_line(line)
76
+ log_data['process_uuid'] = process_uuid # Add process_uuid to each log data record
77
+ data_records.append(log_data)
78
+
79
+ return pl.DataFrame(data_records)
80
+
81
+
82
+ def parse_directory_to_df(
83
+ directory_path: str, extra_columns_parser: Optional[Callable[[str, str], dict]] = None
84
+ ) -> pl.DataFrame:
85
+ """
86
+ Parses a directory of log files into a Polars DataFrame.
87
+
88
+ Parameters:
89
+ - directory_path: Path to the directory containing log files.
90
+ - extra_columns_parser: [Optional] A callable function that receives the file path of
91
+ each log and returns a dictionary of extra columns and their values.
92
+
93
+ Returns:
94
+ - A Polars DataFrame containing the merged logs with potential extra columns.
95
+ """
96
+ all_dataframes = []
97
+ for root, _dirs, files in os.walk(directory_path):
98
+ for file_name in files:
99
+ if file_name.endswith('.log'):
100
+ process_uuid = file_name.replace('.log', '')
101
+ file_path = os.path.join(root, file_name)
102
+ with open(file_path, 'r') as file:
103
+ log_contents = file.read()
104
+ df = parse_log_to_polars(log_contents, process_uuid)
105
+
106
+ extra_columns = pipeline_block_columns_parser(directory_path, file_path)
107
+
108
+ if extra_columns_parser:
109
+ extra_columns.update(extra_columns_parser(directory_path, file_path) or {})
110
+
111
+ if extra_columns:
112
+ for col, val in extra_columns.items():
113
+ df = df.with_columns((pl.lit(val)).alias(col))
114
+
115
+ all_dataframes.append(df)
116
+
117
+ if all_dataframes:
118
+ final_df = pl.concat(all_dataframes)
119
+ return final_df
120
+ else:
121
+ return pl.DataFrame(
122
+ [],
123
+ schema=DEFAULT_SCHEMA,
124
+ )
125
+
126
+
127
+ def to_dataframe(
128
+ scope_uuid: str, extra_columns_parser: Optional[Callable[[str, str], dict]] = None
129
+ ) -> pl.DataFrame:
130
+ log_directory = get_log_directory(scope_uuid)
131
+ return parse_directory_to_df(
132
+ log_directory,
133
+ extra_columns_parser=extra_columns_parser,
134
+ )
135
+
136
+
137
+ def pipeline_block_columns_parser(directory_path: str, file_path: str) -> Dict:
138
+ try:
139
+ parts = Path(file_path).relative_to(Path(directory_path)).parts
140
+ if MEMORY_DIRECTORY in parts:
141
+ parts = parts[: parts.index(MEMORY_DIRECTORY)]
142
+
143
+ parts = parts[: -1 * len(SYSTEM_LOGS_PARTITIONS)]
144
+
145
+ data = {}
146
+
147
+ # If the pipeline is in the directory path, there won’t be a pipeline UUID in the parts
148
+ if len(parts) >= 1:
149
+ data['scope_uuid'] = os.path.join(*parts)
150
+ if len(parts) >= 2:
151
+ data['pipeline_uuid'] = os.path.join(*parts[:1])
152
+ data['block_uuid'] = os.path.join(*parts[1:])
153
+ else:
154
+ data['block_uuid'] = os.path.join(*parts)
155
+
156
+ return data
157
+ except ValueError:
158
+ return {}
@@ -0,0 +1,216 @@
1
+ import functools
2
+ import gc
3
+ import os
4
+ import sys
5
+ import tracemalloc
6
+ from multiprocessing import Process, Queue
7
+ from typing import Any, Dict, List, Tuple
8
+
9
+ import psutil
10
+
11
+
12
+ def track_usage(queue):
13
+ def decorator(func):
14
+ @functools.wraps(func)
15
+ def wrapper(*args, **kwargs):
16
+ process_id = os.getpid()
17
+ # Memory usage before
18
+ proc = psutil.Process(process_id)
19
+ mem_before = proc.memory_info().rss
20
+
21
+ # Track objects before the function call
22
+ objects_before = set(id(obj) for obj in gc.get_objects())
23
+
24
+ result = func(*args, **kwargs) # Call the original function
25
+
26
+ objects_after = set(id(obj) for obj in gc.get_objects())
27
+ new_objects = [
28
+ [str(type(obj)), sys.getsizeof(obj)]
29
+ for obj in gc.get_objects()
30
+ if id(obj) in objects_after - objects_before
31
+ ]
32
+
33
+ # Memory usage after
34
+ mem_after = proc.memory_info().rss
35
+ print(
36
+ f'[{func.__name__}] Memory Usage: '
37
+ f'Before={mem_before} After={mem_after} Difference={mem_after - mem_before} bytes'
38
+ )
39
+
40
+ # Put tracking object/details into the queue
41
+ print(len(new_objects))
42
+ memory_usage_info = {
43
+ 'function_name': func.__name__,
44
+ 'memory_used': mem_after - mem_before,
45
+ 'process_id': process_id,
46
+ 'uncollected_objects': new_objects,
47
+ }
48
+ queue.put(memory_usage_info)
49
+ print('Added to queue')
50
+
51
+ return result
52
+
53
+ return wrapper
54
+
55
+ return decorator
56
+
57
+
58
+ def wrapped_func(queue, code_string, func_name, *args, **kwargs):
59
+ # Prepare a namespace dict where the executed code will live
60
+ namespace = (
61
+ globals().copy()
62
+ ) # This copies the current global symbols to the namespace
63
+
64
+ # Execute the code_string within the namespace
65
+ exec(
66
+ code_string, namespace, namespace
67
+ ) # Now both global and local scopes are the same
68
+
69
+ # Now, retrieve the function from this namespace
70
+ actual_function = namespace.get(func_name)
71
+
72
+ decorated_func = track_usage(queue)(actual_function)
73
+
74
+ try:
75
+ return decorated_func(*args, **kwargs)
76
+ except Exception as e:
77
+ queue.put({'error': str(e)})
78
+ finally:
79
+ # Signal that this process is done
80
+ queue.put(None)
81
+
82
+
83
+ def begin_working(jobs: List[Tuple[str, str, List[Any], Dict[str, Any]]]):
84
+ gc.collect() # Force a collection to start from a clean slate
85
+
86
+ queue = Queue()
87
+
88
+ tracemalloc.start()
89
+
90
+ # Take a snapshot before the function call
91
+ snapshot_before = tracemalloc.take_snapshot()
92
+
93
+ num_processes = 0
94
+ for file_path, func_name, args, kwargs in jobs:
95
+ print(f'Processing {func_name} in {file_path}')
96
+ with open(file_path, 'r') as file:
97
+ code_string = file.read()
98
+
99
+ p = Process(
100
+ target=wrapped_func,
101
+ args=(
102
+ queue,
103
+ code_string,
104
+ func_name,
105
+ *args,
106
+ ),
107
+ kwargs=kwargs,
108
+ )
109
+ p.start()
110
+ num_processes += 1
111
+ p.join(timeout=10 * 60) # Adjust the timeout as needed
112
+ if p.is_alive():
113
+ print(f'Process {p.name} did not terminate as expected.')
114
+ p.terminate() # Forcefully terminate
115
+
116
+ # Retrieve and print memory usage information
117
+ uncollected_objects = []
118
+ func_names = []
119
+ process_ids = []
120
+ memory_uses = []
121
+
122
+ sentinel_count = 0
123
+ while sentinel_count < num_processes:
124
+ memory_usage_info = queue.get()
125
+ if memory_usage_info is None:
126
+ sentinel_count += 1
127
+ continue # Skip the rest of the loop
128
+ # Existing code to process non-sentinel items...
129
+
130
+ if 'error' in memory_usage_info:
131
+ raise Exception(memory_usage_info['error'])
132
+
133
+ memory_uses.append(memory_usage_info.get('memory_used'))
134
+ func_names.append(memory_usage_info.get('function_name'))
135
+ process_ids.append(memory_usage_info.get('process_id'))
136
+ uncollected_objects.extend(memory_usage_info.get('uncollected_objects') or [])
137
+
138
+ print(f'Total memory used: {sum(memory_uses)} bytes across:')
139
+ for func_name, process_id in zip(func_names, process_ids):
140
+ print(f'\t{func_name} (PID={process_id}): {memory_uses.pop(0)} bytes')
141
+
142
+ print('\n')
143
+
144
+ sizes_by_type = {}
145
+ # Find new objects created during the function call
146
+ for obj_type, obj_size in uncollected_objects:
147
+ if obj_type not in sizes_by_type:
148
+ sizes_by_type[obj_type] = 0
149
+ sizes_by_type[obj_type] += obj_size
150
+
151
+ print(
152
+ f'Objects created that wasn’t uncollected: {len(uncollected_objects)} '
153
+ f'({sum(list(sizes_by_type.values()))})'
154
+ )
155
+ for k, v in sizes_by_type.items():
156
+ print(f'\t{k}: {v} bytes')
157
+
158
+ del uncollected_objects
159
+ del func_names
160
+ del process_ids
161
+ del memory_uses
162
+ del sizes_by_type
163
+
164
+ # Take another snapshot after
165
+ snapshot_after = tracemalloc.take_snapshot()
166
+
167
+ # Compare the two snapshots to see what has been allocated in between
168
+ """
169
+ This comparison highlights allocations, not necessarily what's "still in use" because it
170
+ doesn't track deallocations directly. If an object is allocated and then deallocated between
171
+ the snapshots, it won't appear. However, if there's a positive `size_diff`,
172
+ it suggests memory allocated during the snapshot window hasn't been released by the time of
173
+ the second snapshot.
174
+ """
175
+ stats = snapshot_after.compare_to(snapshot_before, 'lineno')
176
+
177
+ # A more focused approach to filtering the stats
178
+ for stat in stats:
179
+ trace = stat.traceback.format()
180
+ # Check if any line in the traceback belongs to your function's code file
181
+ if any('worker' in line for line in trace):
182
+ for line in trace:
183
+ print(line)
184
+ print(stat)
185
+ """
186
+ For understanding "memory still being used," you're mainly concerned with `size_diff`
187
+ and allocations (`size` and `count`) not countered by deallocations within the
188
+ window of your snapshots.
189
+ """
190
+ # print('\t', stat.traceback.format())
191
+ # print('\t', stat.count)
192
+ # print('\t', stat.count_diff)
193
+ # print('\t', stat.size)
194
+ print('\t', stat.size_diff)
195
+ print('\n')
196
+
197
+ gc.collect() # Force a collection to start from a clean slate
198
+
199
+
200
+ if __name__ == '__main__':
201
+ begin_working(
202
+ [
203
+ (
204
+ '/Users/dangerous/Code/materia/mage-ai/mage_ai/system/memory/samples.py',
205
+ 'worker',
206
+ [1],
207
+ dict(another_arg=2),
208
+ ),
209
+ (
210
+ '/Users/dangerous/Code/materia/mage-ai/mage_ai/system/memory/samples.py',
211
+ 'create_objects_example',
212
+ [1000],
213
+ dict(),
214
+ ),
215
+ ]
216
+ )
@@ -0,0 +1,13 @@
1
+ def worker(*args, **kwargs):
2
+ # Example use of arguments inside the function
3
+ print(f'Worker received: some_arg={args}, another_arg={kwargs}')
4
+ # Simulate work with objects
5
+ return [i for i in range(1000000)]
6
+
7
+
8
+ # Example function to track
9
+ def create_objects_example(count, *args, **kwargs):
10
+ a = [1] * count
11
+ b = 'A string' * count
12
+ c = {'key': 'value' * count}
13
+ return a, b, c