Dependencies & cluster requirements
Dependencies & cluster requirements
Dependencies:
- ProphecySparkBasicsScala 0.1.9+
- UC dedicated clusters 14.3+ supported
- UC standard clusters 14.3+ supported
- Livy clusters 3.0.1+ supported
- Adding a prefix or suffix to selected columns.
- Applying a custom expression to selected columns.
Parameters
Example
Assume you have some columns in a table that represent zero-based indices and are stored as long data types. You want them to represent one-based indices and be stored as integers to optimize memory use. Using the BulkColumnExpressions gem, you can:- Filter your columns by long data types.
- Select the columns you wish to transform.
- Cast the output column(s) to be integers.
- Include
column_value + 1in the expression field to shift the indices.

