Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. D s config
  2. Set the following parameter to true:

    Code Block
    "webapp.enableProfilePicture" : true,
  3. Save your changes and restart the platform.

Disable enforced type casting

For non-schematized outputs, 

D s product
 enforces casting of all values to the annotated data type of the column by default. For example, if the output value is -3.4 and the data type for the output column is Integer, the platform enforces Integer type casting and writes a null value instead.

This behavior is governed by the following parameter: webapp.enableTypecastOutput

Parameter SettingDescriptionImplications on Mismatched Values
true(Default) All output values are forced to match the data type of the output columns.Mismatched values are written as null values.
false

All output values are written in their output form, regardless of the column's data type.

  • This behavior is the default for
    D s product
    productgdp
    and
    D s product
    productsaas
    .
Mismatched values are written as-is.

Steps:

  1. D s config
  2. Set the following parameter accordingly:

    Code Block
    "webapp.enableTypecastOutput" : true,
  3. Save your changes and restart the platform.

Disable flow sharing

The flow sharing feature enables a user to share a flow with another user for collaboration. In this manner, a single source of truth can be retained as multiple users collaborate to transform the flow's datasets into the desired output. See Overview of Sharing.

...