Skip to main content
App version: 3.4.8

neptune-fetcher environment variables

Environment variables related to the neptune-fetcher Python package.

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 32.

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

export NEPTUNE_FETCHER_MAX_WORKERS=32

NEPTUNE_WARN_AT_DATAFRAME_SIZE

Python package: neptune-fetcher

Controls how Neptune warns of large fetching results.

Requesting a very large dataset might result in long data fetching. Neptune shows a warning if the number of entries exceeds the number specified by this environment variable.

To disable the warning, set the environment variable to 0.

The default number is 1_000_000 (one million).

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

export NEPTUNE_WARN_AT_DATAFRAME_SIZE=0