Introduction
The legacy profiler for file and mainframe connectors is deprecated as of release 24.0. It will reach End of Life and be removed from Delphix Continuous Compliance in a further four months in release 28.0. All legacy profiling will reach End of Life at that time. Only ASDD profiling will be available from release 28.0 and onward.
This guide explains how to check if you are using the legacy profiler in any profiling jobs and how to update these jobs to use the Automated Sensitive Data Discovery (ASDD) profiler.
This notice applies to both file and mainframe connectors. A notice for database connectors was released previously.
How to identify if you are affected
Using the API
-
Log into the API client
-
Call the GET /profile-sets/usage endpoint with the following filters:
-
profileSetType: LEGACY
-
connectorType: FILE or MAINFRAME
- Any profile sets returned with jobIds are using the legacy profile sets on the selected connector type. For example:
{
"responseList": [
{
"profileSetName": "Financial - Legacy",
"jobIds": [
3
]
},
{
"profileSetName": "HIPAA - Legacy",
"jobIds": []
},
{
"profileSetName": "Standard",
"jobIds": []
}
]
}
This API response indicates that the Financial - Legacy profile set is being used by job ID 3. For more information about the profile set assignment, set the query parameter includeAssignmentDetail to true when making the API call. This will provide the assignment details as follows for the Financial - Legacy profile set:
"assignmentDetails": [
{
"assignmentType": "FILE",
"asddProfileSet": false,
"environmentName": "testenv",
"environmentId": 1,
"jobName": "delimited",
"jobId": 3,
"rulesetName": "delimited",
"rulesetId": 5
}
New and Improved Functionality
Delphix is deprecating this functionality due to the introduction of a newer profiling capability introduced in Continuous Compliance version 9.0. The Automated Sensitive Data Discovery (ASDD) profiler uses classifiers that expand beyond the current capabilities of the profiler expressions associated with the legacy profiler. Delphix will continue to develop and refine built-in classifiers in future releases.
The following resources provide helpful information on the new ASDD profiler and classifiers:
How to move to the ASDD Profiler
If the above steps show that you are currently using the legacy profiler for file and/or mainframe connections, follow these steps to move to the new ASDD profiler:
-
Choose a classifier-based profile set to replace the current use of a legacy profile set.
-
To create a new ASDD profile set in the UI, follow the instructions on Adding a Profile Set for the ASDD Profiler
-
To create a new ASDD profile set in the API, use the endpoint POST /profile-sets with a request similar to the following:
-
If the HIPAA - Legacy, Financial - Legacy, or Standard profile sets are in use unmodified, we suggest switching to the ASDD Standard profile set as it covers everything in these profile sets plus more. More classifiers are available each release for this profile set as well. More information about upgrading the ASDD Standard profile set can be found here.
-
If a custom profile set is being used or any of the above profile sets have been customized, a new profile set must be created that contains the desired classifiers. These profile sets can be configured via the UI or API. If the provided classifiers are not sufficient, custom classifiers can be configured via the UI or API. See Managing classifiers for more information on configuring classifiers. If further assistance is needed, please reach out to professional services or your CSM.
{
"profileSetName": "New ASDD Profile Set",
"classifierIds": [
1,
2,
3,
4
]
}
2. Once you have an ASDD profile set to use, change all uses of the legacy profile set to the new one via the UI or API.
-
-
Via UI:
-
To change the profile set via the UI, navigate to the associated environment and job that uses the profile set. This information can be found in the output of the call to GET /profile-sets/usage described above.
-
Click the Edit button next to the job and a popup will appear.
-
In the Profile Sets dropdown, choose the desired ASDD profile set.
-
Click Save.
-
Via API:
-
To change the profile set via the API, navigate to the API client and use the endpoint PUT /profile-jobs/{profileJobId}
-
Specify the profile job ID.
-
Provide a request similar to the following where profileSetId is the ID of the desired ASDD profile set:
{
"jobName": "delimited",
"profileSetId": 1,
"rulesetId": 5
}
Once the call to GET /profile-sets/usage endpoint with the profileSetType=LEGACY and connectorType=FILE or MAINFRAME no longer returns any jobs, all file/mainframe connector profiling jobs using the legacy profiler will have successfully been updated to use the new ASDD profiler.
#eol
#masking_profiling
#profiling
#24.0.0.0