Contents:
This section contains miscellaneous configuration topics to enable minor features of the platform.
Limits
For more information, see Configure Application Limits.
Supported Extensions
By default, the Designer Cloud Powered by Trifacta® platform will allow you to upload any file. However, the platform may not be able to process some of them, as the list of supported file extensions is limited. For more information, see Supported File Formats.
When you upload a file with an unsupported file extension, a warning is displayed, and the file may fail to load in the Transformer page.
As needed, you can add extensions to the list of supported file formats, so that no warning is displayed when a file of the specified type is imported.
- Extensions are case-sensitive.
.xml
and.XML
must both be listed. - A leading period is required.
NOTE: The Designer Cloud Powered by Trifacta platform prevents the uploading of files with extensions that are disabled through specific configuration flags. For example, if you disable BZIP2 or Avro files, you cannot re-enable them by adding their extensions to this configuration list.
Steps:
- You can apply this change through the Admin Settings Page (recommended) or
trifacta-conf.json
. For more information, see Platform Configuration Methods. Locate the following parameter and add file extensions. In the example, two new extensions have been added to the list:
"webapp.client.additionalAllowedFileExtensions": [".log",".LOG"],
- Save your changes and restart the platform.
Feature Flags
Disable parameterization
By default, Designer Cloud Enterprise Edition supports the application of parameters to imported datasets. Datetime, wildcard, or variable parameters can be used to operationalize execution of jobs on different versions of the same dataset. For example, if a new dataset is dropped in the same folder each day with a different date value in the filename, you can apply parameters to the imported dataset to ensure that all matching datasets in the directory can be executed. For more information, see Overview of Parameterization.
To disable this feature, please complete the following steps.
Steps:
- You can apply this change through the Admin Settings Page (recommended) or
trifacta-conf.json
. For more information, see Platform Configuration Methods. Set the following parameter to
false
:"feature.parameterization.enabled" : false,
- Save your changes and restart the platform.
Disable target schema matching
By default, Designer Cloud Enterprise Edition enables you to create target schemas for each recipe in your dataset. These schemas are represented in the Transformer page as a panel above the column headers. For more information, see Overview of Target Matching.
If you prefer to disable this feature, please complete the following steps.
Tip: If there is no schema associated with a recipe, then the target schema matching features are not displayed.
Steps:
- You can apply this change through the Admin Settings Page (recommended) or
trifacta-conf.json
. For more information, see Platform Configuration Methods. Set the following parameter to
false
:"feature.targetMatching.enabled" : false,
- Save your changes and restart the platform.
Enable uploading profile pictures
Optionally, you can configure the platform to all users to upload images to be used as their profile pictures. See User Profile Page.
Steps:
- You can apply this change through the Admin Settings Page (recommended) or
trifacta-conf.json
. For more information, see Platform Configuration Methods. Set the following parameter to
true
:"webapp.enableProfilePicture" : true,
- Save your changes and restart the platform.
Disable enforced type casting
For non-schematized outputs, Designer Cloud Enterprise Edition 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 Setting | Description | Implications 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.
| Mismatched values are written as-is. |
Steps:
- You can apply this change through the Admin Settings Page (recommended) or
trifacta-conf.json
. For more information, see Platform Configuration Methods. Set the following parameter accordingly:
"webapp.enableTypecastOutput" : true,
- 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.
Flow sharing is enabled by default. To disable flow sharing, please complete the following steps.
Steps:
- You can apply this change through the Admin Settings Page (recommended) or
trifacta-conf.json
. For more information, see Platform Configuration Methods. Set the following parameter to
false
:"feature.flowSharing.enabled" : true,
- Save your changes and restart the platform.
Disable column lineage recipe highlighting
By default, the Designer Cloud application can display lineage highlighting of applicable steps for a selected column. When enabled, you can select Show related steps from a column's drop-down menu, and all recipe steps that reference the column are highlighted in the recipe panel.
Please complete the following steps to disable this feature.
Steps:
- You can apply this change through the Admin Settings Page (recommended) or
trifacta-conf.json
. For more information, see Platform Configuration Methods. Set the
webapp.enableColumnLineageScriptHighlighting
configuration flag tofalse
:"webapp.enableColumnLineageScriptHighlighting": false,
- Save your changes and restart the platform.
Disable custom types
By default, you can create custom data types in Designer Cloud Enterprise Edition based off of a regular expression or an uploaded custom dictionaries of values. When a column is set to a custom data type, the values in the column are validated against the type specification.
After a custom data type has been created, it cannot be removed from the platform.
- For more information on creating custom data types using dictionary files, see Create Custom Data Types.
For more information on creating custom data types using regular expression, see Create Custom Data Types Using RegEx.
NOTE: Use of regular expressions is considered a developer-level skill.
To disable this feature, please complete the following steps.
Steps:
- You can apply this change through the Admin Settings Page (recommended) or
trifacta-conf.json
. For more information, see Platform Configuration Methods. Set the following to
false
:"feature.enableCustomTypes": false,
- Save changes and restart the platform.
Other Configuration Topics
This page has no comments.