Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[App] Wait for full file to be transferred in Path / Payload #15934

Merged
merged 8 commits into from
Dec 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/lightning_app/core/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,7 @@ def get_lightning_cloud_url() -> str:

def enable_multiple_works_in_default_container() -> bool:
return bool(int(os.getenv("ENABLE_MULTIPLE_WORKS_IN_DEFAULT_CONTAINER", "0")))


# Number of seconds to wait between filesystem checks when waiting for files in remote storage
REMOTE_STORAGE_WAIT = 0.5
2 changes: 2 additions & 0 deletions src/lightning_app/storage/orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def run_once(self, work_name: str) -> None:
name=request.name,
path=maybe_artifact_path,
hash=request.hash,
size=self.fs.info(maybe_artifact_path)["size"],
destination=request.destination,
)
if isinstance(request, _ExistsRequest):
Expand Down Expand Up @@ -139,6 +140,7 @@ def run_once(self, work_name: str) -> None:
path=request.path,
name=request.name,
hash=request.hash,
size=0,
destination=request.destination,
)
if isinstance(request, _ExistsRequest):
Expand Down
9 changes: 5 additions & 4 deletions src/lightning_app/storage/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from fsspec import AbstractFileSystem
from fsspec.implementations.local import LocalFileSystem

from lightning_app.core.constants import REMOTE_STORAGE_WAIT
from lightning_app.core.queues import BaseQueue
from lightning_app.storage.requests import _ExistsRequest, _ExistsResponse, _GetRequest, _GetResponse
from lightning_app.utilities.app_helpers import Logger
Expand Down Expand Up @@ -199,9 +200,8 @@ def get(self, overwrite: bool = False) -> None:
fs = _filesystem()

# 3. Wait until the file appears in shared storage
while not fs.exists(response.path):
# TODO: Existence check on folder is not enough, files may not be completely transferred yet
sleep(0.5)
while not fs.exists(response.path) or fs.info(response.path)["size"] != response.size:
sleep(REMOTE_STORAGE_WAIT)

if self.exists_local() and self.is_dir():
# Delete the directory, otherwise we can't overwrite it
Expand Down Expand Up @@ -340,10 +340,11 @@ def _handle_get_request(work: "LightningWork", request: _GetRequest) -> _GetResp
destination_path = _shared_storage_path() / request.hash
response = _GetResponse(
source=request.source,
name=request.name,
path=str(destination_path),
hash=request.hash,
size=source_path.stat().st_size,
destination=request.destination,
name=request.name,
)

try:
Expand Down
7 changes: 4 additions & 3 deletions src/lightning_app/storage/payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from time import sleep
from typing import Any, Optional, TYPE_CHECKING, Union

from lightning_app.core.constants import REMOTE_STORAGE_WAIT
from lightning_app.core.queues import BaseQueue
from lightning_app.storage.path import _filesystem, _shared_storage_path, Path
from lightning_app.storage.requests import _ExistsRequest, _ExistsResponse, _GetRequest, _GetResponse
Expand Down Expand Up @@ -159,9 +160,8 @@ def get(self) -> Any:
fs = _filesystem()

# 3. Wait until the file appears in shared storage
while not fs.exists(response.path):
# TODO: Existence check on folder is not enough, files may not be completely transferred yet
sleep(0.5)
while not fs.exists(response.path) or fs.info(response.path)["size"] != response.size:
sleep(REMOTE_STORAGE_WAIT)

# 4. Copy the file from the shared storage to the destination on the local filesystem
local_path = self._path
Expand Down Expand Up @@ -234,6 +234,7 @@ def _handle_get_request(work: "LightningWork", request: _GetRequest) -> _GetResp
try:
payload = getattr(work, request.name)
payload.save(payload.value, source_path)
response.size = source_path.stat().st_size
_copy_files(source_path, destination_path)
_logger.debug(f"All files copied from {request.path} to {response.path}.")
except Exception as e:
Expand Down
1 change: 1 addition & 0 deletions src/lightning_app/storage/requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class _GetResponse:
name: str
path: str
hash: str
size: int = 0
destination: str = ""
exception: Optional[Exception] = None
timedelta: Optional[float] = None
Expand Down
12 changes: 10 additions & 2 deletions tests/tests_app/storage/test_copier.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,13 @@ def _handle_exists_request(work, request):
return Path._handle_exists_request(work, request)


@mock.patch("lightning_app.storage.path.pathlib.Path.is_dir")
@mock.patch("lightning_app.storage.path.pathlib.Path.stat")
@mock.patch("lightning_app.storage.copier._filesystem")
def test_copier_copies_all_files(fs_mock, tmpdir):
def test_copier_copies_all_files(fs_mock, stat_mock, dir_mock, tmpdir):
"""Test that the Copier calls the copy with the information provided in the request."""
stat_mock().st_size = 0
dir_mock.return_value = False
copy_request_queue = _MockQueue()
copy_response_queue = _MockQueue()
work = mock.Mock()
Expand All @@ -38,9 +42,13 @@ def test_copier_copies_all_files(fs_mock, tmpdir):
fs_mock().put.assert_called_once_with("file", tmpdir / ".shared" / "123")


def test_copier_handles_exception(monkeypatch):
@mock.patch("lightning_app.storage.path.pathlib.Path.is_dir")
@mock.patch("lightning_app.storage.path.pathlib.Path.stat")
def test_copier_handles_exception(stat_mock, dir_mock, monkeypatch):
"""Test that the Copier captures exceptions from the file copy and forwards them through the queue without
raising it."""
stat_mock().st_size = 0
dir_mock.return_value = False
copy_request_queue = _MockQueue()
copy_response_queue = _MockQueue()
fs = mock.Mock()
Expand Down