mage-ai 0.9.74__py3-none-any.whl → 0.9.79__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.
- mage_ai/ai/llm_pipeline_wizard.py +6 -4
- mage_ai/ai/openai_client.py +7 -5
- mage_ai/api/policies/PipelineSchedulePolicy.py +1 -0
- mage_ai/api/presenters/PipelineSchedulePresenter.py +11 -2
- mage_ai/api/resources/GitFileResource.py +8 -0
- mage_ai/api/resources/PipelineScheduleResource.py +20 -14
- mage_ai/api/resources/PipelineTriggerResource.py +3 -1
- mage_ai/api/resources/SessionResource.py +2 -2
- mage_ai/api/resources/SyncResource.py +1 -1
- mage_ai/api/resources/UserResource.py +1 -1
- mage_ai/cli/main.py +8 -1
- mage_ai/data_cleaner/analysis/charts.py +1 -1
- mage_ai/data_cleaner/cleaning_rules/reformat_values.py +1 -1
- mage_ai/data_integrations/destinations/constants.py +3 -0
- mage_ai/data_integrations/sources/constants.py +2 -0
- mage_ai/data_preparation/executors/block_executor.py +8 -3
- mage_ai/data_preparation/executors/pipeline_executor.py +35 -19
- mage_ai/data_preparation/git/utils.py +2 -2
- mage_ai/data_preparation/logging/logger_manager.py +31 -2
- mage_ai/data_preparation/models/block/__init__.py +33 -27
- mage_ai/data_preparation/models/block/dbt/dbt_adapter.py +20 -8
- mage_ai/data_preparation/models/block/dynamic/constants.py +0 -1
- mage_ai/data_preparation/models/block/dynamic/counter.py +1 -3
- mage_ai/data_preparation/models/block/outputs.py +7 -1
- mage_ai/data_preparation/models/block/r/__init__.py +16 -5
- mage_ai/data_preparation/models/block/sql/__init__.py +2 -0
- mage_ai/data_preparation/models/block/sql/mssql.py +8 -0
- mage_ai/data_preparation/models/block/sql/utils/shared.py +6 -2
- mage_ai/data_preparation/models/constants.py +4 -1
- mage_ai/data_preparation/models/pipeline.py +11 -2
- mage_ai/data_preparation/models/project/__init__.py +3 -1
- mage_ai/data_preparation/models/triggers/__init__.py +1 -1
- mage_ai/data_preparation/storage/local_storage.py +4 -1
- mage_ai/data_preparation/templates/constants.py +7 -0
- mage_ai/data_preparation/templates/data_exporters/streaming/elasticsearch.yaml +3 -0
- mage_ai/data_preparation/templates/data_loaders/airtable.py +28 -0
- mage_ai/data_preparation/templates/data_loaders/streaming/nats.yaml +6 -3
- mage_ai/data_preparation/templates/repo/io_config.yaml +2 -0
- mage_ai/io/airtable.py +104 -0
- mage_ai/io/base.py +30 -1
- mage_ai/io/bigquery.py +36 -0
- mage_ai/io/config.py +6 -0
- mage_ai/io/mssql.py +21 -9
- mage_ai/io/mysql.py +6 -1
- mage_ai/io/oracledb.py +2 -4
- mage_ai/io/postgres.py +41 -19
- mage_ai/io/qdrant.py +1 -1
- mage_ai/io/redshift.py +13 -0
- mage_ai/io/sql.py +1 -0
- mage_ai/io/utils.py +18 -0
- mage_ai/orchestration/db/__init__.py +23 -3
- mage_ai/orchestration/db/migrations/versions/39d36f1dab73_create_genericjob.py +47 -0
- mage_ai/orchestration/db/models/oauth.py +2 -1
- mage_ai/orchestration/db/models/schedules.py +108 -6
- mage_ai/orchestration/db/models/schedules_project_platform.py +1 -1
- mage_ai/orchestration/db/models/secrets.py +11 -1
- mage_ai/orchestration/job_manager.py +19 -0
- mage_ai/orchestration/metrics/pipeline_run.py +1 -1
- mage_ai/orchestration/notification/sender.py +2 -2
- mage_ai/orchestration/pipeline_scheduler_original.py +150 -6
- mage_ai/orchestration/pipeline_scheduler_project_platform.py +4 -5
- mage_ai/orchestration/queue/config.py +11 -1
- mage_ai/orchestration/queue/process_queue.py +4 -0
- mage_ai/orchestration/utils/distributed_lock.py +8 -1
- mage_ai/orchestration/utils/resources.py +56 -2
- mage_ai/sample_datasets/salary_survey.csv +52 -52
- mage_ai/server/api/base.py +41 -0
- mage_ai/server/api/constants.py +1 -0
- mage_ai/server/api/triggers.py +9 -0
- mage_ai/server/constants.py +1 -1
- mage_ai/server/frontend_dist/404.html +3 -3
- mage_ai/server/frontend_dist/_next/static/TUo4RceCdMufBTBTq8CAq/_buildManifest.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/{1187-839336d276186105.js → 1187-4560c3895e1d7099.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/{1598-0adca9dce3ba4c60.js → 1598-cbf3f5a6078fc3f5.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/2717-638a944d24d5abde.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/3548-36f746b1824004f2.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/{3763-39a5174f6a3924db.js → 3763-aabe2703076636b0.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/3782-3e2acb5ed45b582b.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/449-5e2253c6aba42557.js +1 -0
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/5627-d5e559859dd0e1e0.js → frontend_dist/_next/static/chunks/5627-10e76bafa5a26f5f.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/{5699-e49718dfc9eb2854.js → 5699-e99379e332bd0b41.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/{7966-163da2621b8c987c.js → 7966-a5a7db345ce81263.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-b697b35dfc4e6e26.js +2 -0
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/compute-ed67fa8e81662e8b.js → frontend_dist/_next/static/chunks/pages/compute-9e2dea78024e3bb4.js} +1 -1
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/files-e0ecd7ced09a63b2.js → frontend_dist/_next/static/chunks/pages/files-e08c7fe76f968f9c.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/global-data-products/{[...slug]-c7a729477ecda50e.js → [...slug]-30c3807057a4e65b.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/{global-data-products-fd6ae6a358a60a0c.js → global-data-products-8dcb3b31af9e0e39.js} +1 -1
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/global-hooks/[...slug]-8e50243797a7fe59.js → frontend_dist/_next/static/chunks/pages/global-hooks/[...slug]-85a64b64d27214b6.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/{global-hooks-d0c003446332dc0d.js → global-hooks-4ff959d51b8a9502.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/{files-a69ed8e9f814490c.js → files-d08a460641d0efaa.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/{overview-1aad7093c6d39257.js → overview-aae747f487e08d51.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/{pipeline-runs-528d30e0d13b0cc7.js → pipeline-runs-09a842d64a6ada62.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/{settings-fb9201d9cf63031d.js → settings-2e98e57d9376a458.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users/{[user]-000f5a980a07da39.js → [user]-7be6e41ad66089bb.js} +1 -1
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/manage/users/new-e4e613f6e817a733.js → frontend_dist/_next/static/chunks/pages/manage/users/new-4c088833063bfa07.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users-5db54821a3059c69.js +1 -0
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/manage-34d718b8a4066c23.js → frontend_dist/_next/static/chunks/pages/manage-868fcd8cbeb265f0.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/{oauth-3bfd1b8d7f036726.js → oauth-6ceceb62191dfe8a.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/overview-f65416f6dbe30ad3.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/{pipeline-runs-5f8c100e648efa8a.js → pipeline-runs-2d0136b51b57de93.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/backfills/{[...slug]-688c652f3296bb9c.js → [...slug]-1ad5238742e25b4c.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/backfills-bd11e87d026bfbf9.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/{dashboard-1236e36d39b1637d.js → dashboard-0f4f47f721b0723f.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit-5ae8efe9e0530212.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/logs-fe91dfb0091f6bc6.js +1 -0
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runs-0d68d4bf6290fefb.js → frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runs-cf794b2d22a80f31.js} +1 -1
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-9254358d58f07714.js → frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-a964caef91bed9e1.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/{monitors-821001e690caebe2.js → monitors-80bebb4401eefe25.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-2eae7cb017027682.js +1 -0
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/runs-2d4b2a0800a66b33.js → frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs-776b2e5b0b6ceba8.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/settings-03d9bca3bc5e6088.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/syncs-707ed8ca942ca802.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/triggers/{[...slug]-259143ed3cf59e31.js → [...slug]-8429f17d4146e1ec.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/triggers-193045d9836d8d80.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-d25d07db166cbb04.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/platform/global-hooks/{[...slug]-5eeec927e4202b63.js → [...slug]-6834ae87bd668cb2.js} +1 -1
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/platform/global-hooks-fbe9ad995d46d837.js → frontend_dist/_next/static/chunks/pages/platform/global-hooks-b3f7309a23e592b2.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/account/{profile-fc659962d4015cb3.js → profile-f8b7374385e1f1bf.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/platform/preferences-8de68502a9afa299.js +1 -0
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/settings/platform/settings-a4f88c334414402b.js → frontend_dist/_next/static/chunks/pages/settings/platform/settings-50fb6a34f3913f1f.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/permissions/{[...slug]-4deb9579ef99a3c6.js → [...slug]-2e5c098c21ea32b7.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/{permissions-e0cda2f2bfce8d61.js → permissions-54e4b15b9585bfc4.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/preferences-040f83d75d0f6537.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/roles/{[...slug]-910257d16c604ebd.js → [...slug]-95088f43034e3c95.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/{roles-4f7a0756806cee34.js → roles-e9149e1fcf218f42.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/{sync-data-208d6f955204d704.js → sync-data-75b67ae4a00818ef.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/users/{[...slug]-c89dc67e5a1706a8.js → [...slug]-557dda05ca6c6124.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/users-fa61dc6c1370e6a5.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/{sign-in-054b33312d3193c3.js → sign-in-593c40985d63fcf7.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/templates/{[...slug]-b6ed6a5d818bfd20.js → [...slug]-252c4b6b818345d5.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/{templates-852357bc983af2ea.js → templates-ca528bc607753ab8.js} +1 -1
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/terminal-1f9c56d671bbc67d.js → frontend_dist/_next/static/chunks/pages/terminal-287362c1defcc96b.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/test-2f83af8c9f1378fe.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/triggers-d9de73fb799efed8.js +1 -0
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/version-control-ae3469b992a341d6.js → frontend_dist/_next/static/chunks/pages/version-control-573f0225d7a703ed.js} +1 -1
- mage_ai/server/frontend_dist/block-layout.html +3 -3
- mage_ai/server/frontend_dist/compute.html +6 -6
- mage_ai/server/frontend_dist/files.html +6 -6
- mage_ai/server/frontend_dist/global-data-products/[...slug].html +6 -6
- mage_ai/server/frontend_dist/global-data-products.html +6 -6
- mage_ai/server/frontend_dist/global-hooks/[...slug].html +6 -6
- mage_ai/server/frontend_dist/global-hooks.html +6 -6
- mage_ai/server/frontend_dist/index.html +3 -3
- mage_ai/server/frontend_dist/manage/files.html +6 -6
- mage_ai/server/frontend_dist/manage/overview.html +6 -6
- mage_ai/server/frontend_dist/manage/pipeline-runs.html +6 -6
- mage_ai/server/frontend_dist/manage/settings.html +6 -6
- mage_ai/server/frontend_dist/manage/users/[user].html +6 -6
- mage_ai/server/frontend_dist/manage/users/new.html +6 -6
- mage_ai/server/frontend_dist/manage/users.html +6 -6
- mage_ai/server/frontend_dist/manage.html +6 -6
- mage_ai/server/frontend_dist/oauth.html +5 -5
- mage_ai/server/frontend_dist/overview.html +6 -6
- mage_ai/server/frontend_dist/pipeline-runs.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills/[...slug].html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/dashboard.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/edit.html +3 -3
- mage_ai/server/frontend_dist/pipelines/[pipeline]/logs.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runs.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runtime.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/runs/[run].html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/runs.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/settings.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/syncs.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers/[...slug].html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline].html +3 -3
- mage_ai/server/frontend_dist/pipelines.html +6 -6
- mage_ai/server/frontend_dist/platform/global-hooks/[...slug].html +6 -6
- mage_ai/server/frontend_dist/platform/global-hooks.html +6 -6
- mage_ai/server/frontend_dist/settings/account/profile.html +6 -6
- mage_ai/server/frontend_dist/settings/platform/preferences.html +6 -6
- mage_ai/server/frontend_dist/settings/platform/settings.html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/permissions/[...slug].html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/permissions.html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/preferences.html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/roles/[...slug].html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/roles.html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/sync-data.html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/users/[...slug].html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/users.html +6 -6
- mage_ai/server/frontend_dist/settings.html +3 -3
- mage_ai/server/frontend_dist/sign-in.html +7 -7
- mage_ai/server/frontend_dist/templates/[...slug].html +6 -6
- mage_ai/server/frontend_dist/templates.html +6 -6
- mage_ai/server/frontend_dist/terminal.html +6 -6
- mage_ai/server/frontend_dist/test.html +3 -3
- mage_ai/server/frontend_dist/triggers.html +6 -6
- mage_ai/server/frontend_dist/v2/canvas.html +2 -2
- mage_ai/server/frontend_dist/v2.html +2 -2
- mage_ai/server/frontend_dist/version-control.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/404.html +3 -3
- mage_ai/server/frontend_dist_base_path_template/_next/static/2QL-FT4lFR0a9bDZ7lNd9/_buildManifest.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{1187-839336d276186105.js → 1187-4560c3895e1d7099.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{1598-0adca9dce3ba4c60.js → 1598-cbf3f5a6078fc3f5.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/2717-638a944d24d5abde.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/3548-36f746b1824004f2.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{3763-39a5174f6a3924db.js → 3763-aabe2703076636b0.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/3782-3e2acb5ed45b582b.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/449-5e2253c6aba42557.js +1 -0
- mage_ai/server/{frontend_dist/_next/static/chunks/5627-d5e559859dd0e1e0.js → frontend_dist_base_path_template/_next/static/chunks/5627-10e76bafa5a26f5f.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{5699-e49718dfc9eb2854.js → 5699-e99379e332bd0b41.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{7966-163da2621b8c987c.js → 7966-a5a7db345ce81263.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/_app-f205accb03b9ff43.js +2 -0
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/compute-ed67fa8e81662e8b.js → frontend_dist_base_path_template/_next/static/chunks/pages/compute-9e2dea78024e3bb4.js} +1 -1
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/files-e0ecd7ced09a63b2.js → frontend_dist_base_path_template/_next/static/chunks/pages/files-e08c7fe76f968f9c.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/global-data-products/{[...slug]-c7a729477ecda50e.js → [...slug]-30c3807057a4e65b.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{global-data-products-fd6ae6a358a60a0c.js → global-data-products-8dcb3b31af9e0e39.js} +1 -1
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/global-hooks/[...slug]-8e50243797a7fe59.js → frontend_dist_base_path_template/_next/static/chunks/pages/global-hooks/[...slug]-85a64b64d27214b6.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{global-hooks-d0c003446332dc0d.js → global-hooks-4ff959d51b8a9502.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/{files-a69ed8e9f814490c.js → files-d08a460641d0efaa.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/{overview-1aad7093c6d39257.js → overview-aae747f487e08d51.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/{pipeline-runs-528d30e0d13b0cc7.js → pipeline-runs-09a842d64a6ada62.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/{settings-fb9201d9cf63031d.js → settings-2e98e57d9376a458.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/users/{[user]-000f5a980a07da39.js → [user]-7be6e41ad66089bb.js} +1 -1
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/manage/users/new-e4e613f6e817a733.js → frontend_dist_base_path_template/_next/static/chunks/pages/manage/users/new-4c088833063bfa07.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/users-5db54821a3059c69.js +1 -0
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/manage-34d718b8a4066c23.js → frontend_dist_base_path_template/_next/static/chunks/pages/manage-868fcd8cbeb265f0.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{oauth-3bfd1b8d7f036726.js → oauth-6ceceb62191dfe8a.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/overview-f65416f6dbe30ad3.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{pipeline-runs-5f8c100e648efa8a.js → pipeline-runs-2d0136b51b57de93.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/backfills/{[...slug]-688c652f3296bb9c.js → [...slug]-1ad5238742e25b4c.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/backfills-bd11e87d026bfbf9.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/{dashboard-1236e36d39b1637d.js → dashboard-0f4f47f721b0723f.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/edit-5ae8efe9e0530212.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/logs-fe91dfb0091f6bc6.js +1 -0
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runs-0d68d4bf6290fefb.js → frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runs-cf794b2d22a80f31.js} +1 -1
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-9254358d58f07714.js → frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-a964caef91bed9e1.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/{monitors-821001e690caebe2.js → monitors-80bebb4401eefe25.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-2eae7cb017027682.js +1 -0
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs-2d4b2a0800a66b33.js → frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/runs-776b2e5b0b6ceba8.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/settings-03d9bca3bc5e6088.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/syncs-707ed8ca942ca802.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/triggers/{[...slug]-259143ed3cf59e31.js → [...slug]-8429f17d4146e1ec.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/triggers-193045d9836d8d80.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines-d25d07db166cbb04.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/platform/global-hooks/{[...slug]-5eeec927e4202b63.js → [...slug]-6834ae87bd668cb2.js} +1 -1
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/platform/global-hooks-fbe9ad995d46d837.js → frontend_dist_base_path_template/_next/static/chunks/pages/platform/global-hooks-b3f7309a23e592b2.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/account/{profile-fc659962d4015cb3.js → profile-f8b7374385e1f1bf.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/platform/preferences-8de68502a9afa299.js +1 -0
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/settings/platform/settings-a4f88c334414402b.js → frontend_dist_base_path_template/_next/static/chunks/pages/settings/platform/settings-50fb6a34f3913f1f.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/permissions/{[...slug]-4deb9579ef99a3c6.js → [...slug]-2e5c098c21ea32b7.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/{permissions-e0cda2f2bfce8d61.js → permissions-54e4b15b9585bfc4.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/preferences-040f83d75d0f6537.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/roles/{[...slug]-910257d16c604ebd.js → [...slug]-95088f43034e3c95.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/{roles-4f7a0756806cee34.js → roles-e9149e1fcf218f42.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/{sync-data-208d6f955204d704.js → sync-data-75b67ae4a00818ef.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/users/{[...slug]-c89dc67e5a1706a8.js → [...slug]-557dda05ca6c6124.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/users-fa61dc6c1370e6a5.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{sign-in-054b33312d3193c3.js → sign-in-593c40985d63fcf7.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/templates/{[...slug]-b6ed6a5d818bfd20.js → [...slug]-252c4b6b818345d5.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{templates-852357bc983af2ea.js → templates-ca528bc607753ab8.js} +1 -1
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/terminal-1f9c56d671bbc67d.js → frontend_dist_base_path_template/_next/static/chunks/pages/terminal-287362c1defcc96b.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/test-2f83af8c9f1378fe.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/triggers-d9de73fb799efed8.js +1 -0
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/version-control-ae3469b992a341d6.js → frontend_dist_base_path_template/_next/static/chunks/pages/version-control-573f0225d7a703ed.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{webpack-12ad70eb5c31aa92.js → webpack-5f4be622608d9267.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/block-layout.html +3 -3
- mage_ai/server/frontend_dist_base_path_template/compute.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/files.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/global-data-products/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/global-data-products.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/global-hooks/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/global-hooks.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/index.html +3 -3
- mage_ai/server/frontend_dist_base_path_template/manage/files.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/manage/overview.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/manage/pipeline-runs.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/manage/settings.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/manage/users/[user].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/manage/users/new.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/manage/users.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/manage.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/oauth.html +5 -5
- mage_ai/server/frontend_dist_base_path_template/overview.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipeline-runs.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/backfills/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/backfills.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/dashboard.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/edit.html +3 -3
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/logs.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors/block-runs.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors/block-runtime.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/runs/[run].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/runs.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/settings.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/syncs.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/triggers/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/triggers.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline].html +3 -3
- mage_ai/server/frontend_dist_base_path_template/pipelines.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/platform/global-hooks/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/platform/global-hooks.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/account/profile.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/platform/preferences.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/platform/settings.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/permissions/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/permissions.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/preferences.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/roles/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/roles.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/sync-data.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/users/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/users.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings.html +3 -3
- mage_ai/server/frontend_dist_base_path_template/sign-in.html +7 -7
- mage_ai/server/frontend_dist_base_path_template/templates/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/templates.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/terminal.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/test.html +3 -3
- mage_ai/server/frontend_dist_base_path_template/triggers.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/v2/canvas.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/v2.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/version-control.html +6 -6
- mage_ai/server/scheduler_manager.py +2 -0
- mage_ai/server/server.py +13 -0
- mage_ai/server/terminal_server.py +3 -0
- mage_ai/server/utils/output_display.py +5 -3
- mage_ai/services/aws/events/events.py +2 -2
- mage_ai/services/gcp/cloud_run/cloud_run.py +1 -1
- mage_ai/services/teams/config.py +13 -2
- mage_ai/services/teams/teams.py +13 -11
- mage_ai/settings/server.py +12 -1
- mage_ai/shared/constants.py +3 -1
- mage_ai/shared/croniter.py +1398 -0
- mage_ai/shared/enum.py +2 -5
- mage_ai/shared/environments.py +27 -3
- mage_ai/streaming/sinks/elasticsearch.py +15 -5
- mage_ai/streaming/sinks/kafka.py +21 -3
- mage_ai/streaming/sources/kafka.py +64 -7
- mage_ai/streaming/sources/kafka_oauth.py +182 -0
- mage_ai/tests/api/endpoints/test_blocks.py +1 -101
- mage_ai/tests/api/endpoints/test_configuration_options.py +1 -48
- mage_ai/tests/api/endpoints/test_configuration_options_project_platform.py +68 -0
- mage_ai/tests/api/endpoints/test_custom_designs.py +1 -106
- mage_ai/tests/api/endpoints/test_custom_designs_project_platform.py +132 -0
- mage_ai/tests/api/endpoints/test_dbt_blocks.py +111 -0
- mage_ai/tests/api/endpoints/test_file_contents.py +0 -48
- mage_ai/tests/api/endpoints/test_file_contents_with_project_platform.py +66 -0
- mage_ai/tests/api/endpoints/test_pipelines.py +0 -134
- mage_ai/tests/api/endpoints/test_pipelines_with_project_platform.py +143 -0
- mage_ai/tests/data_preparation/executors/test_block_executor.py +3 -3
- mage_ai/tests/data_preparation/logging/test_logger_manager.py +24 -5
- mage_ai/tests/data_preparation/models/block/dynamic/test_counter.py +1 -3
- mage_ai/tests/data_preparation/models/block/hook/test_hook_block.py +3 -3
- mage_ai/tests/data_preparation/models/test_block.py +7 -0
- mage_ai/tests/data_preparation/models/test_pipeline.py +55 -0
- mage_ai/tests/data_preparation/models/test_variable.py +2 -0
- mage_ai/tests/data_preparation/test_repo_manager.py +0 -63
- mage_ai/tests/data_preparation/test_repo_manager_project_platform.py +67 -0
- mage_ai/tests/data_preparation/test_variable_manager.py +0 -51
- mage_ai/tests/data_preparation/test_variable_manager_project_platform.py +41 -0
- mage_ai/tests/io/create_table/test_postgresql.py +28 -0
- mage_ai/tests/orchestration/db/models/test_schedules.py +1 -1
- mage_ai/tests/orchestration/notification/test_config.py +3 -3
- mage_ai/tests/orchestration/notification/test_sender.py +5 -1
- mage_ai/tests/orchestration/utils/__init__.py +0 -0
- mage_ai/tests/orchestration/utils/test_resources.py +235 -0
- mage_ai/tests/shared/test_croniter.py +2541 -0
- mage_ai/tests/streaming/sinks/test_kafka.py +130 -0
- mage_ai/tests/streaming/sources/test_kafka.py +125 -3
- mage_ai/tests/streaming/sources/test_kafka_oauth.py +208 -0
- mage_ai/tests/streaming/sources/test_kafka_raw_value.py +105 -0
- mage_ai/usage_statistics/logger.py +99 -15
- mage_ai-0.9.79.dist-info/METADATA +358 -0
- {mage_ai-0.9.74.dist-info → mage_ai-0.9.79.dist-info}/RECORD +377 -359
- {mage_ai-0.9.74.dist-info → mage_ai-0.9.79.dist-info}/WHEEL +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/1557-1ad0c64c2d08e569.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/2717-d65056b6b5e124eb.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/3548-b2c5edfb710886a6.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/3782-4b3091e550f809a2.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-5bdff745074fb350.js +0 -2
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users-a5e9d77ed5b50205.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/overview-69af3253ad0d0d89.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/backfills-fe112809feb25b05.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit-e9ca358209cdf93d.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/logs-a29f1615d2e7d330.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-6d382ae5bad9745c.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/settings-cd49372ae1702963.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/syncs-135be8974f7f5f2b.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/triggers-3af13e89adff4d6c.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-b578b075a8d857e3.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/platform/preferences-058d283ee178c038.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/preferences-7b02bb70462144cb.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/users-5212c01a9dc558da.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/test-86b12cc12d4a625f.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/triggers-2481c40b18d5b6d4.js +0 -1
- mage_ai/server/frontend_dist/_next/static/pLWT6Sqd09xYpufCVIqnz/_buildManifest.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/JQewSAObpbhO0wrdAM6Ng/_buildManifest.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/1557-1ad0c64c2d08e569.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/2717-d65056b6b5e124eb.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/3548-b2c5edfb710886a6.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/3782-4b3091e550f809a2.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/_app-90de19bc03f1484b.js +0 -2
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/users-a5e9d77ed5b50205.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/overview-69af3253ad0d0d89.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/backfills-fe112809feb25b05.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/edit-e9ca358209cdf93d.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/logs-a29f1615d2e7d330.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-6d382ae5bad9745c.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/settings-cd49372ae1702963.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/syncs-135be8974f7f5f2b.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/triggers-3af13e89adff4d6c.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines-b578b075a8d857e3.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/platform/preferences-058d283ee178c038.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/preferences-7b02bb70462144cb.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/users-5212c01a9dc558da.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/test-86b12cc12d4a625f.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/triggers-2481c40b18d5b6d4.js +0 -1
- mage_ai-0.9.74.dist-info/METADATA +0 -544
- /mage_ai/server/frontend_dist/_next/static/{pLWT6Sqd09xYpufCVIqnz → TUo4RceCdMufBTBTq8CAq}/_ssgManifest.js +0 -0
- /mage_ai/server/frontend_dist/_next/static/chunks/pages/{_app-5bdff745074fb350.js.LICENSE.txt → _app-b697b35dfc4e6e26.js.LICENSE.txt} +0 -0
- /mage_ai/server/frontend_dist_base_path_template/_next/static/{JQewSAObpbhO0wrdAM6Ng → 2QL-FT4lFR0a9bDZ7lNd9}/_ssgManifest.js +0 -0
- /mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{_app-90de19bc03f1484b.js.LICENSE.txt → _app-f205accb03b9ff43.js.LICENSE.txt} +0 -0
- {mage_ai-0.9.74.dist-info → mage_ai-0.9.79.dist-info}/entry_points.txt +0 -0
- {mage_ai-0.9.74.dist-info → mage_ai-0.9.79.dist-info/licenses}/LICENSE +0 -0
- {mage_ai-0.9.74.dist-info → mage_ai-0.9.79.dist-info}/top_level.txt +0 -0
|
@@ -7,6 +7,7 @@ from typing import Callable, Dict, List, Union
|
|
|
7
7
|
|
|
8
8
|
import aiohttp
|
|
9
9
|
import pytz
|
|
10
|
+
import requests
|
|
10
11
|
|
|
11
12
|
from mage_ai.api.operations.constants import OperationType
|
|
12
13
|
from mage_ai.cache.block_action_object.constants import (
|
|
@@ -43,6 +44,8 @@ from mage_ai.usage_statistics.constants import (
|
|
|
43
44
|
)
|
|
44
45
|
from mage_ai.usage_statistics.utils import build_event_data_for_chart
|
|
45
46
|
|
|
47
|
+
AMPLITUDE_API_KEY = 'KwnbpKJNe6gOjC2X5ilxafFvxbNppiIfGejB2hlY'
|
|
48
|
+
|
|
46
49
|
|
|
47
50
|
class UsageStatisticLogger():
|
|
48
51
|
def __init__(
|
|
@@ -229,6 +232,17 @@ class UsageStatisticLogger():
|
|
|
229
232
|
),
|
|
230
233
|
)
|
|
231
234
|
|
|
235
|
+
def pipeline_runs_impression_sync(self, count_func: Callable) -> bool:
|
|
236
|
+
if not self.help_improve_mage:
|
|
237
|
+
return False
|
|
238
|
+
return self.__send_message_sync(
|
|
239
|
+
dict(
|
|
240
|
+
object=EventObjectType.PIPELINE_RUN,
|
|
241
|
+
action=EventActionType.IMPRESSION,
|
|
242
|
+
pipeline_runs=count_func(),
|
|
243
|
+
),
|
|
244
|
+
)
|
|
245
|
+
|
|
232
246
|
@safe_db_query
|
|
233
247
|
async def pipeline_runs_impression(self, count_func: Callable) -> bool:
|
|
234
248
|
if not self.help_improve_mage:
|
|
@@ -301,19 +315,7 @@ class UsageStatisticLogger():
|
|
|
301
315
|
)
|
|
302
316
|
|
|
303
317
|
@safe_db_query
|
|
304
|
-
|
|
305
|
-
"""
|
|
306
|
-
Write "pipeline_run_ended" event to Amplitude for the given PipelineRun.
|
|
307
|
-
|
|
308
|
-
Args:
|
|
309
|
-
pipeline_run (PipelineRun): pipeline run to use to populate the event
|
|
310
|
-
|
|
311
|
-
Returns:
|
|
312
|
-
bool: True if event was successfully uploaded
|
|
313
|
-
"""
|
|
314
|
-
if not self.help_improve_mage:
|
|
315
|
-
return False
|
|
316
|
-
|
|
318
|
+
def pipeline_run_ended_data(self, pipeline_run: PipelineRun):
|
|
317
319
|
pipeline = pipeline_run.pipeline
|
|
318
320
|
|
|
319
321
|
if pipeline.type == PipelineType.INTEGRATION:
|
|
@@ -333,7 +335,7 @@ class UsageStatisticLogger():
|
|
|
333
335
|
|
|
334
336
|
encoded_pipeline_uuid = pipeline.uuid.encode('utf-8')
|
|
335
337
|
pipeline_schedule = pipeline_run.pipeline_schedule
|
|
336
|
-
|
|
338
|
+
return dict(
|
|
337
339
|
landing_time_enabled=1 if pipeline_schedule.landing_time_enabled() else 0,
|
|
338
340
|
num_pipeline_blocks=len(block_configs),
|
|
339
341
|
pipeline_run_uuid=pipeline_run.id,
|
|
@@ -346,11 +348,48 @@ class UsageStatisticLogger():
|
|
|
346
348
|
unique_languages=list(set([b.get('language') for b in block_configs])),
|
|
347
349
|
)
|
|
348
350
|
|
|
351
|
+
@safe_db_query
|
|
352
|
+
async def pipeline_run_ended(self, pipeline_run: PipelineRun) -> bool:
|
|
353
|
+
"""
|
|
354
|
+
Write "pipeline_run_ended" event to Amplitude for the given PipelineRun.
|
|
355
|
+
|
|
356
|
+
Args:
|
|
357
|
+
pipeline_run (PipelineRun): pipeline run to use to populate the event
|
|
358
|
+
|
|
359
|
+
Returns:
|
|
360
|
+
bool: True if event was successfully uploaded
|
|
361
|
+
"""
|
|
362
|
+
if not self.help_improve_mage:
|
|
363
|
+
return False
|
|
364
|
+
|
|
365
|
+
data = self.pipeline_run_ended_data(pipeline_run)
|
|
366
|
+
|
|
349
367
|
return await self.__send_message(
|
|
350
368
|
data,
|
|
351
369
|
event_name=EventNameType.PIPELINE_RUN_ENDED,
|
|
352
370
|
)
|
|
353
371
|
|
|
372
|
+
@safe_db_query
|
|
373
|
+
def pipeline_run_ended_sync(self, pipeline_run: PipelineRun) -> bool:
|
|
374
|
+
"""
|
|
375
|
+
Write "pipeline_run_ended" event to Amplitude for the given PipelineRun.
|
|
376
|
+
|
|
377
|
+
Args:
|
|
378
|
+
pipeline_run (PipelineRun): pipeline run to use to populate the event
|
|
379
|
+
|
|
380
|
+
Returns:
|
|
381
|
+
bool: True if event was successfully uploaded
|
|
382
|
+
"""
|
|
383
|
+
if not self.help_improve_mage:
|
|
384
|
+
return False
|
|
385
|
+
|
|
386
|
+
data = self.pipeline_run_ended_data(pipeline_run)
|
|
387
|
+
|
|
388
|
+
return self.__send_message_sync(
|
|
389
|
+
data,
|
|
390
|
+
event_name=EventNameType.PIPELINE_RUN_ENDED,
|
|
391
|
+
)
|
|
392
|
+
|
|
354
393
|
@safe_db_query
|
|
355
394
|
async def block_run_ended(self, block_run: BlockRun) -> bool:
|
|
356
395
|
if not self.help_improve_mage:
|
|
@@ -452,7 +491,7 @@ class UsageStatisticLogger():
|
|
|
452
491
|
async with session.post(
|
|
453
492
|
API_ENDPOINT,
|
|
454
493
|
json=dict(
|
|
455
|
-
api_key=
|
|
494
|
+
api_key=AMPLITUDE_API_KEY,
|
|
456
495
|
event_name=event_name,
|
|
457
496
|
usage_statistics=data_to_send,
|
|
458
497
|
),
|
|
@@ -467,6 +506,51 @@ class UsageStatisticLogger():
|
|
|
467
506
|
print(f'[Statistics] Message: {err}')
|
|
468
507
|
return False
|
|
469
508
|
|
|
509
|
+
def __send_message_sync(
|
|
510
|
+
self,
|
|
511
|
+
data: Dict,
|
|
512
|
+
event_name: EventNameType = EventNameType.USAGE_STATISTIC_CREATE,
|
|
513
|
+
override_validation: bool = False,
|
|
514
|
+
project_uuid: str = None,
|
|
515
|
+
) -> bool:
|
|
516
|
+
if not override_validation:
|
|
517
|
+
if is_test():
|
|
518
|
+
return False
|
|
519
|
+
|
|
520
|
+
if not self.help_improve_mage:
|
|
521
|
+
return False
|
|
522
|
+
|
|
523
|
+
if data is None:
|
|
524
|
+
data = {}
|
|
525
|
+
|
|
526
|
+
data_to_send = merge_dict(
|
|
527
|
+
self.__shared_metadata(),
|
|
528
|
+
data,
|
|
529
|
+
)
|
|
530
|
+
|
|
531
|
+
if project_uuid and not data_to_send.get('project_uuid'):
|
|
532
|
+
data_to_send['project_uuid'] = project_uuid
|
|
533
|
+
|
|
534
|
+
try:
|
|
535
|
+
response = requests.post(
|
|
536
|
+
API_ENDPOINT,
|
|
537
|
+
json={
|
|
538
|
+
'api_key': AMPLITUDE_API_KEY,
|
|
539
|
+
'event_name': event_name,
|
|
540
|
+
'usage_statistics': data_to_send,
|
|
541
|
+
},
|
|
542
|
+
timeout=3
|
|
543
|
+
)
|
|
544
|
+
response.raise_for_status()
|
|
545
|
+
response_json = response.json()
|
|
546
|
+
if response_json.get('success'):
|
|
547
|
+
if is_debug():
|
|
548
|
+
print(json.dumps(data_to_send, indent=2))
|
|
549
|
+
return True
|
|
550
|
+
except Exception as err:
|
|
551
|
+
print(f'[Statistics] Message: {err}')
|
|
552
|
+
return False
|
|
553
|
+
|
|
470
554
|
def __shared_metadata(self) -> Dict:
|
|
471
555
|
return dict(
|
|
472
556
|
environment=get_env(),
|
|
@@ -0,0 +1,358 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mage-ai
|
|
3
|
+
Version: 0.9.79
|
|
4
|
+
Summary: Mage is a tool for building and deploying data pipelines.
|
|
5
|
+
Home-page: https://github.com/mage-ai/mage-ai
|
|
6
|
+
Author: Mage
|
|
7
|
+
Author-email: eng@mage.ai
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: cachetools
|
|
15
|
+
Requires-Dist: click<8.2.0
|
|
16
|
+
Requires-Dist: Faker==4.14.0
|
|
17
|
+
Requires-Dist: GitPython==3.1.41
|
|
18
|
+
Requires-Dist: Jinja2==3.1.3
|
|
19
|
+
Requires-Dist: Pillow==10.3.0
|
|
20
|
+
Requires-Dist: PyGithub==1.59.0
|
|
21
|
+
Requires-Dist: PyJWT==2.6.0
|
|
22
|
+
Requires-Dist: aiofiles==22.1.0
|
|
23
|
+
Requires-Dist: aiohttp==3.10.0
|
|
24
|
+
Requires-Dist: alembic>=1.7.5
|
|
25
|
+
Requires-Dist: bcrypt==4.0.1
|
|
26
|
+
Requires-Dist: cron-converter==1.2.1
|
|
27
|
+
Requires-Dist: cryptography==42.0.4
|
|
28
|
+
Requires-Dist: dask>=2022.2.0
|
|
29
|
+
Requires-Dist: datadog==0.44.0
|
|
30
|
+
Requires-Dist: freezegun==1.2.2
|
|
31
|
+
Requires-Dist: great-expectations==0.18.12
|
|
32
|
+
Requires-Dist: httpx>=0.27.0
|
|
33
|
+
Requires-Dist: inflection==0.5.1
|
|
34
|
+
Requires-Dist: ipykernel==6.15.0
|
|
35
|
+
Requires-Dist: ipython==8.10.0
|
|
36
|
+
Requires-Dist: itsdangerous~=1.1.0
|
|
37
|
+
Requires-Dist: joblib>=1.1.0
|
|
38
|
+
Requires-Dist: jupyter-server==2.14.1
|
|
39
|
+
Requires-Dist: jupyter_client==7.4.4
|
|
40
|
+
Requires-Dist: ldap3==2.9.1
|
|
41
|
+
Requires-Dist: memory_profiler
|
|
42
|
+
Requires-Dist: newrelic==8.8.0
|
|
43
|
+
Requires-Dist: numpy>=1.22.0
|
|
44
|
+
Requires-Dist: pandas>=1.3.0
|
|
45
|
+
Requires-Dist: paramiko==3.5.1
|
|
46
|
+
Requires-Dist: polars==1.30.0
|
|
47
|
+
Requires-Dist: protobuf>=4.25.0
|
|
48
|
+
Requires-Dist: psutil==5.9.8
|
|
49
|
+
Requires-Dist: pyairtable>=2.3.3
|
|
50
|
+
Requires-Dist: pyarrow>=14.0.1
|
|
51
|
+
Requires-Dist: python-dateutil==2.8.2
|
|
52
|
+
Requires-Dist: pytz>=2022.2.1
|
|
53
|
+
Requires-Dist: pyyaml~=6.0
|
|
54
|
+
Requires-Dist: redis~=5.0.1
|
|
55
|
+
Requires-Dist: requests~=2.31.0
|
|
56
|
+
Requires-Dist: ruamel.yaml==0.17.17
|
|
57
|
+
Requires-Dist: scikit-learn<1.8
|
|
58
|
+
Requires-Dist: sentry-sdk<3.0.0,>=2.0.0
|
|
59
|
+
Requires-Dist: setuptools==70.0.0
|
|
60
|
+
Requires-Dist: simplejson
|
|
61
|
+
Requires-Dist: six>=1.15.0
|
|
62
|
+
Requires-Dist: sqlalchemy<2.0.0,>=1.4.20
|
|
63
|
+
Requires-Dist: sqlglot[rs]
|
|
64
|
+
Requires-Dist: terminado==0.17.1
|
|
65
|
+
Requires-Dist: thefuzz[speedup]==0.19.0
|
|
66
|
+
Requires-Dist: tornado==6.4.2
|
|
67
|
+
Requires-Dist: typer[all]==0.9.0
|
|
68
|
+
Requires-Dist: typing_extensions==4.11.0
|
|
69
|
+
Requires-Dist: watchdog==4.0.0
|
|
70
|
+
Requires-Dist: Werkzeug==3.0.3
|
|
71
|
+
Provides-Extra: ai
|
|
72
|
+
Requires-Dist: astor>=0.8.1; extra == "ai"
|
|
73
|
+
Requires-Dist: langchain==0.2.5; extra == "ai"
|
|
74
|
+
Requires-Dist: langchain_community==0.2.5; extra == "ai"
|
|
75
|
+
Requires-Dist: openai==1.82.0; extra == "ai"
|
|
76
|
+
Provides-Extra: airtable
|
|
77
|
+
Requires-Dist: pyairtable>=2.3.3; extra == "airtable"
|
|
78
|
+
Provides-Extra: azure
|
|
79
|
+
Requires-Dist: azure-eventhub==5.11.2; extra == "azure"
|
|
80
|
+
Requires-Dist: azure-identity==1.12.0; extra == "azure"
|
|
81
|
+
Requires-Dist: azure-keyvault-secrets==4.6.0; extra == "azure"
|
|
82
|
+
Requires-Dist: azure-keyvault-certificates==4.6.0; extra == "azure"
|
|
83
|
+
Requires-Dist: azure-mgmt-containerinstance==10.1.0; extra == "azure"
|
|
84
|
+
Requires-Dist: azure-storage-blob==12.14.1; extra == "azure"
|
|
85
|
+
Provides-Extra: bigquery
|
|
86
|
+
Requires-Dist: google-cloud-bigquery~=3.0; extra == "bigquery"
|
|
87
|
+
Requires-Dist: db-dtypes==1.0.5; extra == "bigquery"
|
|
88
|
+
Provides-Extra: chroma
|
|
89
|
+
Requires-Dist: chromadb>=0.4.17; extra == "chroma"
|
|
90
|
+
Provides-Extra: clickhouse
|
|
91
|
+
Requires-Dist: clickhouse-connect~=0.6.23; extra == "clickhouse"
|
|
92
|
+
Provides-Extra: dbt
|
|
93
|
+
Requires-Dist: dbt-adapters==1.8.0; extra == "dbt"
|
|
94
|
+
Requires-Dist: dbt-bigquery==1.8.3; extra == "dbt"
|
|
95
|
+
Requires-Dist: dbt-clickhouse==1.8.5; extra == "dbt"
|
|
96
|
+
Requires-Dist: dbt-core==1.8.7; extra == "dbt"
|
|
97
|
+
Requires-Dist: dbt-duckdb==1.8.4; extra == "dbt"
|
|
98
|
+
Requires-Dist: dbt-postgres==1.8.2; extra == "dbt"
|
|
99
|
+
Requires-Dist: dbt-redshift==1.8.1; extra == "dbt"
|
|
100
|
+
Requires-Dist: dbt-snowflake==1.8.4; extra == "dbt"
|
|
101
|
+
Requires-Dist: dbt-spark==1.8.0; extra == "dbt"
|
|
102
|
+
Requires-Dist: dbt-sqlserver==1.8.4; extra == "dbt"
|
|
103
|
+
Requires-Dist: dbt-synapse==1.8.2; extra == "dbt"
|
|
104
|
+
Requires-Dist: dbt-trino==1.8.4; extra == "dbt"
|
|
105
|
+
Requires-Dist: trino~=0.326; extra == "dbt"
|
|
106
|
+
Provides-Extra: google-cloud-storage
|
|
107
|
+
Requires-Dist: google-cloud-storage==2.5.0; extra == "google-cloud-storage"
|
|
108
|
+
Requires-Dist: gspread==5.7.2; extra == "google-cloud-storage"
|
|
109
|
+
Provides-Extra: hdf5
|
|
110
|
+
Requires-Dist: tables==3.7.0; python_version < "3.11" and extra == "hdf5"
|
|
111
|
+
Requires-Dist: tables==3.10.1; python_version >= "3.11" and extra == "hdf5"
|
|
112
|
+
Provides-Extra: mysql
|
|
113
|
+
Requires-Dist: mysql-connector-python~=8.4.0; python_version < "3.11" and extra == "mysql"
|
|
114
|
+
Requires-Dist: mysql-connector-python~=9.0.0; python_version >= "3.11" and extra == "mysql"
|
|
115
|
+
Provides-Extra: oracle
|
|
116
|
+
Requires-Dist: oracledb==1.3.1; python_version < "3.12" and extra == "oracle"
|
|
117
|
+
Requires-Dist: oracledb==2.4.1; python_version >= "3.12" and extra == "oracle"
|
|
118
|
+
Provides-Extra: postgres
|
|
119
|
+
Requires-Dist: psycopg2==2.9.3; extra == "postgres"
|
|
120
|
+
Requires-Dist: psycopg2-binary==2.9.3; extra == "postgres"
|
|
121
|
+
Requires-Dist: sshtunnel==0.4.0; extra == "postgres"
|
|
122
|
+
Provides-Extra: qdrant
|
|
123
|
+
Requires-Dist: qdrant-client==1.6.9; extra == "qdrant"
|
|
124
|
+
Requires-Dist: sentence-transformers==2.2.2; extra == "qdrant"
|
|
125
|
+
Provides-Extra: redshift
|
|
126
|
+
Requires-Dist: boto3==1.26.60; extra == "redshift"
|
|
127
|
+
Requires-Dist: redshift-connector==2.0.915; extra == "redshift"
|
|
128
|
+
Requires-Dist: lxml==4.9.4; extra == "redshift"
|
|
129
|
+
Provides-Extra: s3
|
|
130
|
+
Requires-Dist: boto3==1.26.60; extra == "s3"
|
|
131
|
+
Requires-Dist: botocore==1.29.60; extra == "s3"
|
|
132
|
+
Provides-Extra: snowflake
|
|
133
|
+
Requires-Dist: snowflake-connector-python==3.7.1; extra == "snowflake"
|
|
134
|
+
Provides-Extra: spark
|
|
135
|
+
Requires-Dist: boto3==1.26.60; extra == "spark"
|
|
136
|
+
Requires-Dist: botocore==1.29.60; extra == "spark"
|
|
137
|
+
Provides-Extra: streaming
|
|
138
|
+
Requires-Dist: confluent-avro~=1.8.0; extra == "streaming"
|
|
139
|
+
Requires-Dist: elasticsearch==8.15.1; extra == "streaming"
|
|
140
|
+
Requires-Dist: influxdb_client==1.36.1; extra == "streaming"
|
|
141
|
+
Requires-Dist: kafka-python==2.3.0; extra == "streaming"
|
|
142
|
+
Requires-Dist: nats-py==2.6.0; extra == "streaming"
|
|
143
|
+
Requires-Dist: nkeys~=0.2.0; extra == "streaming"
|
|
144
|
+
Requires-Dist: opensearch-py==2.0.0; extra == "streaming"
|
|
145
|
+
Requires-Dist: pika==1.3.1; extra == "streaming"
|
|
146
|
+
Requires-Dist: pymongo==4.3.3; extra == "streaming"
|
|
147
|
+
Requires-Dist: requests_aws4auth==1.1.2; extra == "streaming"
|
|
148
|
+
Requires-Dist: stomp.py==8.1.0; extra == "streaming"
|
|
149
|
+
Provides-Extra: all
|
|
150
|
+
Requires-Dist: PyGithub==1.59.0; extra == "all"
|
|
151
|
+
Requires-Dist: astor>=0.8.1; extra == "all"
|
|
152
|
+
Requires-Dist: aws-secretsmanager-caching==1.1.1.5; extra == "all"
|
|
153
|
+
Requires-Dist: azure-eventhub==5.11.2; extra == "all"
|
|
154
|
+
Requires-Dist: azure-identity==1.12.0; extra == "all"
|
|
155
|
+
Requires-Dist: azure-keyvault-certificates==4.6.0; extra == "all"
|
|
156
|
+
Requires-Dist: azure-keyvault-secrets==4.6.0; extra == "all"
|
|
157
|
+
Requires-Dist: azure-mgmt-containerinstance==10.1.0; extra == "all"
|
|
158
|
+
Requires-Dist: azure-storage-blob==12.14.1; extra == "all"
|
|
159
|
+
Requires-Dist: boto3==1.26.60; extra == "all"
|
|
160
|
+
Requires-Dist: botocore==1.29.60; extra == "all"
|
|
161
|
+
Requires-Dist: clickhouse-connect~=0.6.23; extra == "all"
|
|
162
|
+
Requires-Dist: confluent-avro~=1.8.0; extra == "all"
|
|
163
|
+
Requires-Dist: db-dtypes==1.0.5; extra == "all"
|
|
164
|
+
Requires-Dist: dbt-adapters==1.8.0; extra == "all"
|
|
165
|
+
Requires-Dist: dbt-bigquery==1.8.3; extra == "all"
|
|
166
|
+
Requires-Dist: dbt-clickhouse==1.8.5; extra == "all"
|
|
167
|
+
Requires-Dist: dbt-core==1.8.7; extra == "all"
|
|
168
|
+
Requires-Dist: dbt-duckdb==1.8.4; extra == "all"
|
|
169
|
+
Requires-Dist: dbt-postgres==1.8.2; extra == "all"
|
|
170
|
+
Requires-Dist: dbt-redshift==1.8.1; extra == "all"
|
|
171
|
+
Requires-Dist: dbt-snowflake==1.8.4; extra == "all"
|
|
172
|
+
Requires-Dist: dbt-spark==1.8.0; extra == "all"
|
|
173
|
+
Requires-Dist: dbt-sqlserver==1.8.4; extra == "all"
|
|
174
|
+
Requires-Dist: dbt-synapse==1.8.2; extra == "all"
|
|
175
|
+
Requires-Dist: dbt-trino==1.8.4; extra == "all"
|
|
176
|
+
Requires-Dist: duckdb==1.0.0; extra == "all"
|
|
177
|
+
Requires-Dist: elasticsearch==8.15.1; extra == "all"
|
|
178
|
+
Requires-Dist: google-api-core~=2.15.0; extra == "all"
|
|
179
|
+
Requires-Dist: google-api-python-client~=2.70.0; extra == "all"
|
|
180
|
+
Requires-Dist: google-cloud-bigquery~=3.14.1; extra == "all"
|
|
181
|
+
Requires-Dist: google-cloud-iam~=2.13.0; extra == "all"
|
|
182
|
+
Requires-Dist: google-cloud-pubsub~=2.19.0; extra == "all"
|
|
183
|
+
Requires-Dist: google-cloud-run~=0.10.1; extra == "all"
|
|
184
|
+
Requires-Dist: google-cloud-storage~=2.5.0; extra == "all"
|
|
185
|
+
Requires-Dist: great-expectations==0.18.12; extra == "all"
|
|
186
|
+
Requires-Dist: gspread==5.7.2; extra == "all"
|
|
187
|
+
Requires-Dist: influxdb_client==1.36.1; extra == "all"
|
|
188
|
+
Requires-Dist: kafka-python==2.0.2; extra == "all"
|
|
189
|
+
Requires-Dist: kubernetes==33.1.0; extra == "all"
|
|
190
|
+
Requires-Dist: langchain==0.2.5; extra == "all"
|
|
191
|
+
Requires-Dist: langchain_community==0.2.5; extra == "all"
|
|
192
|
+
Requires-Dist: ldap3==2.9.1; extra == "all"
|
|
193
|
+
Requires-Dist: nats-py==2.6.0; extra == "all"
|
|
194
|
+
Requires-Dist: nkeys~=0.2.0; extra == "all"
|
|
195
|
+
Requires-Dist: openai==1.82.0; extra == "all"
|
|
196
|
+
Requires-Dist: opensearch-py==2.0.0; extra == "all"
|
|
197
|
+
Requires-Dist: opentelemetry-api==1.22.0; extra == "all"
|
|
198
|
+
Requires-Dist: opentelemetry-exporter-prometheus==0.43b0; extra == "all"
|
|
199
|
+
Requires-Dist: opentelemetry-instrumentation-tornado==0.43b0; extra == "all"
|
|
200
|
+
Requires-Dist: opentelemetry-exporter-otlp==1.22.0; extra == "all"
|
|
201
|
+
Requires-Dist: opentelemetry-instrumentation-sqlalchemy==0.43b0; extra == "all"
|
|
202
|
+
Requires-Dist: oracledb==1.3.1; extra == "all"
|
|
203
|
+
Requires-Dist: pika==1.3.1; extra == "all"
|
|
204
|
+
Requires-Dist: pinotdb==5.6.0; extra == "all"
|
|
205
|
+
Requires-Dist: prometheus_client>=0.18.0; extra == "all"
|
|
206
|
+
Requires-Dist: protobuf>=4.25.0; extra == "all"
|
|
207
|
+
Requires-Dist: psycopg2-binary==2.9.3; extra == "all"
|
|
208
|
+
Requires-Dist: psycopg2==2.9.3; extra == "all"
|
|
209
|
+
Requires-Dist: pyairtable==2.3.3; extra == "all"
|
|
210
|
+
Requires-Dist: pydruid==0.6.5; extra == "all"
|
|
211
|
+
Requires-Dist: pymongo==4.3.3; extra == "all"
|
|
212
|
+
Requires-Dist: pyodbc==4.0.35; python_version < "3.12" and extra == "all"
|
|
213
|
+
Requires-Dist: pyodbc==5.0.1; python_version >= "3.12" and extra == "all"
|
|
214
|
+
Requires-Dist: redshift-connector==2.0.915; extra == "all"
|
|
215
|
+
Requires-Dist: lxml==4.9.4; extra == "all"
|
|
216
|
+
Requires-Dist: requests_aws4auth==1.1.2; extra == "all"
|
|
217
|
+
Requires-Dist: snowflake-connector-python==3.7.1; extra == "all"
|
|
218
|
+
Requires-Dist: sshtunnel==0.4.0; extra == "all"
|
|
219
|
+
Requires-Dist: stomp.py==8.1.0; extra == "all"
|
|
220
|
+
Requires-Dist: thefuzz[speedup]==0.19.0; extra == "all"
|
|
221
|
+
Requires-Dist: trino~=0.326; extra == "all"
|
|
222
|
+
Dynamic: author
|
|
223
|
+
Dynamic: author-email
|
|
224
|
+
Dynamic: classifier
|
|
225
|
+
Dynamic: description
|
|
226
|
+
Dynamic: description-content-type
|
|
227
|
+
Dynamic: home-page
|
|
228
|
+
Dynamic: license-file
|
|
229
|
+
Dynamic: provides-extra
|
|
230
|
+
Dynamic: requires-dist
|
|
231
|
+
Dynamic: requires-python
|
|
232
|
+
Dynamic: summary
|
|
233
|
+
|
|
234
|
+
# Mage OSS
|
|
235
|
+
|
|
236
|
+
### Build modern data pipelines locally — fast, visual, and production-ready.
|
|
237
|
+
|
|
238
|
+
<br />
|
|
239
|
+
|
|
240
|
+
Mage OSS is a self-hosted development environment designed to help teams create production-grade data pipelines with confidence.
|
|
241
|
+
|
|
242
|
+
Ideal for automating ETL tasks, architecting data flow, or orchestrating transformations — all in a fast, notebook-style interface powered by modular code.
|
|
243
|
+
|
|
244
|
+
When it’s time to scale, [Mage Pro](https://mage.ai) — our core platform — unlocks enterprise orchestration, collaboration, and AI-powered workflows.
|
|
245
|
+
|
|
246
|
+
<br />
|
|
247
|
+
|
|
248
|
+
<a href="https://mage.ai"><img alt="Mage AI GitHub repo stars" src="https://img.shields.io/github/stars/mage-ai/mage-ai?style=for-the-badge&logo=github&labelColor=000000&logoColor=FFFFFF&label=stars&color=0500ff" /></a>
|
|
249
|
+
<a href="https://hub.docker.com/r/mageai/mageai"><img alt="Mage AI Docker downloads" src="https://img.shields.io/docker/pulls/mageai/mageai?style=for-the-badge&logo=docker&labelColor=000000&logoColor=FFFFFF&label=pulls&color=6A35FF" /></a>
|
|
250
|
+
<a href="https://github.com/mage-ai/mage-ai/blob/master/LICENSE"><img alt="Mage AI license" src="https://img.shields.io/github/license/mage-ai/mage-ai?style=for-the-badge&logo=codeigniter&labelColor=000000&logoColor=FFFFFF&label=license&color=FFCC19" /></a>
|
|
251
|
+
<a href="https://www.mage.ai/chat"><img alt="Join the Mage AI community" src="https://img.shields.io/badge/Join%20the%20community-black.svg?style=for-the-badge&logo=lightning&labelColor=000000&logoColor=FFFFFF&label=&color=DD55FF&logoWidth=20" /></a>
|
|
252
|
+
|
|
253
|
+
<br />
|
|
254
|
+
|
|
255
|
+
## What you can do with Mage OSS
|
|
256
|
+
|
|
257
|
+
- Build pipelines locally with Python, SQL, or R in a modular notebook-style UI
|
|
258
|
+
|
|
259
|
+
- Run jobs manually or on a schedule (cron supported)
|
|
260
|
+
|
|
261
|
+
- Connect to databases, APIs, and cloud storage with prebuilt connectors
|
|
262
|
+
|
|
263
|
+
- Debug visually with logs, live previews, and step-by-step execution
|
|
264
|
+
|
|
265
|
+
- Set up quickly with Docker, pip, or conda — no cloud account required
|
|
266
|
+
|
|
267
|
+
- Your go-to workspace for local pipeline development — fully in your control.
|
|
268
|
+
|
|
269
|
+
<img width="100%" alt="mage" src="https://github.com/user-attachments/assets/75992872-20a6-4120-8bf0-9c22a3d66450" />
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
<br /><br />
|
|
273
|
+
|
|
274
|
+
## Start local. Scale when you're ready.
|
|
275
|
+
|
|
276
|
+
Use Mage OSS to build and run pipelines on your machine. When you're ready for advanced tooling, performance, and AI-assisted productivity, Mage Pro is just one click away.
|
|
277
|
+
|
|
278
|
+
[**Try Mage Pro free →**](https://mage.ai)
|
|
279
|
+
|
|
280
|
+
<br />
|
|
281
|
+
|
|
282
|
+
### Quickstart
|
|
283
|
+
|
|
284
|
+
Install using Docker (recommended):
|
|
285
|
+
|
|
286
|
+
```bash
|
|
287
|
+
docker pull mageai/mageai:latest
|
|
288
|
+
```
|
|
289
|
+
|
|
290
|
+
Or with pip:
|
|
291
|
+
|
|
292
|
+
```bash
|
|
293
|
+
pip install mage-ai
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
Or with conda:
|
|
297
|
+
|
|
298
|
+
```bash
|
|
299
|
+
conda install -c conda-forge mage-ai
|
|
300
|
+
```
|
|
301
|
+
|
|
302
|
+
Full setup guide and docs: [docs.mage.ai](https://docs.mage.ai/getting-started/setup#%E2%9B%B5%EF%B8%8F-mage-oss-overview)
|
|
303
|
+
|
|
304
|
+
<br />
|
|
305
|
+
|
|
306
|
+
## Core Features
|
|
307
|
+
|
|
308
|
+
| Feature | Description |
|
|
309
|
+
| :- | :- |
|
|
310
|
+
| Modular pipelines | Build pipelines block-by-block using Python, SQL, or R |
|
|
311
|
+
| Notebook UI | Interactive editor for writing and documenting logic |
|
|
312
|
+
| Data integrations | Prebuilt connectors to databases, APIs, and cloud storage |
|
|
313
|
+
| Scheduling | Trigger pipelines manually or on a schedule |
|
|
314
|
+
| Visual debugging | Step-by-step logs, data previews, and error handling |
|
|
315
|
+
| dbt support | Build and run dbt models directly inside Mage |
|
|
316
|
+
|
|
317
|
+
<br />
|
|
318
|
+
|
|
319
|
+
## Example Use Cases
|
|
320
|
+
|
|
321
|
+
- Move data from Google Sheets to Snowflake with a Python transform
|
|
322
|
+
- Schedule a daily SQL pipeline to clean and aggregate product data
|
|
323
|
+
- Develop dbt models in a visual notebook-style interface
|
|
324
|
+
- Run simple ETL/ELT jobs locally with full transparency
|
|
325
|
+
|
|
326
|
+
<br />
|
|
327
|
+
|
|
328
|
+
## Documentation
|
|
329
|
+
|
|
330
|
+
Looking for how-to guides, examples, or advanced configuration?
|
|
331
|
+
|
|
332
|
+
Explore our full documentation at [docs.mage.ai](https://docs.mage.ai).
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
<br />
|
|
336
|
+
|
|
337
|
+
## Contributing
|
|
338
|
+
|
|
339
|
+
We welcome contributions of all kinds — bug fixes, docs, new features, or community examples.
|
|
340
|
+
|
|
341
|
+
Start with our [contributing guide](https://docs.mage.ai/contributing/overview), check out open issues, or suggest improvements.
|
|
342
|
+
|
|
343
|
+
<br />
|
|
344
|
+
|
|
345
|
+
## Ready to scale? Mage Pro has you covered.
|
|
346
|
+
|
|
347
|
+
Mage Pro is a powered-up platform built for teams.
|
|
348
|
+
It adds everything you need for production pipelines, at scale.
|
|
349
|
+
|
|
350
|
+
- Magical AI-assisted development and debugging
|
|
351
|
+
- Multi-environment orchestration
|
|
352
|
+
- Role-based access control
|
|
353
|
+
- Real-time monitoring & alerts
|
|
354
|
+
- Powerful CI/CD & version control
|
|
355
|
+
- Powerful enterprise features
|
|
356
|
+
- Available fully managed, hybrid, or on-premises
|
|
357
|
+
|
|
358
|
+
[**Try Mage Pro free →**](https://mage.ai)
|