fractal-server 2.14.0a3__py3-none-any.whl → 2.14.0a4__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.
Files changed (47) hide show
  1. fractal_server/__init__.py +1 -1
  2. fractal_server/__main__.py +3 -1
  3. fractal_server/app/history/__init__.py +4 -4
  4. fractal_server/app/history/image_updates.py +124 -143
  5. fractal_server/app/history/status_enum.py +2 -2
  6. fractal_server/app/models/v2/__init__.py +6 -4
  7. fractal_server/app/models/v2/history.py +44 -20
  8. fractal_server/app/routes/api/__init__.py +1 -1
  9. fractal_server/app/routes/api/v2/__init__.py +4 -0
  10. fractal_server/app/routes/api/v2/_aux_functions_history.py +49 -0
  11. fractal_server/app/routes/api/v2/dataset.py +0 -12
  12. fractal_server/app/routes/api/v2/history.py +301 -186
  13. fractal_server/app/routes/api/v2/project.py +0 -25
  14. fractal_server/app/routes/api/v2/status_legacy.py +168 -0
  15. fractal_server/app/routes/api/v2/workflow.py +2 -17
  16. fractal_server/app/routes/api/v2/workflowtask.py +41 -71
  17. fractal_server/app/routes/auth/oauth.py +5 -3
  18. fractal_server/app/runner/executors/local/runner.py +10 -55
  19. fractal_server/app/runner/executors/slurm_sudo/runner.py +171 -108
  20. fractal_server/app/runner/v2/__init__.py +0 -20
  21. fractal_server/app/runner/v2/runner.py +45 -58
  22. fractal_server/app/runner/v2/runner_functions.py +164 -22
  23. fractal_server/app/schemas/_validators.py +13 -24
  24. fractal_server/app/schemas/user.py +10 -7
  25. fractal_server/app/schemas/user_settings.py +9 -21
  26. fractal_server/app/schemas/v2/dataset.py +8 -6
  27. fractal_server/app/schemas/v2/job.py +9 -5
  28. fractal_server/app/schemas/v2/manifest.py +2 -6
  29. fractal_server/app/schemas/v2/project.py +9 -7
  30. fractal_server/app/schemas/v2/task.py +41 -77
  31. fractal_server/app/schemas/v2/task_collection.py +14 -32
  32. fractal_server/app/schemas/v2/task_group.py +10 -9
  33. fractal_server/app/schemas/v2/workflow.py +10 -11
  34. fractal_server/app/security/signup_email.py +2 -2
  35. fractal_server/config.py +31 -32
  36. fractal_server/migrations/versions/fbce16ff4e47_new_history_items.py +120 -0
  37. fractal_server/tasks/v2/templates/2_pip_install.sh +1 -1
  38. fractal_server/tasks/v2/utils_templates.py +6 -0
  39. {fractal_server-2.14.0a3.dist-info → fractal_server-2.14.0a4.dist-info}/METADATA +1 -1
  40. {fractal_server-2.14.0a3.dist-info → fractal_server-2.14.0a4.dist-info}/RECORD +43 -44
  41. fractal_server/app/runner/executors/slurm_sudo/_executor_wait_thread.py +0 -130
  42. fractal_server/app/schemas/v2/history.py +0 -23
  43. fractal_server/migrations/versions/87cd72a537a2_add_historyitem_table.py +0 -68
  44. fractal_server/migrations/versions/954ddc64425a_image_status.py +0 -63
  45. {fractal_server-2.14.0a3.dist-info → fractal_server-2.14.0a4.dist-info}/LICENSE +0 -0
  46. {fractal_server-2.14.0a3.dist-info → fractal_server-2.14.0a4.dist-info}/WHEEL +0 -0
  47. {fractal_server-2.14.0a3.dist-info → fractal_server-2.14.0a4.dist-info}/entry_points.txt +0 -0
@@ -1,23 +0,0 @@
1
- from datetime import datetime
2
- from typing import Any
3
-
4
- from pydantic import BaseModel
5
- from pydantic import field_serializer
6
- from pydantic.types import AwareDatetime
7
-
8
-
9
- class HistoryItemV2Read(BaseModel):
10
- id: int
11
- dataset_id: int
12
- workflowtask_id: int
13
- timestamp_started: AwareDatetime
14
- parameters_hash: str
15
- num_available_images: int
16
- num_current_images: int
17
- images: dict[str, str]
18
- workflowtask_dump: dict[str, Any]
19
- task_group_dump: dict[str, Any]
20
-
21
- @field_serializer("timestamp_started")
22
- def serialize_datetime(v: datetime) -> str:
23
- return v.isoformat()
@@ -1,68 +0,0 @@
1
- """Add HistoryItem table
2
-
3
- Revision ID: 87cd72a537a2
4
- Revises: af1ef1c83c9b
5
- Create Date: 2025-02-18 10:48:16.401995
6
-
7
- """
8
- import sqlalchemy as sa
9
- import sqlmodel
10
- from alembic import op
11
- from sqlalchemy.dialects import postgresql
12
-
13
- # revision identifiers, used by Alembic.
14
- revision = "87cd72a537a2"
15
- down_revision = "af1ef1c83c9b"
16
- branch_labels = None
17
- depends_on = None
18
-
19
-
20
- def upgrade() -> None:
21
- # ### commands auto generated by Alembic - please adjust! ###
22
- op.create_table(
23
- "historyitemv2",
24
- sa.Column("id", sa.Integer(), nullable=False),
25
- sa.Column("dataset_id", sa.Integer(), nullable=False),
26
- sa.Column("workflowtask_id", sa.Integer(), nullable=True),
27
- sa.Column(
28
- "timestamp_started", sa.DateTime(timezone=True), nullable=False
29
- ),
30
- sa.Column(
31
- "workflowtask_dump",
32
- postgresql.JSONB(astext_type=sa.Text()),
33
- nullable=False,
34
- ),
35
- sa.Column(
36
- "task_group_dump",
37
- postgresql.JSONB(astext_type=sa.Text()),
38
- nullable=False,
39
- ),
40
- sa.Column(
41
- "parameters_hash",
42
- sqlmodel.sql.sqltypes.AutoString(),
43
- nullable=False,
44
- ),
45
- sa.Column("num_available_images", sa.Integer(), nullable=False),
46
- sa.Column("num_current_images", sa.Integer(), nullable=False),
47
- sa.Column(
48
- "images", postgresql.JSONB(astext_type=sa.Text()), nullable=False
49
- ),
50
- sa.ForeignKeyConstraint(
51
- ["dataset_id"],
52
- ["datasetv2.id"],
53
- name=op.f("fk_historyitemv2_dataset_id_datasetv2"),
54
- ),
55
- sa.ForeignKeyConstraint(
56
- ["workflowtask_id"],
57
- ["workflowtaskv2.id"],
58
- name=op.f("fk_historyitemv2_workflowtask_id_workflowtaskv2"),
59
- ),
60
- sa.PrimaryKeyConstraint("id", name=op.f("pk_historyitemv2")),
61
- )
62
- # ### end Alembic commands ###
63
-
64
-
65
- def downgrade() -> None:
66
- # ### commands auto generated by Alembic - please adjust! ###
67
- op.drop_table("historyitemv2")
68
- # ### end Alembic commands ###
@@ -1,63 +0,0 @@
1
- """image status
2
-
3
- Revision ID: 954ddc64425a
4
- Revises: 87cd72a537a2
5
- Create Date: 2025-02-28 16:37:38.765883
6
-
7
- """
8
- import sqlalchemy as sa
9
- import sqlmodel
10
- from alembic import op
11
-
12
-
13
- # revision identifiers, used by Alembic.
14
- revision = "954ddc64425a"
15
- down_revision = "87cd72a537a2"
16
- branch_labels = None
17
- depends_on = None
18
-
19
-
20
- def upgrade() -> None:
21
- # ### commands auto generated by Alembic - please adjust! ###
22
- op.create_table(
23
- "imagestatus",
24
- sa.Column(
25
- "zarr_url", sqlmodel.sql.sqltypes.AutoString(), nullable=False
26
- ),
27
- sa.Column("workflowtask_id", sa.Integer(), nullable=False),
28
- sa.Column("dataset_id", sa.Integer(), nullable=False),
29
- sa.Column(
30
- "parameters_hash",
31
- sqlmodel.sql.sqltypes.AutoString(),
32
- nullable=False,
33
- ),
34
- sa.Column(
35
- "status", sqlmodel.sql.sqltypes.AutoString(), nullable=False
36
- ),
37
- sa.Column(
38
- "logfile", sqlmodel.sql.sqltypes.AutoString(), nullable=True
39
- ),
40
- sa.ForeignKeyConstraint(
41
- ["dataset_id"],
42
- ["datasetv2.id"],
43
- name=op.f("fk_imagestatus_dataset_id_datasetv2"),
44
- ),
45
- sa.ForeignKeyConstraint(
46
- ["workflowtask_id"],
47
- ["workflowtaskv2.id"],
48
- name=op.f("fk_imagestatus_workflowtask_id_workflowtaskv2"),
49
- ),
50
- sa.PrimaryKeyConstraint(
51
- "zarr_url",
52
- "workflowtask_id",
53
- "dataset_id",
54
- name=op.f("pk_imagestatus"),
55
- ),
56
- )
57
- # ### end Alembic commands ###
58
-
59
-
60
- def downgrade() -> None:
61
- # ### commands auto generated by Alembic - please adjust! ###
62
- op.drop_table("imagestatus")
63
- # ### end Alembic commands ###