Skip to main content
App version: 3.4.13

neptune-fetcher environment variables

Environment variables related to the neptune-fetcher Python package.

NEPTUNE_HTTP_REQUEST_TIMEOUT_SECONDS

Python package: neptune-fetcher

Controls HTTPX timeouts. The timeout is in seconds and applies to individual networking operations, such as connect, read, and write.

The default duration is 60.

Append a line with the export command to your .profile or other shell initialization file:

export NEPTUNE_HTTP_REQUEST_TIMEOUT_SECONDS=120

NEPTUNE_FETCHER_MAX_WORKERS

Python package: neptune-fetcher

Controls the number of workers in the thread pool, when using the use_threads parameter of the prefetch_series_values() method.

The default number is 10.

Append a line with the export command to your .profile or other shell initialization file:

export NEPTUNE_FETCHER_MAX_WORKERS=20