Skip to main content
App version: 3.4.14

wait_for_processing()

Python package: neptune-scale

Waits until all metadata is processed by Neptune.

Once the call is complete, the data is saved in Neptune.

Parameters

timeout
float
optional
default: None

In seconds, the maximum time to wait for processing.

verbose
bool
optional
default: True

If True, prints messages about the waiting process.

Returns

  • True if operations were processed successfully
  • False if a time-out or interruption occurred

Example

from neptune_scale import Run


with Run(...) as run:
run.log_configs(...)
...
run.wait_for_processing()
run.log_metrics(...) # called once submitted data has been processed