mage-ai 0.8.98__py3-none-any.whl → 0.8.99__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.
- mage_ai/api/policies/OauthPolicy.py +15 -0
- mage_ai/api/policies/SessionPolicy.py +2 -0
- mage_ai/api/presenters/PipelinePresenter.py +1 -0
- mage_ai/api/presenters/SyncPresenter.py +1 -0
- mage_ai/api/resources/OauthResource.py +28 -2
- mage_ai/api/resources/PipelineResource.py +5 -1
- mage_ai/api/resources/SessionResource.py +18 -0
- mage_ai/api/resources/WorkspaceResource.py +3 -2
- mage_ai/authentication/oauth/active_directory.py +17 -0
- mage_ai/authentication/oauth/constants.py +9 -0
- mage_ai/cli/main.py +56 -49
- mage_ai/cluster_manager/kubernetes/workload_manager.py +46 -9
- mage_ai/data_preparation/git/__init__.py +1 -1
- mage_ai/data_preparation/models/block/dbt/utils/__init__.py +32 -0
- mage_ai/data_preparation/models/block/sql/__init__.py +3 -2
- mage_ai/data_preparation/models/pipeline.py +4 -1
- mage_ai/data_preparation/preferences.py +4 -2
- mage_ai/data_preparation/repo_manager.py +5 -1
- mage_ai/data_preparation/sync/__init__.py +1 -0
- mage_ai/data_preparation/sync/git_sync.py +2 -5
- mage_ai/data_preparation/templates/utils.py +2 -0
- mage_ai/orchestration/pipeline_scheduler.py +19 -8
- mage_ai/orchestration/queue/process_queue.py +15 -12
- mage_ai/server/api/clusters.py +1 -1
- mage_ai/server/constants.py +1 -1
- mage_ai/server/frontend_dist/404.html +2 -2
- mage_ai/server/frontend_dist/404.html.html +2 -2
- mage_ai/server/frontend_dist/_next/static/{-1TwyIVv18EeGuJPahFzG → WRxCTOtmZhTqQws_7OJZD}/_buildManifest.js +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/{9350-1ff50f1d7b9ee754.js → 9350-5191c83a8d0cf454.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/{_app-1a7dd14f59bb82dc.js → _app-171846e16d26855a.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/{manage-3f5032353f15dd3c.js → manage-af11f9cf94024ac0.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/{sync-data-513e80a872b783a7.js → sync-data-90f8830890036eb2.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/sign-in-a1871b8a537d823c.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/version-control-48859b4e9c846212.js +1 -0
- mage_ai/server/frontend_dist/files.html +2 -2
- mage_ai/server/frontend_dist/index.html +2 -2
- mage_ai/server/frontend_dist/manage/settings.html +2 -2
- mage_ai/server/frontend_dist/manage/users/[user].html +2 -2
- mage_ai/server/frontend_dist/manage/users/new.html +2 -2
- mage_ai/server/frontend_dist/manage/users.html +2 -2
- mage_ai/server/frontend_dist/manage.html +2 -2
- mage_ai/server/frontend_dist/pipeline-runs.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills/[...slug].html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/edit.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/logs.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runs.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runtime.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/runs/[run].html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/runs.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/settings.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/syncs.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers/[...slug].html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline].html +2 -2
- mage_ai/server/frontend_dist/pipelines.html +2 -2
- mage_ai/server/frontend_dist/settings/account/profile.html +2 -2
- mage_ai/server/frontend_dist/settings/workspace/preferences.html +2 -2
- mage_ai/server/frontend_dist/settings/workspace/sync-data.html +2 -2
- mage_ai/server/frontend_dist/settings/workspace/users.html +2 -2
- mage_ai/server/frontend_dist/settings.html +2 -2
- mage_ai/server/frontend_dist/sign-in.html +2 -2
- mage_ai/server/frontend_dist/terminal.html +2 -2
- mage_ai/server/frontend_dist/test.html +2 -2
- mage_ai/server/frontend_dist/triggers.html +2 -2
- mage_ai/server/frontend_dist/version-control.html +2 -2
- mage_ai/server/scheduler_manager.py +7 -2
- mage_ai/server/server.py +21 -0
- mage_ai/services/newrelic/__init__.py +21 -0
- mage_ai/settings/__init__.py +10 -1
- mage_ai/shared/hash.py +2 -0
- mage_ai/tests/data_preparation/models/test_pipeline.py +5 -0
- {mage_ai-0.8.98.dist-info → mage_ai-0.8.99.dist-info}/METADATA +4 -1
- {mage_ai-0.8.98.dist-info → mage_ai-0.8.99.dist-info}/RECORD +81 -79
- mage_ai/server/frontend_dist/_next/static/chunks/pages/sign-in-2925c2c1b0c5559a.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/version-control-63fbd3334e4509d7.js +0 -1
- /mage_ai/server/frontend_dist/_next/static/{-1TwyIVv18EeGuJPahFzG → WRxCTOtmZhTqQws_7OJZD}/_middlewareManifest.js +0 -0
- /mage_ai/server/frontend_dist/_next/static/{-1TwyIVv18EeGuJPahFzG → WRxCTOtmZhTqQws_7OJZD}/_ssgManifest.js +0 -0
- {mage_ai-0.8.98.dist-info → mage_ai-0.8.99.dist-info}/LICENSE +0 -0
- {mage_ai-0.8.98.dist-info → mage_ai-0.8.99.dist-info}/WHEEL +0 -0
- {mage_ai-0.8.98.dist-info → mage_ai-0.8.99.dist-info}/entry_points.txt +0 -0
- {mage_ai-0.8.98.dist-info → mage_ai-0.8.99.dist-info}/top_level.txt +0 -0
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import multiprocessing
|
|
2
2
|
import time
|
|
3
3
|
import traceback
|
|
4
|
+
from contextlib import nullcontext
|
|
4
5
|
from enum import Enum
|
|
5
6
|
|
|
7
|
+
import newrelic.agent
|
|
6
8
|
import sentry_sdk
|
|
7
9
|
|
|
8
10
|
from mage_ai.orchestration.db.database_manager import database_manager
|
|
9
11
|
from mage_ai.orchestration.db.process import create_process
|
|
10
12
|
from mage_ai.server.logger import Logger
|
|
13
|
+
from mage_ai.services.newrelic import initialize_new_relic
|
|
11
14
|
from mage_ai.settings import SENTRY_DSN, SENTRY_TRACES_SAMPLE_RATE
|
|
12
15
|
|
|
13
16
|
SCHEDULER_AUTO_RESTART_INTERVAL = 20_000 # in milliseconds
|
|
@@ -24,9 +27,11 @@ def run_scheduler():
|
|
|
24
27
|
sentry_dsn,
|
|
25
28
|
traces_sample_rate=SENTRY_TRACES_SAMPLE_RATE,
|
|
26
29
|
)
|
|
27
|
-
|
|
30
|
+
(enable_new_relic, application) = initialize_new_relic()
|
|
28
31
|
try:
|
|
29
|
-
|
|
32
|
+
with newrelic.agent.BackgroundTask(application, name="db-migration", group='Task') \
|
|
33
|
+
if enable_new_relic else nullcontext():
|
|
34
|
+
database_manager.run_migrations()
|
|
30
35
|
except Exception:
|
|
31
36
|
traceback.print_exc()
|
|
32
37
|
try:
|
mage_ai/server/server.py
CHANGED
|
@@ -14,6 +14,7 @@ from tornado.log import enable_pretty_logging
|
|
|
14
14
|
from tornado.options import options
|
|
15
15
|
|
|
16
16
|
from mage_ai.authentication.passwords import create_bcrypt_hash, generate_salt
|
|
17
|
+
from mage_ai.data_preparation.preferences import get_preferences
|
|
17
18
|
from mage_ai.data_preparation.repo_manager import (
|
|
18
19
|
ProjectType,
|
|
19
20
|
get_project_type,
|
|
@@ -22,6 +23,8 @@ from mage_ai.data_preparation.repo_manager import (
|
|
|
22
23
|
update_project_uuid,
|
|
23
24
|
)
|
|
24
25
|
from mage_ai.data_preparation.shared.constants import MANAGE_ENV_VAR
|
|
26
|
+
from mage_ai.data_preparation.sync import GitConfig
|
|
27
|
+
from mage_ai.data_preparation.sync.git_sync import GitSync
|
|
25
28
|
from mage_ai.orchestration.db import db_connection
|
|
26
29
|
from mage_ai.orchestration.db.database_manager import database_manager
|
|
27
30
|
from mage_ai.orchestration.db.models.oauth import Oauth2Application, Role, User
|
|
@@ -223,6 +226,24 @@ async def main(
|
|
|
223
226
|
|
|
224
227
|
db_connection.start_session(force=True)
|
|
225
228
|
|
|
229
|
+
# Git sync if option is enabled
|
|
230
|
+
preferences = get_preferences()
|
|
231
|
+
if preferences.sync_config:
|
|
232
|
+
sync_config = GitConfig.load(config=preferences.sync_config)
|
|
233
|
+
if sync_config.sync_on_start:
|
|
234
|
+
try:
|
|
235
|
+
sync = GitSync(sync_config)
|
|
236
|
+
sync.sync_data()
|
|
237
|
+
print(
|
|
238
|
+
f'Successfully synced data from git repo: {sync_config.remote_repo_link}'
|
|
239
|
+
f', branch: {sync_config.branch}'
|
|
240
|
+
)
|
|
241
|
+
except Exception as err:
|
|
242
|
+
print(
|
|
243
|
+
f'Failed to sync data from git repo: {sync_config.remote_repo_link}'
|
|
244
|
+
f', branch: {sync_config.branch} with error: {str(err)}'
|
|
245
|
+
)
|
|
246
|
+
|
|
226
247
|
if REQUIRE_USER_AUTHENTICATION:
|
|
227
248
|
print('User authentication is enabled.')
|
|
228
249
|
# We need to sleep for a few seconds after creating all the tables or else there
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import newrelic.agent
|
|
2
|
+
|
|
3
|
+
from mage_ai.settings import ENABLE_NEW_RELIC, NEW_RELIC_CONFIG_PATH
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def initialize_new_relic():
|
|
7
|
+
enable_new_relic = ENABLE_NEW_RELIC
|
|
8
|
+
application = None
|
|
9
|
+
if ENABLE_NEW_RELIC:
|
|
10
|
+
try:
|
|
11
|
+
newrelic.agent.initialize(NEW_RELIC_CONFIG_PATH)
|
|
12
|
+
application = newrelic.agent.register_application(timeout=10)
|
|
13
|
+
except newrelic.api.exceptions.ConfigurationError as error:
|
|
14
|
+
print(f"Configuration error with new relic initialization. Disable "
|
|
15
|
+
f"new relic reporting. Message: {error}")
|
|
16
|
+
enable_new_relic = False
|
|
17
|
+
except Exception as error:
|
|
18
|
+
print("Unexpected error with new relic initialization. Disable "
|
|
19
|
+
f"new relic reporting. Message: {error}")
|
|
20
|
+
enable_new_relic = False
|
|
21
|
+
return (enable_new_relic, application)
|
mage_ai/settings/__init__.py
CHANGED
|
@@ -23,6 +23,7 @@ def is_disable_pipeline_edit_access():
|
|
|
23
23
|
return DISABLE_NOTEBOOK_EDIT_ACCESS >= 1
|
|
24
24
|
|
|
25
25
|
|
|
26
|
+
# ----------------- Authentication settings ----------------
|
|
26
27
|
REQUIRE_USER_AUTHENTICATION = \
|
|
27
28
|
os.getenv('REQUIRE_USER_AUTHENTICATION', 'False').lower() in ('true', '1', 't')
|
|
28
29
|
AUTHENTICATION_MODE = os.getenv('AUTHENTICATION_MODE', 'LOCAL')
|
|
@@ -38,6 +39,10 @@ LDAP_ADMIN_USERNAME = os.getenv('LDAP_ADMIN_USERNAME', 'admin')
|
|
|
38
39
|
# values: Viewer, Editor, Admin
|
|
39
40
|
LDAP_DEFAULT_ACCESS = os.getenv('LDAP_DEFAULT_ACCESS', None)
|
|
40
41
|
|
|
42
|
+
ACTIVE_DIRECTORY_DIRECTORY_ID = os.getenv('ACTIVE_DIRECTORY_DIRECTORY_ID', None)
|
|
43
|
+
|
|
44
|
+
# ----------------------------------------------------------
|
|
45
|
+
|
|
41
46
|
SERVER_VERBOSITY = os.getenv('SERVER_VERBOSITY', 'info') or 'info'
|
|
42
47
|
|
|
43
48
|
SHELL_COMMAND = os.getenv('SHELL_COMMAND', None)
|
|
@@ -47,10 +52,13 @@ USE_UNIQUE_TERMINAL = os.getenv('USE_UNIQUE_TERMINAL', None)
|
|
|
47
52
|
SENTRY_DSN = os.getenv('SENTRY_DSN', None)
|
|
48
53
|
SENTRY_TRACES_SAMPLE_RATE = os.getenv('SENTRY_TRACES_SAMPLE_RATE', 1.0)
|
|
49
54
|
|
|
55
|
+
# New relic enable environment variable
|
|
56
|
+
ENABLE_NEW_RELIC = os.getenv('ENABLE_NEW_RELIC', False)
|
|
57
|
+
NEW_RELIC_CONFIG_PATH = os.getenv('NEW_RELIC_CONFIG_PATH', '')
|
|
58
|
+
|
|
50
59
|
DEFAULT_LOCALHOST_URL = 'http://localhost:6789'
|
|
51
60
|
MAGE_PUBLIC_HOST = os.getenv('MAGE_PUBLIC_HOST') or DEFAULT_LOCALHOST_URL
|
|
52
61
|
|
|
53
|
-
|
|
54
62
|
# List of environment variables used to configure Mage. The value of these settings
|
|
55
63
|
# will be copied between workspaces.
|
|
56
64
|
MAGE_SETTINGS_ENVIRONMENT_VARIABLES = [
|
|
@@ -71,4 +79,5 @@ MAGE_SETTINGS_ENVIRONMENT_VARIABLES = [
|
|
|
71
79
|
'SENTRY_DSN',
|
|
72
80
|
'SENTRY_TRACES_SAMPLE_RATE',
|
|
73
81
|
'MAGE_PUBLIC_HOST',
|
|
82
|
+
'ACTIVE_DIRECTORY_DIRECTORY_ID',
|
|
74
83
|
]
|
mage_ai/shared/hash.py
CHANGED
|
@@ -36,6 +36,7 @@ class PipelineTest(DBTestCase):
|
|
|
36
36
|
executor_count=1,
|
|
37
37
|
executor_type=None,
|
|
38
38
|
name='test pipeline 2',
|
|
39
|
+
notification_config=dict(),
|
|
39
40
|
uuid='test_pipeline_2',
|
|
40
41
|
spark_config=dict(),
|
|
41
42
|
type='python',
|
|
@@ -173,6 +174,7 @@ class PipelineTest(DBTestCase):
|
|
|
173
174
|
executor_count=1,
|
|
174
175
|
executor_type=None,
|
|
175
176
|
name='test pipeline 3',
|
|
177
|
+
notification_config=dict(),
|
|
176
178
|
uuid='test_pipeline_3',
|
|
177
179
|
spark_config=dict(),
|
|
178
180
|
type='python',
|
|
@@ -253,6 +255,7 @@ class PipelineTest(DBTestCase):
|
|
|
253
255
|
executor_count=1,
|
|
254
256
|
executor_type=None,
|
|
255
257
|
name='test pipeline 4',
|
|
258
|
+
notification_config=dict(),
|
|
256
259
|
uuid='test_pipeline_4',
|
|
257
260
|
spark_config=dict(),
|
|
258
261
|
type='python',
|
|
@@ -355,6 +358,7 @@ class PipelineTest(DBTestCase):
|
|
|
355
358
|
executor_count=1,
|
|
356
359
|
executor_type=None,
|
|
357
360
|
name='test pipeline 5',
|
|
361
|
+
notification_config=dict(),
|
|
358
362
|
uuid='test_pipeline_5',
|
|
359
363
|
spark_config=dict(),
|
|
360
364
|
type='python',
|
|
@@ -586,6 +590,7 @@ class PipelineTest(DBTestCase):
|
|
|
586
590
|
"executor_type": None,
|
|
587
591
|
"extensions": {},
|
|
588
592
|
"name": "test_pipeline_9",
|
|
593
|
+
"notification_config": {},
|
|
589
594
|
"spark_config": {},
|
|
590
595
|
"type": "integration",
|
|
591
596
|
"updated_at": None,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mage-ai
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.99
|
|
4
4
|
Summary: Mage is a tool for building and deploying data pipelines.
|
|
5
5
|
Home-page: https://github.com/mage-ai/mage-ai
|
|
6
6
|
Author: Mage
|
|
@@ -35,6 +35,7 @@ Requires-Dist: jupyter-server-proxy (==3.2.1)
|
|
|
35
35
|
Requires-Dist: jupyter-server (==1.23.5)
|
|
36
36
|
Requires-Dist: jupyter-client (==7.3.4)
|
|
37
37
|
Requires-Dist: ldap3 (==2.9.1)
|
|
38
|
+
Requires-Dist: newrelic (==8.8.0)
|
|
38
39
|
Requires-Dist: numpy (>=1.21.0)
|
|
39
40
|
Requires-Dist: pandas (>=1.3.0)
|
|
40
41
|
Requires-Dist: polars
|
|
@@ -75,6 +76,7 @@ Requires-Dist: dbt-snowflake (==1.4.0) ; extra == 'all'
|
|
|
75
76
|
Requires-Dist: dbt-spark (==1.4.0) ; extra == 'all'
|
|
76
77
|
Requires-Dist: dbt-sqlserver (==1.3.1) ; extra == 'all'
|
|
77
78
|
Requires-Dist: dbt-trino (==1.4.0) ; extra == 'all'
|
|
79
|
+
Requires-Dist: dbt-clickhouse (==1.4.0) ; extra == 'all'
|
|
78
80
|
Requires-Dist: google-api-core (==2.11.0) ; extra == 'all'
|
|
79
81
|
Requires-Dist: google-api-python-client (==2.70.0) ; extra == 'all'
|
|
80
82
|
Requires-Dist: google-cloud-bigquery (~=3.0) ; extra == 'all'
|
|
@@ -117,6 +119,7 @@ Requires-Dist: dbt-snowflake (==1.4.0) ; extra == 'dbt'
|
|
|
117
119
|
Requires-Dist: dbt-spark (==1.4.0) ; extra == 'dbt'
|
|
118
120
|
Requires-Dist: dbt-sqlserver (==1.3.1) ; extra == 'dbt'
|
|
119
121
|
Requires-Dist: dbt-trino (==1.4.0) ; extra == 'dbt'
|
|
122
|
+
Requires-Dist: dbt-clickhouse (==1.4.0) ; extra == 'dbt'
|
|
120
123
|
Provides-Extra: google-cloud-storage
|
|
121
124
|
Requires-Dist: google-cloud-storage (==2.5.0) ; extra == 'google-cloud-storage'
|
|
122
125
|
Provides-Extra: hdf5
|
|
@@ -37,7 +37,7 @@ mage_ai/api/policies/IntegrationSourceStreamPolicy.py,sha256=W0u_MeUVBL8zbWbfGcS
|
|
|
37
37
|
mage_ai/api/policies/KernelPolicy.py,sha256=TaGw0mjzEO_jODn1IT84zaYEjLfaL0JiQFViNFfVzMI,1377
|
|
38
38
|
mage_ai/api/policies/LogPolicy.py,sha256=jWLXQSce3S5v0YUgcMWR9vYEFpPXWzNOx24p6WU8xcs,1743
|
|
39
39
|
mage_ai/api/policies/MonitorStatPolicy.py,sha256=DqrNdwTXxGI45jhLcNP76me8WqTvuvbyZ0oaFHzxaQ8,874
|
|
40
|
-
mage_ai/api/policies/OauthPolicy.py,sha256=
|
|
40
|
+
mage_ai/api/policies/OauthPolicy.py,sha256=vuqfF59UsN51Pwa1dI3WvVRQJdyrh8s8r3Tpys2u0ys,1451
|
|
41
41
|
mage_ai/api/policies/OutputPolicy.py,sha256=DaLIJUU-YjCp3kSXZrni_osCUrKuouXXywl1E4bvbKM,1117
|
|
42
42
|
mage_ai/api/policies/PipelinePolicy.py,sha256=14eCdSU-773DCNpPKiQUAKspjpPK2nowsQFT2T36sa8,3857
|
|
43
43
|
mage_ai/api/policies/PipelineRunPolicy.py,sha256=YtfxK4GSoUAd9ZxYugnB2vglRIWSI7HjJe1bjRttPPM,2866
|
|
@@ -47,7 +47,7 @@ mage_ai/api/policies/PullRequestPolicy.py,sha256=L7hNYE4WOHhCRmW0Nx1VfKuA407ZAo6
|
|
|
47
47
|
mage_ai/api/policies/RolePolicy.py,sha256=tJii-lCybQ9F-_9ityJn9RvERRt2MBqWKveX5Fp_eHs,751
|
|
48
48
|
mage_ai/api/policies/SchedulerPolicy.py,sha256=AHN1KbM_4wEv1yrV-ume0OVM65xCo_8Mt0bKc5FnaNw,861
|
|
49
49
|
mage_ai/api/policies/SecretPolicy.py,sha256=qj_UqCALAEnKO219jroSpZz8LDxyNBMWP2xMY7jiVjY,1299
|
|
50
|
-
mage_ai/api/policies/SessionPolicy.py,sha256=
|
|
50
|
+
mage_ai/api/policies/SessionPolicy.py,sha256=qZ7qSclTe75RCKr1Fs5xSBTZjtFs9FIRFnKWR1AKg_M,1126
|
|
51
51
|
mage_ai/api/policies/StatusPolicy.py,sha256=zhdC2yagLVXpFMr7o-nmbf9ZN4HRa5tace0X7QKxY64,553
|
|
52
52
|
mage_ai/api/policies/SyncPolicy.py,sha256=OTIxuvlosNW0wblDzb1wiIV_v2E3QIYILgMa4413MS0,1253
|
|
53
53
|
mage_ai/api/policies/UserPolicy.py,sha256=FCWgZdgJpfcHmVsAtgJ4_v5d9nB3TdoaF_Gzn5p21TM,2326
|
|
@@ -80,7 +80,7 @@ mage_ai/api/presenters/LogPresenter.py,sha256=EgM95mrAGRgRaGu6fTPy9hDBq96N9yUnbd
|
|
|
80
80
|
mage_ai/api/presenters/MonitorStatPresenter.py,sha256=8nQ4e9c7L4lO4mOKAhvvHDA0aEK5FQg7eSu7QNDYMlg,180
|
|
81
81
|
mage_ai/api/presenters/OauthPresenter.py,sha256=sfXy5o09n-tjtVGioFTexHfozcQ5sgPbtwMaNzmSgNI,214
|
|
82
82
|
mage_ai/api/presenters/OutputPresenter.py,sha256=ybbBQLCA0aWL8gy5RKKnckm6U1nQA0xZLtkwsu7qww0,238
|
|
83
|
-
mage_ai/api/presenters/PipelinePresenter.py,sha256=
|
|
83
|
+
mage_ai/api/presenters/PipelinePresenter.py,sha256=Zso9mFHWh0jlFeXdtFPj7QSGWDWJk0yH-f5EQHwUybI,2451
|
|
84
84
|
mage_ai/api/presenters/PipelineRunPresenter.py,sha256=z3TjHPwiB2l1-rPppd_exctJq9qaEz4q72ccstJ35SI,1909
|
|
85
85
|
mage_ai/api/presenters/PipelineSchedulePresenter.py,sha256=uOFAhPQA9AyxAgD3u7TA7ZKKRSzsY_rNi36fyvgG29U,1369
|
|
86
86
|
mage_ai/api/presenters/ProjectPresenter.py,sha256=Sa-4NoqQPpXi97nKnl7h2jejhpThwQDY_e9XKYpHp_0,251
|
|
@@ -90,7 +90,7 @@ mage_ai/api/presenters/SchedulerPresenter.py,sha256=AoHbiBOe1foHMposbWZO6MySTy1N
|
|
|
90
90
|
mage_ai/api/presenters/SecretPresenter.py,sha256=qGxQXNKTfN7SVqufsanQRLXGCKyoS8cy14chUF9cpgs,166
|
|
91
91
|
mage_ai/api/presenters/SessionPresenter.py,sha256=7HwAe5NaF10FuYqSDJWJLTZVojLR492GLtpsD8ofO1s,286
|
|
92
92
|
mage_ai/api/presenters/StatusPresenter.py,sha256=YvWUu0j7M6ZySZaF1b9wGA8Y8wcv9kiY4qFavetHHps,402
|
|
93
|
-
mage_ai/api/presenters/SyncPresenter.py,sha256=
|
|
93
|
+
mage_ai/api/presenters/SyncPresenter.py,sha256=mDrFtXlbajFiWvXhuY1E3dHAVsWytG0KiBh6AUhHFLw,438
|
|
94
94
|
mage_ai/api/presenters/UserPresenter.py,sha256=E2eC4lgARUY4rlJHG5lnAmsRL6BALBKTB5EzpX7sVxs,931
|
|
95
95
|
mage_ai/api/presenters/VariablePresenter.py,sha256=In3Nz6DkypZHQih8PKwTCMntStJOIwMddr1Zj0autEM,229
|
|
96
96
|
mage_ai/api/presenters/WidgetPresenter.py,sha256=O6Jbf9U0Nhfdby5drty0up_hKPpqrW_zl2_BbWb6qvY,632
|
|
@@ -123,9 +123,9 @@ mage_ai/api/resources/IntegrationSourceStreamResource.py,sha256=Pt_BeyHUNXfQAr69
|
|
|
123
123
|
mage_ai/api/resources/KernelResource.py,sha256=FCWuRHoHuyv6x5Ursi4Zlzr3QOSO92BA5cAAvLoNEzY,1728
|
|
124
124
|
mage_ai/api/resources/LogResource.py,sha256=zLElJPEtQLTQkrT7YSJhgrxiKzBLmiM7v6hJrgAvjjs,9115
|
|
125
125
|
mage_ai/api/resources/MonitorStatResource.py,sha256=dzsfNyomTkkESFynOOJW2hjllXuEFlG2Juj-is5rqRA,1397
|
|
126
|
-
mage_ai/api/resources/OauthResource.py,sha256=
|
|
126
|
+
mage_ai/api/resources/OauthResource.py,sha256=FqWUjX35rWYbMj8k8Qb7AEMsbj9GVHk73S9XcSA7gIw,4771
|
|
127
127
|
mage_ai/api/resources/OutputResource.py,sha256=IG0e3OlRU5nnI-06rUo3x5sUB1Bu1r_zuEoMAHgLYSM,582
|
|
128
|
-
mage_ai/api/resources/PipelineResource.py,sha256=
|
|
128
|
+
mage_ai/api/resources/PipelineResource.py,sha256=hIHaHUnd7aAOMiFptkVn7i-NL9YmlikuUiAvljdRF14,8635
|
|
129
129
|
mage_ai/api/resources/PipelineRunResource.py,sha256=K1I1mDxAyzmHxvw4cyoAEKQGxtNH9ykEMkf1bTNXrpU,8879
|
|
130
130
|
mage_ai/api/resources/PipelineScheduleResource.py,sha256=3aXGqLhlqDgBU7C61An-7qGfuFgtZ1zbstWLJmcbBJc,3849
|
|
131
131
|
mage_ai/api/resources/ProjectResource.py,sha256=PjGy5Si8ELt6QirXdyRcEmtWp41BgpzB-QwJl9RRB0U,1980
|
|
@@ -134,13 +134,13 @@ mage_ai/api/resources/Resource.py,sha256=qFRHdxrq-4WNAsc9EhHVyQNMa1dVR2_XQ-sDRvw
|
|
|
134
134
|
mage_ai/api/resources/RoleResource.py,sha256=Au1buB4U_DYzuWlz0Xq8dvv3h1tjIcf3Y2BjPGwYnLI,2071
|
|
135
135
|
mage_ai/api/resources/SchedulerResource.py,sha256=27lvvoq6_gM0wmDpA6sK2E9zryrlHpgQ6W8NSANxSLY,855
|
|
136
136
|
mage_ai/api/resources/SecretResource.py,sha256=4FR3Djvq33fDwIBkmJ99kWohJwIp6IYsvX0AXhdzweo,2212
|
|
137
|
-
mage_ai/api/resources/SessionResource.py,sha256=
|
|
137
|
+
mage_ai/api/resources/SessionResource.py,sha256=mgCO8VnLVPhwk5y7BxwSIQcWY_a0dLgOxYSdVvtkLVI,4467
|
|
138
138
|
mage_ai/api/resources/StatusResource.py,sha256=t9B9vnK0p5QvKWtZeD-MhlAYYeeCXKEosJVZ_d1f4y0,2433
|
|
139
139
|
mage_ai/api/resources/SyncResource.py,sha256=SaGP8GpIfcTu6c4VK6Gr2SAxovg7PBH6rEtXz-ZGeUs,5385
|
|
140
140
|
mage_ai/api/resources/UserResource.py,sha256=O9J88f5HzwL9FTZy_pNSWC3VSytzMpiJmA0TGzQtoPo,7410
|
|
141
141
|
mage_ai/api/resources/VariableResource.py,sha256=hzYm3SMQQQ1tVwZ2_Ob5NUNGuGEgSZX4Fn2l8TmMYlU,5009
|
|
142
142
|
mage_ai/api/resources/WidgetResource.py,sha256=4NK24Pn5tNiSjsDS6Mq76_hSKw8_22Z0pR88YqGfLCw,2618
|
|
143
|
-
mage_ai/api/resources/WorkspaceResource.py,sha256=
|
|
143
|
+
mage_ai/api/resources/WorkspaceResource.py,sha256=L_-vcy3b65_m1q9QE53JxI6RY3t1wKLHgpXb39e6vYY,13197
|
|
144
144
|
mage_ai/api/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
145
145
|
mage_ai/api/resources/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
146
146
|
mage_ai/api/resources/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -151,12 +151,13 @@ mage_ai/authentication/ldap.py,sha256=r40fdiRu0MetoqfEi_A9ClQ5ka-b2kIVC1AguA8rCD
|
|
|
151
151
|
mage_ai/authentication/oauth2.py,sha256=WEsGR1cQaf_FcHSrI0tLag0vYcpIkm46zdhxWB0COo8,1503
|
|
152
152
|
mage_ai/authentication/passwords.py,sha256=d2WnkHrX0zglayWtUwNnN8PhI0tGgTzhi8dy4q1RILY,732
|
|
153
153
|
mage_ai/authentication/oauth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
|
-
mage_ai/authentication/oauth/
|
|
154
|
+
mage_ai/authentication/oauth/active_directory.py,sha256=a1GYjIH0Q2OlGi3fF5p74mKm9lnc6nsTRPj-uYqssjM,340
|
|
155
|
+
mage_ai/authentication/oauth/constants.py,sha256=R2o3fARpFSJbGQXXDKNC8LgDcsUpC3x5cTBNTHpZ8XQ,313
|
|
155
156
|
mage_ai/authentication/oauth/utils.py,sha256=0RSAIDc_OzZR3qGxXMOj6-3DeDCXrEQqpnknIHqHoFw,617
|
|
156
157
|
mage_ai/autocomplete/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
158
|
mage_ai/autocomplete/utils.py,sha256=jb8EtUIVYNIEXEOuS32hYDCqify6CtBkSiPwQJYboAQ,3651
|
|
158
159
|
mage_ai/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
159
|
-
mage_ai/cli/main.py,sha256=
|
|
160
|
+
mage_ai/cli/main.py,sha256=XqbVMrTd0ymSSK8KEpAe8sk2PhXiGQGLw8YyBPbHQY8,9894
|
|
160
161
|
mage_ai/cli/utils.py,sha256=8NvW5DCrwxrWjbOKCqbV5GXzFblBJQ3pY2ivgdNUF5M,880
|
|
161
162
|
mage_ai/cluster_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
162
163
|
mage_ai/cluster_manager/cluster_manager.py,sha256=DzFGOFJp2TqJWCdswSqiFCSqt-c_JoOKWQKJWBDAdLQ,269
|
|
@@ -167,7 +168,7 @@ mage_ai/cluster_manager/aws/emr_cluster_manager.py,sha256=KJo2M_3zHY_dDeUC9x4FnJ
|
|
|
167
168
|
mage_ai/cluster_manager/gcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
168
169
|
mage_ai/cluster_manager/gcp/cloud_run_service_manager.py,sha256=pdbYCpOl52q3p8k_Ic6JGnT72Gs1Y51ztZii0IGkrKE,7933
|
|
169
170
|
mage_ai/cluster_manager/kubernetes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
170
|
-
mage_ai/cluster_manager/kubernetes/workload_manager.py,sha256=
|
|
171
|
+
mage_ai/cluster_manager/kubernetes/workload_manager.py,sha256=SAlnGZABsnALR--VNtowAFBT16237SMdie4CY08pYl4,12336
|
|
171
172
|
mage_ai/data_cleaner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
172
173
|
mage_ai/data_cleaner/data_cleaner.py,sha256=q21mGoRKFFz59yEUc2eVvYF4tOo7zSVZlxqo6NA8B2U,3750
|
|
173
174
|
mage_ai/data_cleaner/analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -240,8 +241,8 @@ mage_ai/data_integrations/utils/parsers.py,sha256=xtowXJCkU8gdZ9nj1ILic5F_QMNPl_
|
|
|
240
241
|
mage_ai/data_integrations/utils/scheduler.py,sha256=2YjGroGvfevKDcA7WB8TYJExbktnX3naohikFRczPcg,7721
|
|
241
242
|
mage_ai/data_preparation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
242
243
|
mage_ai/data_preparation/decorators.py,sha256=j4G2wH-ZhnGqtV71NZlT7Z6ubxaf2Xz-mQ0bR1hwf8c,788
|
|
243
|
-
mage_ai/data_preparation/preferences.py,sha256=
|
|
244
|
-
mage_ai/data_preparation/repo_manager.py,sha256=
|
|
244
|
+
mage_ai/data_preparation/preferences.py,sha256=po9nc9FyZj74TeCMJsLaQSZJQkupTn5bvuk3pXtpEeU,3395
|
|
245
|
+
mage_ai/data_preparation/repo_manager.py,sha256=7AstH4cl2T5ztnyTZnsS2z5GiDqU2UY-5-GORt08_vo,8685
|
|
245
246
|
mage_ai/data_preparation/variable_manager.py,sha256=pPNFLTvXpErmYQl8BMj3as50V4apCp3SUZvE0n0-HFs,12094
|
|
246
247
|
mage_ai/data_preparation/executors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
247
248
|
mage_ai/data_preparation/executors/azure_container_instance_executor.py,sha256=kgqzqYAV8RjRpOjy_6Khlo_pzEdjRa1w4CpYWkdQ95g,1052
|
|
@@ -255,7 +256,7 @@ mage_ai/data_preparation/executors/pipeline_executor.py,sha256=pTW-TCB7NDXt8_K9N
|
|
|
255
256
|
mage_ai/data_preparation/executors/pyspark_block_executor.py,sha256=hzOqIZcVTIHhHvYlQqk2qNkwgPi6cG3W8UooYqVsEr8,3520
|
|
256
257
|
mage_ai/data_preparation/executors/pyspark_pipeline_executor.py,sha256=OdJ7pdnX1Se0oc2orxeWGgmr0SWD9mkcDTnVk-YSfxo,2806
|
|
257
258
|
mage_ai/data_preparation/executors/streaming_pipeline_executor.py,sha256=AIb8yAfjZo_iH5LPxjeGSMVlZSf_EMHsie7gKLLRtzU,8224
|
|
258
|
-
mage_ai/data_preparation/git/__init__.py,sha256=
|
|
259
|
+
mage_ai/data_preparation/git/__init__.py,sha256=kT2v6kOXqCFPTH3sWMj3L0v7_tMTp23aqy5P2sT_HGo,22861
|
|
259
260
|
mage_ai/data_preparation/git/api.py,sha256=bH-rrD0Miv-CLUT3MIX7wS0J0KROPjQQ78b-ZDj5CcM,5037
|
|
260
261
|
mage_ai/data_preparation/logging/__init__.py,sha256=2SZxyIBs5K9WUmNnf8oGwYH0W4CM-u5WprNatxHL1ZE,452
|
|
261
262
|
mage_ai/data_preparation/logging/gcs_logger_manager.py,sha256=OH2PxZbSGo1LiOGlBVxNqTwDhd55ats0oe0fvQ3Vrxw,2010
|
|
@@ -267,7 +268,7 @@ mage_ai/data_preparation/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
267
268
|
mage_ai/data_preparation/models/constants.py,sha256=yulMXbuP3JD6DHFSFreU8VlwcLnhl0X2nqa1ThHOKp4,3071
|
|
268
269
|
mage_ai/data_preparation/models/errors.py,sha256=NAuStUn8neLBHNT8kmyfkhAAX4gdsW7a-3V0q2sYkK0,103
|
|
269
270
|
mage_ai/data_preparation/models/file.py,sha256=jP17MChlLXUcZ7YLoTYhiCz6SfkzN2cJyvole-7aqHI,11466
|
|
270
|
-
mage_ai/data_preparation/models/pipeline.py,sha256=
|
|
271
|
+
mage_ai/data_preparation/models/pipeline.py,sha256=6mA-fV05-OSSGfnAsEhuFHUoJVVgwtA9XesCIJNBmWQ,58378
|
|
271
272
|
mage_ai/data_preparation/models/project.py,sha256=WCGzFn8KOFQ-aEJqEbD6-eGvrmI3Y-vJq16X0NZ3qII,1084
|
|
272
273
|
mage_ai/data_preparation/models/utils.py,sha256=ThmJo69b18DK1t5TcIpiLpCNoQ9UpKGn84Z-sYRLOoo,2375
|
|
273
274
|
mage_ai/data_preparation/models/variable.py,sha256=SuO6a46f28JKvYgs4BUwhuOQ1VdqgxdM-AigNIqrWe8,23367
|
|
@@ -276,7 +277,7 @@ mage_ai/data_preparation/models/block/constants.py,sha256=n4LDaGtuw1bMF4lR2jHKKR
|
|
|
276
277
|
mage_ai/data_preparation/models/block/errors.py,sha256=2h1cT76EvdzJaceO1rfwQwIVLOtCBR40pCnQoPQJ5tM,182
|
|
277
278
|
mage_ai/data_preparation/models/block/utils.py,sha256=day1X19jt6dt1u07nt-Jt0HvksYoCKO0Xm7IjVuVNQA,20295
|
|
278
279
|
mage_ai/data_preparation/models/block/dbt/__init__.py,sha256=Dg5pmaOVYtmNm1WJwWiGfVZBIUeUvGatzTA72yK_Z80,10558
|
|
279
|
-
mage_ai/data_preparation/models/block/dbt/utils/__init__.py,sha256=
|
|
280
|
+
mage_ai/data_preparation/models/block/dbt/utils/__init__.py,sha256=aY_iBWfZJWg5fDNuOcSotayjTgkAJ40WvtrK8RUgIUw,45707
|
|
280
281
|
mage_ai/data_preparation/models/block/extension/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
281
282
|
mage_ai/data_preparation/models/block/extension/block.py,sha256=XGx68MZxD6mT5APgWgfeXJwJ19fbtkf5QLvwPHaaiJo,2722
|
|
282
283
|
mage_ai/data_preparation/models/block/extension/great_expectations.py,sha256=YjCutv1Gfqb0cTYdeLc8QgbbL3_Gm0nWwd3gTYzFEEU,3476
|
|
@@ -286,7 +287,7 @@ mage_ai/data_preparation/models/block/r/__init__.py,sha256=-LGeoXPFPPkpJqBDVYiml
|
|
|
286
287
|
mage_ai/data_preparation/models/block/r/templates/data_exporter.jinja,sha256=k5MCQgZ75LpcKMA_j9ABvbUIQpU_iDTTtLeiY9Spsio,228
|
|
287
288
|
mage_ai/data_preparation/models/block/r/templates/data_loader.jinja,sha256=pRiRlFCAyLPlqQDJuc9Q8r2FqkaS-K_3Oa-qXdgMepI,312
|
|
288
289
|
mage_ai/data_preparation/models/block/r/templates/transformer.jinja,sha256=6zorVvoeqxyIUFgb3SJgHuo1jTG-HpswTX1zPsTOjPY,307
|
|
289
|
-
mage_ai/data_preparation/models/block/sql/__init__.py,sha256=
|
|
290
|
+
mage_ai/data_preparation/models/block/sql/__init__.py,sha256=0dx1eibyE5SzelpASkga_0mxDUk1IYSFhZJIlmN7JcI,21171
|
|
290
291
|
mage_ai/data_preparation/models/block/sql/bigquery.py,sha256=9kLiH_aDT98IvFcX02WmYxmg0iifgnUg2o5mBy6tSEQ,3959
|
|
291
292
|
mage_ai/data_preparation/models/block/sql/clickhouse.py,sha256=57nb4M1-_H6mgVhy-8d20QOKOjMG8QycUB-EHPmNz-U,1426
|
|
292
293
|
mage_ai/data_preparation/models/block/sql/constants.py,sha256=sMUAbID23PpCyQR2u54JaZGRkaKfYSjBWIjC97DTyRs,139
|
|
@@ -319,14 +320,14 @@ mage_ai/data_preparation/storage/base_storage.py,sha256=nu-l4YYOX8JHwPNz6rsTRnF-
|
|
|
319
320
|
mage_ai/data_preparation/storage/local_storage.py,sha256=9jz7f3Jnrc_EmjDYo2KyBZHX3Yw4Yc5ZWblfJ3IekHc,3027
|
|
320
321
|
mage_ai/data_preparation/storage/s3_storage.py,sha256=3sw7k3LEDq_YDETHa1iOPYPZv33zOYuJyuC2Kr-tdCA,3211
|
|
321
322
|
mage_ai/data_preparation/storage/utils.py,sha256=hBvfdRVWDpoh-tZUm3TP0TbY92lnFmKdh-Pwycs-u6w,2729
|
|
322
|
-
mage_ai/data_preparation/sync/__init__.py,sha256=
|
|
323
|
+
mage_ai/data_preparation/sync/__init__.py,sha256=zxkZXRyuPZsJ6UYlPSc7WKPgwJISX19_JizqMFYSzXs,1522
|
|
323
324
|
mage_ai/data_preparation/sync/base_sync.py,sha256=ISj1quDeDJttBfYw0-YsOc13e5fAMISrQsa1JINLpDU,125
|
|
324
|
-
mage_ai/data_preparation/sync/git_sync.py,sha256=
|
|
325
|
+
mage_ai/data_preparation/sync/git_sync.py,sha256=_-FYNKBs1LNjuymqO1mPIhvmDAfixAeuPQx92W1WZTs,768
|
|
325
326
|
mage_ai/data_preparation/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
326
327
|
mage_ai/data_preparation/templates/constants.py,sha256=0eTCzQouckrnoLlnpadhtFHpclK1K4XVdGbPuFQEJgg,3733
|
|
327
328
|
mage_ai/data_preparation/templates/template.py,sha256=rf8spMhajTZabuXhzFLeCQI24lzbVW8afyApHwHNHuE,9253
|
|
328
329
|
mage_ai/data_preparation/templates/testable.jinja,sha256=i_SSr-xbeZvd-gpUZYdiy_MMa0suckmmn5gfPZOxx3A,333
|
|
329
|
-
mage_ai/data_preparation/templates/utils.py,sha256=
|
|
330
|
+
mage_ai/data_preparation/templates/utils.py,sha256=239Al1PBiGQoUiSf6hE4Z_FxMITzHs-5W_k-TfzUgEg,2011
|
|
330
331
|
mage_ai/data_preparation/templates/callbacks/base.jinja,sha256=uveU-ZteRe_YaNm4ikS-gPLDJEQM_p3qxTk06YiWU_Q,329
|
|
331
332
|
mage_ai/data_preparation/templates/callbacks/default.py,sha256=-uJkpWgnCeNNwq43jfruubRsLEyDIazYeg_3ognEOHo,114
|
|
332
333
|
mage_ai/data_preparation/templates/callbacks/orchestration/triggers/default.jinja,sha256=JJPIm79SYBq2_oRKrcL1g5bia51oiLZbEhqTErdDryY,1028
|
|
@@ -493,7 +494,7 @@ mage_ai/orchestration/airflow.py,sha256=ab8uWZ-B3Jg2WYpdD7S7fgvPlKOzSCZd-Wutui6Y
|
|
|
493
494
|
mage_ai/orchestration/constants.py,sha256=2aLqoWjiSEgt3I6vsxyEPsfFBAz3yKeCFPcf_YSsIsc,180
|
|
494
495
|
mage_ai/orchestration/execution_process_manager.py,sha256=hKkVMu9FEePh8aT2zOk57gl9VNBsQpvJ9WQZOQ78OhY,3827
|
|
495
496
|
mage_ai/orchestration/job_manager.py,sha256=CYdt0akJhlO5HccpEHoqP0P5b-zsr06kthersgWD55Q,1515
|
|
496
|
-
mage_ai/orchestration/pipeline_scheduler.py,sha256=
|
|
497
|
+
mage_ai/orchestration/pipeline_scheduler.py,sha256=Umn6ll7N5yeeDcVcERfp-4QHzgHVyQuj5U5CxGa5mlE,47180
|
|
497
498
|
mage_ai/orchestration/run_status_checker.py,sha256=nB1gamqEt7_5niU0mKYFvWy-b-0MzK_Mh1W_6UprpXo,2468
|
|
498
499
|
mage_ai/orchestration/backfills/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
499
500
|
mage_ai/orchestration/backfills/service.py,sha256=Fh1YYVzfKkGAhdc5P1NNAGtcpQJc2BXrGgmXH1r4Oks,3930
|
|
@@ -546,7 +547,7 @@ mage_ai/orchestration/notification/sender.py,sha256=as7lRyrXt9ITlLk6nbOYKEWyl9A0
|
|
|
546
547
|
mage_ai/orchestration/queue/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
547
548
|
mage_ai/orchestration/queue/celery_queue.py,sha256=KadOuEfBsv21dTZuuHV0t2TKQaPvmd82n2TESgdnw8A,691
|
|
548
549
|
mage_ai/orchestration/queue/config.py,sha256=NCIM4jO9O6aGhoJumkpgMWo9B9SSdVcLJ_RqKbE30fo,293
|
|
549
|
-
mage_ai/orchestration/queue/process_queue.py,sha256=
|
|
550
|
+
mage_ai/orchestration/queue/process_queue.py,sha256=Q41RTrdDoF2EfprxCmNu323z3bh_Kn6dSeB-6U8HTmA,4175
|
|
550
551
|
mage_ai/orchestration/queue/queue.py,sha256=9Xw0wkWSBkO_4AfkE1rs36-HwlRVGzyaCoTvjkaP82s,472
|
|
551
552
|
mage_ai/orchestration/queue/queue_factory.py,sha256=qMwbfmeSK-Vig4b7X9dBC5D6DmH7qOPXml9N0hQEfQE,717
|
|
552
553
|
mage_ai/orchestration/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -565,21 +566,21 @@ mage_ai/sample_datasets/user_emails.csv,sha256=yokgn3bmkkrSZBFC-crJxPXFzKdgLaQbp
|
|
|
565
566
|
mage_ai/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
566
567
|
mage_ai/server/active_kernel.py,sha256=YiYl_IwamkMYg9J2oFQeV76vpwQVZJA6u8ryOTZedMI,2235
|
|
567
568
|
mage_ai/server/app.py,sha256=LjdwgFr3OduHaJOGGPhiGNUGZyYvfYz0OUUe56yfCM8,13229
|
|
568
|
-
mage_ai/server/constants.py,sha256=
|
|
569
|
+
mage_ai/server/constants.py,sha256=CWhfwH8q67WkE4SIFR3kInauJaqLdxxE5j9PbkDTfF0,421
|
|
569
570
|
mage_ai/server/docs_server.py,sha256=MxwLjAB0HpkOk-Jb1NSsLRhynIJM1vCiUIJXUqJ-38o,618
|
|
570
571
|
mage_ai/server/execution_manager.py,sha256=jB8K0_aCO15fZdgE2Kd1zdROiv2VBOLGXWiigvb6rKQ,3457
|
|
571
572
|
mage_ai/server/kernel_output_parser.py,sha256=eOU003y8mkK0w6LmvBNbgrRRZwDTWao2io19UYPO6Co,2436
|
|
572
573
|
mage_ai/server/kernels.py,sha256=Bk_NHLjI05SHVJG91VrUVJqul9VdBFNezWLx6gyyr7w,787
|
|
573
574
|
mage_ai/server/logger.py,sha256=ZQivW37-0K6ty9zOCXQeYfHnSAho-LLvZmSQEI3fOdU,547
|
|
574
|
-
mage_ai/server/scheduler_manager.py,sha256=
|
|
575
|
-
mage_ai/server/server.py,sha256=
|
|
575
|
+
mage_ai/server/scheduler_manager.py,sha256=rY7j6yOEnEE_zMY0-Spt-xp_V6D2pp_pYyXF5bPXehg,2978
|
|
576
|
+
mage_ai/server/server.py,sha256=4jlndbYmyTY8pq9_DynQzVXmcAyb5BopEXaj8QEp23g,14259
|
|
576
577
|
mage_ai/server/subscriber.py,sha256=DiHuAe1xLIhHsiCHD7J4OAVF0jrTcqsE2iO94vV1EjI,712
|
|
577
578
|
mage_ai/server/terminal_server.py,sha256=RxXXrk0dssp-LlKXb94TXgczbhKqsoagihF-bcW-uJI,5473
|
|
578
579
|
mage_ai/server/websocket_server.py,sha256=VCd-yMpYGuaRMyfUQDQkZARDxTD0NPGfRrmzrPrMBec,20683
|
|
579
580
|
mage_ai/server/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
580
581
|
mage_ai/server/api/base.py,sha256=ZQ7-VDzmCumU1t2ml4TSwb_XFBLPOTqg6Y-UURfIe_o,3660
|
|
581
582
|
mage_ai/server/api/blocks.py,sha256=1aQognsNOG4Bfh-CEXqMgXatoTiw4tjzqm5_tHFtf2I,508
|
|
582
|
-
mage_ai/server/api/clusters.py,sha256=
|
|
583
|
+
mage_ai/server/api/clusters.py,sha256=UzhEqrSwmnaD69cGW_KwGOnpgb9A3OdpfGMA80Nn-mM,7264
|
|
583
584
|
mage_ai/server/api/constants.py,sha256=SIOZfts7iPsQf23K6adtvO7i_-kchgt1BWc7-9v6uQs,207
|
|
584
585
|
mage_ai/server/api/downloads.py,sha256=-vxjR4d6rhkZPt52Cs245NRIVwvTsDBdp4NLeapWBUM,2875
|
|
585
586
|
mage_ai/server/api/errors.py,sha256=9p9jSjVEmeeA6lKFf3Y8Yua-Y2GdwHee2xqTRE1mZ0I,119
|
|
@@ -593,24 +594,24 @@ mage_ai/server/client/mage.py,sha256=P_uT4tettbdT8eLnjrb6TnBvJ3522RHEUg2sO7KjMzg
|
|
|
593
594
|
mage_ai/server/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
594
595
|
mage_ai/server/data/base.py,sha256=mEenR7pyQ_ETa795RcOx134M6DkSpszcv41FzEu_khM,3862
|
|
595
596
|
mage_ai/server/data/models.py,sha256=K71oIFBs1A3VICS6QIQeF94KkHDu_-XGZRkPnkIWCso,9316
|
|
596
|
-
mage_ai/server/frontend_dist/404.html,sha256=
|
|
597
|
-
mage_ai/server/frontend_dist/404.html.html,sha256=
|
|
597
|
+
mage_ai/server/frontend_dist/404.html,sha256=tK_q_5sYdohSVcUy3mmhhsLULGdVxD1CJGytKZjyIZg,9033
|
|
598
|
+
mage_ai/server/frontend_dist/404.html.html,sha256=tK_q_5sYdohSVcUy3mmhhsLULGdVxD1CJGytKZjyIZg,9033
|
|
598
599
|
mage_ai/server/frontend_dist/favicon.ico,sha256=ZSTSGm_csS09e9wbk5aYBDuzaccwVAQWpslG3mN9A30,15406
|
|
599
|
-
mage_ai/server/frontend_dist/files.html,sha256=
|
|
600
|
-
mage_ai/server/frontend_dist/index.html,sha256=
|
|
601
|
-
mage_ai/server/frontend_dist/manage.html,sha256=
|
|
602
|
-
mage_ai/server/frontend_dist/pipeline-runs.html,sha256=
|
|
603
|
-
mage_ai/server/frontend_dist/pipelines.html,sha256
|
|
604
|
-
mage_ai/server/frontend_dist/settings.html,sha256=
|
|
605
|
-
mage_ai/server/frontend_dist/sign-in.html,sha256=
|
|
606
|
-
mage_ai/server/frontend_dist/terminal.html,sha256=
|
|
607
|
-
mage_ai/server/frontend_dist/test.html,sha256=
|
|
608
|
-
mage_ai/server/frontend_dist/triggers.html,sha256=
|
|
600
|
+
mage_ai/server/frontend_dist/files.html,sha256=ElRIbET7JEnyfXFDqwi3fhiUwVXMJTekRB8SCocaUfI,10431
|
|
601
|
+
mage_ai/server/frontend_dist/index.html,sha256=c0fFDTFhJOaR_OfsRpwCYelpMSMS7yC0kKUOFy6R4-M,7795
|
|
602
|
+
mage_ai/server/frontend_dist/manage.html,sha256=oULiCCvJEIVN4izdTwoLcxePgGJY9fcAMZ02MK2eeqo,10127
|
|
603
|
+
mage_ai/server/frontend_dist/pipeline-runs.html,sha256=LqtWNI-PqpEJ7pvQK7dNWfjs5beLSsPfVK_Ui3dO2AI,10066
|
|
604
|
+
mage_ai/server/frontend_dist/pipelines.html,sha256=-em5jLUJk0gOSSTv1ZOkvHM8J5gpiYrvymJKNKRR0Y4,9976
|
|
605
|
+
mage_ai/server/frontend_dist/settings.html,sha256=wkAKWzXjk8JVOypPKxISS2k_Kj4cMf73J8K2vrDJm6A,7867
|
|
606
|
+
mage_ai/server/frontend_dist/sign-in.html,sha256=QfbbYIvKDN72WOXw0Mfn7bHV1cvJwwyCQ6sCjA5P0Oc,18656
|
|
607
|
+
mage_ai/server/frontend_dist/terminal.html,sha256=wcmVN4RMSXGlUfuKuvzmYI-2c15t5MsfDwRWyE-ukDA,9817
|
|
608
|
+
mage_ai/server/frontend_dist/test.html,sha256=ozBlH92adnMmmJHB0-bVUMtUPp4uUu1w9oV8VXUIAY4,8218
|
|
609
|
+
mage_ai/server/frontend_dist/triggers.html,sha256=61OB7mnv7itL5YEkHUu7eVizr1M4lL6flvIQ6lEhwhs,9973
|
|
609
610
|
mage_ai/server/frontend_dist/vercel.svg,sha256=wPvODNXNDTx7iJgazQaNE7lhRgu5TTxLpKDsXCgFH9E,1101
|
|
610
|
-
mage_ai/server/frontend_dist/version-control.html,sha256=
|
|
611
|
-
mage_ai/server/frontend_dist/_next/static
|
|
612
|
-
mage_ai/server/frontend_dist/_next/static
|
|
613
|
-
mage_ai/server/frontend_dist/_next/static
|
|
611
|
+
mage_ai/server/frontend_dist/version-control.html,sha256=cor6Kr-bBE6N_kT5WpJ-A7jsfFNO4jFdHNMS5xlxz6s,10305
|
|
612
|
+
mage_ai/server/frontend_dist/_next/static/WRxCTOtmZhTqQws_7OJZD/_buildManifest.js,sha256=F6pTtPZ88wC5e2AESG1BU5lygWJH-kcHa_wDbrQPGdc,6031
|
|
613
|
+
mage_ai/server/frontend_dist/_next/static/WRxCTOtmZhTqQws_7OJZD/_middlewareManifest.js,sha256=3lNBMTpNxdmCylCuSkkehLxegLD0Odh_Bfw5c8G35Zo,92
|
|
614
|
+
mage_ai/server/frontend_dist/_next/static/WRxCTOtmZhTqQws_7OJZD/_ssgManifest.js,sha256=b1tKoA0vjWrtmTW0cYBr96zvRk0MHTkCYOX-J_gAxn4,77
|
|
614
615
|
mage_ai/server/frontend_dist/_next/static/chunks/1005-d364db1eba919edd.js,sha256=72xtu8gCcWgEWC-kEU84vOfzK-RpcSyV8EyvrdQleV8,29223
|
|
615
616
|
mage_ai/server/frontend_dist/_next/static/chunks/1150.1378afaa474df64a.js,sha256=CAbPzsc6FvScAdGZ26Omo_u0xmNCOcJ9vCPw7FNvxMU,3531
|
|
616
617
|
mage_ai/server/frontend_dist/_next/static/chunks/1240.0819f45820d22263.js,sha256=J0T6Hf6bUPCYwHY9ldwKtZyEe2sZjt7Z0JySRGK5Tno,6458
|
|
@@ -691,7 +692,7 @@ mage_ai/server/frontend_dist/_next/static/chunks/8901.21d26d5a1ee473fe.js,sha256
|
|
|
691
692
|
mage_ai/server/frontend_dist/_next/static/chunks/8920.5700e380a2999098.js,sha256=RGvPzExXEFaDQYehD5SQTf1r9XRwqfkf5bIUaZ-l7q8,9937
|
|
692
693
|
mage_ai/server/frontend_dist/_next/static/chunks/9258.6c6ef544c701a011.js,sha256=Sd-pfR7PFDVoiqfxr5sl61hVIm2qxz5rYYpJ3GGLI4k,8406
|
|
693
694
|
mage_ai/server/frontend_dist/_next/static/chunks/9307.d4baf7aebbcef1f0.js,sha256=XcyG4VF1oJ4zaD2bX8-MQ8r4cfeDmkaIj60zLyAjUkk,2131
|
|
694
|
-
mage_ai/server/frontend_dist/_next/static/chunks/9350-
|
|
695
|
+
mage_ai/server/frontend_dist/_next/static/chunks/9350-5191c83a8d0cf454.js,sha256=7HWcEzX-b3qnwk4m-obdFQz16qZA_Ey8lQWjzeKXGB8,913245
|
|
695
696
|
mage_ai/server/frontend_dist/_next/static/chunks/9361.a0820e3069f5ef74.js,sha256=zaf_GLX8tS5ektbln-27JQT7nzS3Z3V57ZP-mg2H1d8,1867
|
|
696
697
|
mage_ai/server/frontend_dist/_next/static/chunks/9363.6b811b4c86277e07.js,sha256=FDI0fpd7pnvWkvPElKs1-1XNBvBPPd6wZn8LetZjD_k,5350
|
|
697
698
|
mage_ai/server/frontend_dist/_next/static/chunks/9437.a3c32f45cf9ef69b.js,sha256=UurJl-fsdUw2nmOjc-nnhyVMkXj8okl6vySDFRzkTwM,1655
|
|
@@ -706,19 +707,19 @@ mage_ai/server/frontend_dist/_next/static/chunks/framework-7c365855dab1bf41.js,s
|
|
|
706
707
|
mage_ai/server/frontend_dist/_next/static/chunks/main-bb0dd5375146d7fd.js,sha256=D8WTELFsu6xl-FY23xblYecv7-mxB1cvXhS7LkWANy4,102188
|
|
707
708
|
mage_ai/server/frontend_dist/_next/static/chunks/polyfills-5cd94c89d3acac5f.js,sha256=fLWoemwNBaqyJFy_aiatrYDNMiVA1fY2Dd5iG_kidD8,91434
|
|
708
709
|
mage_ai/server/frontend_dist/_next/static/chunks/webpack-8f51011a10b384a1.js,sha256=O9cTRXsMj3ECWACnw6kLJUM0v-sYCC8ocyDCNpQSYRg,5196
|
|
709
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-
|
|
710
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-171846e16d26855a.js,sha256=xjq_hB9Nv3nii7o7SgYEUbZQ-klkNJUdZEWSb5RDP0Y,434316
|
|
710
711
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/_error-235304e5badb19eb.js,sha256=UnruNRSRVtmbfIswQ7oYMowKiJmeSublFaxDjRHcFGo,3190
|
|
711
712
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/files-e4e778f8f5e1bf2e.js,sha256=q88wOkN2-BW8-uE6Z7rF9yI5_-UEf2dlPgYj_P9ZRy4,15396
|
|
712
713
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/index-b6cd94a079629572.js,sha256=ONhDNQR0vsRwqQwkoaA7-_7gZqWDdTKhH4_csZCvYYE,725
|
|
713
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage-
|
|
714
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage-af11f9cf94024ac0.js,sha256=XZnykUxb5wabngFR1OXIkXQHS3coruK4vls69G9drUY,25488
|
|
714
715
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipeline-runs-5c96190c27f65d97.js,sha256=FiNwo9tzmmVra2wTzGhne5HTVlmEnxR4s-x0yvdEYi0,8465
|
|
715
716
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-b7934a8ee5b45736.js,sha256=e0wWViNupYjqmVT6l2U_ZI8HisSA0fAqkEycd18s35s,47454
|
|
716
717
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings-d594a66a568306da.js,sha256=aXMAMxjQm_15BZfSU0uQSrYnRy403cFcRZcSYEqEXBg,4347
|
|
717
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/sign-in-
|
|
718
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/sign-in-a1871b8a537d823c.js,sha256=XXMsOtv3L9-NlhC98O45Mwr3U9OssHCOAGp6rKyJ9bE,13318
|
|
718
719
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/terminal-0d2260ad08dfe44a.js,sha256=rHGTe2t3ey7P9z-fR2DoWWc7vS6mVZNXyL1eiou72Ig,5446
|
|
719
720
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/test-b24d77dc84843924.js,sha256=kn2zoiD4YrqkFMXnnCKxRsHsh_uaX3O81xDNErMtBvk,8851
|
|
720
721
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/triggers-d9d92753838d5c60.js,sha256=g7lYkEG8FdOH7OWXpJ1zEA5jnwAETlR_UHw2hT-8JSc,15529
|
|
721
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/version-control-
|
|
722
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/version-control-48859b4e9c846212.js,sha256=SlE8IgMBCok_HoJYF8GK2RdwQArbaE_kDFXn1Ow7Yzw,46628
|
|
722
723
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/settings-c788c1b127999825.js,sha256=vR5idbz9D6uLy0a5KkJ66Ejy5FudkPvjxBSF6EdcaD0,30181
|
|
723
724
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users-d3724bde0b186dd9.js,sha256=8qELbcMRP-EzGUoyki6_O_S18v_fb4j2cBgTzWPxgZo,12767
|
|
724
725
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users/[user]-b4650224a19e8fe6.js,sha256=_yjiTHBMZiEvRS9S4A-d570TFmghmzov08Yku_Pwjh4,6601
|
|
@@ -739,7 +740,7 @@ mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs
|
|
|
739
740
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/triggers/[...slug]-4445619d4eabe065.js,sha256=jqhTP_siPIcur6GaZjdFY66kU-OldSUHh7-HU5BmZ3Q,55905
|
|
740
741
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/account/profile-ee0931af3abb55b3.js,sha256=_9VV-9O9E-aSOkMtkq9xoaWK5DDsJD3inABBZb3iKNo,9929
|
|
741
742
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/preferences-f8a59d718751be9a.js,sha256=vtVJFVWVGQ2aSZhgbQ47OTkthxvQpVPZOAuIUjJHeHI,22268
|
|
742
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/sync-data-
|
|
743
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/sync-data-90f8830890036eb2.js,sha256=lhIYUHrz0lHlmLl-mi0f_TYrYyM_WEYcpr5tv_PXn4Y,23183
|
|
743
744
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/users-9f82673fc438ea83.js,sha256=uoCwGo7XaLIPloAt_9IRG_8qMH6AuGJTVkg0cYzpYrk,9293
|
|
744
745
|
mage_ai/server/frontend_dist/_next/static/css/d1e8e64d0b07af2f.css,sha256=mdjfcNHDQ5vXWn5xHrFvRm2QTQUGZlPrrUb0ELexj2g,15565
|
|
745
746
|
mage_ai/server/frontend_dist/fonts/Fira_Code/ttf/FiraCode-Bold.ttf,sha256=QfZVToReL1twra05UBIjNLhmqsQ2eTt3Qq3mAAZ3Ab4,319368
|
|
@@ -788,28 +789,28 @@ mage_ai/server/frontend_dist/images/run B.jpg,sha256=XCcTHE0uxCnOUlaU1yBhxOc6yVx
|
|
|
788
789
|
mage_ai/server/frontend_dist/images/extensions/dbt/logo.png,sha256=-ssfqyt73pSkqsA_UBfYf2U2h2P62yr6fCe5SIwBurc,6001
|
|
789
790
|
mage_ai/server/frontend_dist/images/extensions/great_expectations/logo.png,sha256=RK76yAE_SHMHiFxf2aq-Ox00Gw6Khap9CCkdT7ucfQw,22785
|
|
790
791
|
mage_ai/server/frontend_dist/images/sessions/abstract.png,sha256=1oNvrU66riRKJOeF2siaMEINPZatcu7kdDPliEVACyQ,256616
|
|
791
|
-
mage_ai/server/frontend_dist/manage/settings.html,sha256=
|
|
792
|
-
mage_ai/server/frontend_dist/manage/users.html,sha256=
|
|
793
|
-
mage_ai/server/frontend_dist/manage/users/[user].html,sha256=
|
|
794
|
-
mage_ai/server/frontend_dist/manage/users/new.html,sha256=
|
|
795
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline].html,sha256=
|
|
796
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills.html,sha256=
|
|
797
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/edit.html,sha256=
|
|
798
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/logs.html,sha256=
|
|
799
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors.html,sha256=
|
|
800
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/runs.html,sha256=
|
|
801
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/settings.html,sha256=
|
|
802
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/syncs.html,sha256=
|
|
803
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers.html,sha256
|
|
804
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills/[...slug].html,sha256=
|
|
805
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runs.html,sha256=
|
|
806
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runtime.html,sha256=
|
|
807
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/runs/[run].html,sha256=
|
|
808
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers/[...slug].html,sha256=
|
|
809
|
-
mage_ai/server/frontend_dist/settings/account/profile.html,sha256=
|
|
810
|
-
mage_ai/server/frontend_dist/settings/workspace/preferences.html,sha256=
|
|
811
|
-
mage_ai/server/frontend_dist/settings/workspace/sync-data.html,sha256=
|
|
812
|
-
mage_ai/server/frontend_dist/settings/workspace/users.html,sha256=
|
|
792
|
+
mage_ai/server/frontend_dist/manage/settings.html,sha256=Uu-yvotROrP0RQk3pz9lN6oAvRm-hXN69J4xeAwlqwA,10067
|
|
793
|
+
mage_ai/server/frontend_dist/manage/users.html,sha256=W7CVRvUq6IqAhz9_Gq9lY_9uvKUmz_9-RvaRa6pxQBc,9983
|
|
794
|
+
mage_ai/server/frontend_dist/manage/users/[user].html,sha256=u-QWhJkLYAiEAGS2BPtE36z1Ar5ATQc66Ac1sFvKIwI,10089
|
|
795
|
+
mage_ai/server/frontend_dist/manage/users/new.html,sha256=Qi6K9VPDsNe6LkktHYnXlxDfn8mZlws7p6roS0JXjUc,9913
|
|
796
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline].html,sha256=WjNlzgkyVxl2PshQvdQ-VQcAuJuGpUim3Q0OACc_Tyc,7909
|
|
797
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills.html,sha256=mmRxh8rqB8TF7nvvr4KPAqgj6uVRXzGiPi25Vg0Vq0o,10101
|
|
798
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/edit.html,sha256=hNARY9tCjKiHe4PI7Ncki6D2xDvQuQNYqEYn0S_Xtus,9818
|
|
799
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/logs.html,sha256=QzGnJgFErhj1AhlvhjZIbtiPEi-IeADfkbrriXGeLSI,10403
|
|
800
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors.html,sha256=3uolsRRRFL6WETtVb7zH6K02vZwITZW6VOjpR2mxxjE,10255
|
|
801
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/runs.html,sha256=88r9hJPzYlJBz4vAT8WA-rajgWFJLCO8YoffwLF4_iU,10559
|
|
802
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/settings.html,sha256=3SPY3M0Sxv16i8FvzWkcp3VMkGheeHb-XCDrpuhbLzI,10021
|
|
803
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/syncs.html,sha256=QQpZMpkGP1F4jm_vopNBksQwsuns2b2xW1V4Ng40F4U,10093
|
|
804
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers.html,sha256=eygEaYa3Gm0-bcgGzCghSCHx2jbvGOpBuX1xv_OQJpA,10645
|
|
805
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills/[...slug].html,sha256=KIc7Z87ewCM181lBC0PaSc7SmewdoPAdu81JstDxKMk,10891
|
|
806
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runs.html,sha256=1W2BXZiAgqLFIzbak7VQmoRKiDBPmS0gxzx6-StC_dQ,10277
|
|
807
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runtime.html,sha256=Mz9bS_Lndn1LOulRruzDPRtuLh4zJTthK__4x2ZmIyw,10443
|
|
808
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/runs/[run].html,sha256=C4lOBePmmJMY3_4jpQyfZxc3E6P-US2XTNuD-5KZMFw,10982
|
|
809
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers/[...slug].html,sha256=88YQQx4rmd4ODexcH99dCx9WBM7KJ4rmwen9sHyp5Fs,10889
|
|
810
|
+
mage_ai/server/frontend_dist/settings/account/profile.html,sha256=9gsE5nd5PSlfrCOe3jrK0oRo9p_OVExY9s-lZeZKNTc,9927
|
|
811
|
+
mage_ai/server/frontend_dist/settings/workspace/preferences.html,sha256=dvOdnADSoMqgeEW-ev1iNxFmYZGNGPOoZnHvwJAyRWA,9861
|
|
812
|
+
mage_ai/server/frontend_dist/settings/workspace/sync-data.html,sha256=1Vulay0pJdUB5GB2S3_N9tMnWEpqu9OJsAGpNSIB2Z8,9857
|
|
813
|
+
mage_ai/server/frontend_dist/settings/workspace/users.html,sha256=Dbxj5y14j25Nw4GGTRKm3A5bjmHpY4xDHfmu2-ABcTY,10083
|
|
813
814
|
mage_ai/server/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
814
815
|
mage_ai/server/utils/frontend_renderer.py,sha256=W3zAlyaF34pX8S9Xvofhu35gETqLBRjj_rET_f3lQ14,3331
|
|
815
816
|
mage_ai/server/utils/output_display.py,sha256=ENEw8oAlz-MMHzSlHAGX6Ll75-QRTDCclIGhsv3H5Ek,12185
|
|
@@ -867,6 +868,7 @@ mage_ai/services/k8s/job_manager.py,sha256=-M7DrVFD1mwfK5dHmMD98UGt69v_bPGYpihzr
|
|
|
867
868
|
mage_ai/services/metaplane/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
868
869
|
mage_ai/services/metaplane/config.py,sha256=heVU168JlVd0i4_C5k2YBT66io8GP003I7DW0dHQ0B0,211
|
|
869
870
|
mage_ai/services/metaplane/metaplane.py,sha256=TU3qR0Grk5aWWtV7jH3E2QGpkK2p3tAf4o_mxYZni-o,4594
|
|
871
|
+
mage_ai/services/newrelic/__init__.py,sha256=jSKgZ962A4Y5jWcbK414WsTcocSF3dAZd7P50gPgjxg,856
|
|
870
872
|
mage_ai/services/opsgenie/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
871
873
|
mage_ai/services/opsgenie/config.py,sha256=bDt0X1tRR1HVzxeSc67vx70s__fHQTc1dvyQiocVZYk,557
|
|
872
874
|
mage_ai/services/opsgenie/opsgenie.py,sha256=NFojrNNxDu8SxWIY5iUsOSVejyI_C5rKSDNhjE9JEyo,1160
|
|
@@ -885,7 +887,7 @@ mage_ai/services/teams/config.py,sha256=hDNBXatwRDUI9gintKvb1zXf1g084ZPXs8y0nHUR
|
|
|
885
887
|
mage_ai/services/teams/teams.py,sha256=dPOX2A8galkPQfcYgJAWCnlZK0MXvFmr5oDBwsdHtMI,441
|
|
886
888
|
mage_ai/services/tracking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
887
889
|
mage_ai/services/tracking/metrics.py,sha256=E-uF0MS9J3PN1Jo5DhSpmVXz6ZW4wnLIXp1RwOJiaGY,197
|
|
888
|
-
mage_ai/settings/__init__.py,sha256
|
|
890
|
+
mage_ai/settings/__init__.py,sha256=-TMkfpVt5HH6VyyyFVXbHvjuapEuoWEBEpODqQwSias,3054
|
|
889
891
|
mage_ai/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
890
892
|
mage_ai/shared/array.py,sha256=yfUbkCf0xPKKmvngm6d0w80XMHV2-wF87Hg4xxXtGgs,946
|
|
891
893
|
mage_ai/shared/code.py,sha256=xmlCpIGDGtzyX8gHdixnfnCDs8FlboV8mB77lQ4E7HI,84
|
|
@@ -895,7 +897,7 @@ mage_ai/shared/conversions.py,sha256=ls64_4DaLex-1j-1CsDX9tw5PX76DPiLQy2cCZYzdak
|
|
|
895
897
|
mage_ai/shared/custom_types.py,sha256=fxNufXA-2cE5aGCFcknb4L2vrS-wcMtKp_RcgLhqgoo,1068
|
|
896
898
|
mage_ai/shared/dates.py,sha256=UfzPZvMYeMiwJ6mrpqS26dM4_lnOmoMzAda5L2lH544,949
|
|
897
899
|
mage_ai/shared/environments.py,sha256=zIWehvvupxkl_xq5f7ffZkpdhwxb_ENr6nA_1b_whhg,734
|
|
898
|
-
mage_ai/shared/hash.py,sha256=
|
|
900
|
+
mage_ai/shared/hash.py,sha256=8c9rZeNLaBvrsMnOwJsH5VYV7Jse0_0ETqlc55kd9Z8,2701
|
|
899
901
|
mage_ai/shared/http_client.py,sha256=XpZ3DsKlF8b3Obhc8H9TbyjD2ymS2Nm_NkYw1SSf65M,1064
|
|
900
902
|
mage_ai/shared/io.py,sha256=1SbPbg-r-esvszwl800RSG83el-pk8hlUj1vPP0ivaA,1724
|
|
901
903
|
mage_ai/shared/logger.py,sha256=XzKcrKE0hT_G71tUKBQnjIuxxjDthASTffVJ7W5uSZ0,3108
|
|
@@ -970,7 +972,7 @@ mage_ai/tests/data_preparation/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
970
972
|
mage_ai/tests/data_preparation/git/test_git.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
971
973
|
mage_ai/tests/data_preparation/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
972
974
|
mage_ai/tests/data_preparation/models/test_block.py,sha256=bSYx5G_LNKowpud4mc-9-a7cZ3Ai5hsc9e8ZLo4JNOg,17766
|
|
973
|
-
mage_ai/tests/data_preparation/models/test_pipeline.py,sha256=
|
|
975
|
+
mage_ai/tests/data_preparation/models/test_pipeline.py,sha256=Cm873zhPwZjawKn7U2zRKI0CuiHz5uY0xMV5slEpcS8,31507
|
|
974
976
|
mage_ai/tests/data_preparation/models/test_variable.py,sha256=D8goA-1mNRN6vP3OkIxzHuAKt0tr5l3wcr7dbJQ4pm0,4893
|
|
975
977
|
mage_ai/tests/data_preparation/models/block/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
976
978
|
mage_ai/tests/data_preparation/models/block/test_sql.py,sha256=t07mMvpfX8YFy94FCuVWozBupiYrxDdaitbfSbRmGnE,2026
|
|
@@ -1028,9 +1030,9 @@ mage_ai/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
1028
1030
|
mage_ai/utils/code.py,sha256=ne10WwWGxwYUmjfnFS8o3Ml17to2jEeJaGP_Tu2OlFA,737
|
|
1029
1031
|
mage_ai/utils/logger/__init__.py,sha256=o-e5hogCtTW0caELRmvMbeaztks5hwPO7xYUggx2hAQ,2518
|
|
1030
1032
|
mage_ai/utils/logger/constants.py,sha256=k0Lnkz4X36AhSEGvKb5K2sI1iDacv2jXav8AC4JWPD0,271
|
|
1031
|
-
mage_ai-0.8.
|
|
1032
|
-
mage_ai-0.8.
|
|
1033
|
-
mage_ai-0.8.
|
|
1034
|
-
mage_ai-0.8.
|
|
1035
|
-
mage_ai-0.8.
|
|
1036
|
-
mage_ai-0.8.
|
|
1033
|
+
mage_ai-0.8.99.dist-info/LICENSE,sha256=XSS8WC34KIH1c9SeL-rOUlz9YL7vU-8Zz8yPMXSD55E,11351
|
|
1034
|
+
mage_ai-0.8.99.dist-info/METADATA,sha256=Dm8uOHiNE66J1OWPODhEPEirupYnScRMrH72jPBW9ro,21884
|
|
1035
|
+
mage_ai-0.8.99.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
1036
|
+
mage_ai-0.8.99.dist-info/entry_points.txt,sha256=OMjG1dNRclr-6hTA8-KY4DKhCR7FNVPNPcR_fqMf2lY,46
|
|
1037
|
+
mage_ai-0.8.99.dist-info/top_level.txt,sha256=hg9hr-jNWFq9_mVwGpLWLS-X8Yx6iSGpTkqEpTbZEO8,8
|
|
1038
|
+
mage_ai-0.8.99.dist-info/RECORD,,
|