Python notebooks
Last updated
Last updated
Python notebooks provide a mechanism to interface between the python scientific stack and data on Redivis.
As a general workflow, you'll use the redivis-python library to load data from the table(s) in your project, and then leverage python and its ecosystem to perform your analyses. You can optionally create an output table from your notebook, which can then be used like any other table in your project.
The specific approaches to working with data in a notebook will be informed in part by the size and types of data that you are working with. Some common approaches are outlined below, and you can consult the full redivis-python docs for comprehensive information:
Python notebooks on Redivis are based off the jupyter/pytorch-notebook base image (version cuda12-python-3.12), which contains a variety of common scientific packages for Python running on Ubuntu 24.04. The latest version of the redivis-python library is also installed. To view all installed python packages, run pip list
from within a running notebook.
To further customize your compute environment, you can specify various dependencies by clicking the Dependencies button at the top-right of your notebook. Here you will see three tabs: Packages, pre_install.sh, and post_install.sh.
Use packages to specify the specific python packages that you would like to install via PIP. When adding a new package, it will be pinned to the latest version of that package, but you can specify another version if preferred.
For more complex dependency management, you can also specify shell scripts under pre/post_install.sh
. These scripts are executed on either side of the package installation, and are used to execute arbitrary code in the shell. Common use cases might include using apt
to install system packages (apt-get update && apt-get install -y <package>
), or using mamba
to install from conda, which can be helpful for certain libraries (mamba install <package>
).
For notebooks that reference restricted data, internet will be disabled while the notebook is running. This means that the dependencies interface is the only place from which you can install dependencies; running pip install ...
within your notebook will fail.
Moreover, it is strongly recommended to always install your dependencies through the dependencies interface (regardless of whether your notebook has internet access), as this provides better reproducibility and documentation for future use.
When loading tabular data into your notebook, you'll typically bring it in as some sort of data frame. Specifically, you can load your data as:
The specific type of data frame is up to your preference, though there may be performance and memory implications that will matter for larger tables.
Which data frame should I pick?
Each library has its own interface for analyzing data, and some may be better suited to your analytical needs. It is also easy to interchange between different data frame types, so you need not pick just one. But to offer some guidance:
Keep it standard: pandas
Parallel processing: dask
Fast new kid on the block: polars
Data doesn't fit in memory: pyarrow.Dataset, dask, polars
If your table contains geospatial variable(s), you can take advantage of geopandas to utilize GIS functions and visualization. Calling to_geopandas_dataframe()
on a Redivis table with a variable of the geography type will return an instance of a geopandas.DataFrame, with that variable specified as the data frame's geometry variable.
If your table contains more than one geography variable, the first variable will be chosen as the geometry. You can explicitly specify the geography variable via the geography_variable
parameter.
If you'd prefer to work with your geospatial data as a string, you can use any of the other table.to_* methods. In these cases, the geography variable will be represented as a WKT-encoded string.
Typically, tabular data is loaded into memory for analysis. This is often the most performant option, but if your data exceeds available memory, you'll need to consider other approaches for working with data at this scale.
"Too big for memory" will vary significantly based on the types of analyses you'll be doing, but as a very rough rule of thumb, you should consider these options once your table(s) exceed 1/10th of the total available memory.
Often, the best solution is to limit the amount of data that is coming into your notebook. To do so, you can:
Leverage transforms to first filter / aggregate your data
Select only specific variables from a table by passing the variables=list(str)
argument.
Pre-filter data via a SQL query from within your notebook, via the redivis.query() method.
Pre-process data as it is loaded into your notebook, via the batch_preprocessor
argument.
If your data is still pushing memory limits, there are two primary options. You can either store data on disk, or process data as a stream:
Hard disks are often much larger than available memory, and by loading data first to disk, you can significantly increase the amount of data available in the notebook. Moreover, modern columnar data formats support partitioning and predicate pushdown, allowing us to perform highly performant analyses on these disk-backed dataframes.
All three of these libraries also support various forms of batched processing, which allows you to process your data similar to the streaming methodology outlined below. While it will generally be faster to just process the stream directly, it can be helpful to first load a table to disk as you experiment with a streaming approach:
By streaming data into your notebook, you can process data in batches of rows, avoiding the need to load more than a small chunk of data into memory at a time. This approach is the most scalable, since it won't be limited by available memory or disk. For this, we can use the Table.to_arrow_batch_iterator()
method:
Unstructured data files on Redivis are represented by file index tables, or specifically, tables that contain a file_id
variable. If you have file index tables in your project, you can analyze the files represented in those tables within your notebook. Similarly to working with tabular data, we can either download all files, or iteratively process them:
Redivis notebooks offer the ability to materialize notebook outputs as a new table node in your project. This table can then be processed by transforms, read into other notebooks, exported, or even re-imported into a dataset.
To create an output table, use the redivis.current_notebook().create_output_table()
method, passing in any of the following as the first argument:
A string file path to any parquet file
Redivis will automatically handle any type inference in generating the output table, mapping your data type to the appropriate Redivis type.
If an output table for the notebook already exists, by default it will be overwritten. You can pass append=True
to append, rather than overwrite, the table. In order for the append to succeed, all variables in the appended table, which are also present in the existing table, must have the same type.
As you perform your analysis, you may generate files that are stored on the notebook's hard disk. There are two locations that you should write files to: /out
for persistent storage, and /scratch
for temporary storage.
Any files written to persistent storage will be available when the notebook is stopped, and will be restored to the same state when the notebook is run again. Alternatively, any files written to temporary storage will only exist for the duration of the current notebook session.
The general approach for these disk-backed dataframes is to lazily evaluate our computation, only pulling content into memory after all computations have been applied, and ideally the data has been reduced. The methods to_dask_dataframe()
, to_polars_lazyframe()
, and to_arrow_dataset()
all return a disk-backed dataframe: