Convert Eventhub Body Column from Binary to String
BinaryToStringTransformer
Bases: TransformerInterface
Converts a dataframe body column from a binary to a string.
Example
from rtdip_sdk.pipelines.transformers import BinaryToStringTransformer
binary_to_string_transformer = BinaryToStringTransformer(
data=df,
souce_column_name="body",
target_column_name="body"
)
result = binary_to_string_transformer.transform()
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
DataFrame
|
Dataframe to be transformed |
required |
source_column_name |
str
|
Spark Dataframe column containing the Binary data |
required |
target_column_name |
str
|
Spark Dataframe column name to be used for the String data |
required |
Source code in src/sdk/python/rtdip_sdk/pipelines/transformers/spark/binary_to_string.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
|
system_type()
staticmethod
Attributes:
Name | Type | Description |
---|---|---|
SystemType |
Environment
|
Requires PYSPARK |
Source code in src/sdk/python/rtdip_sdk/pipelines/transformers/spark/binary_to_string.py
56 57 58 59 60 61 62 |
|
transform()
Returns:
Name | Type | Description |
---|---|---|
DataFrame |
DataFrame
|
A dataframe with the body column converted to string. |
Source code in src/sdk/python/rtdip_sdk/pipelines/transformers/spark/binary_to_string.py
79 80 81 82 83 84 85 86 |
|