Jump to: navigation, search

How to use the Workbench 8.5 GDPR Data Purge Utility

The Workbench 8.5 GDPR - Data Purge Utility (DPU) is designed to allow deletion of data from the Workbench Cassandra database tables and Workbench log files older than a set number of days. This tool needs to be run from the command line as a standalone java application, and is named DataPurgeUtility.jar.

DPU provides two functions in one tool:

  1. To delete any records older than 30 days, from all main Cassandra DB tables, and
  2. To delete all Workbench log files older than 30 days.
Important
Once the data is deleted using DPU, it is unrecoverable. Workbench 8.5 will then display reduced data based on the data that are purged.

Steps to follow when running Data Purge Utility:

  1. Stop Workbench application and confirm that all the processes on the Workbench server have terminated. This can be confirmed using the Task Manager on Windows and using ps -aelf | grep java and ensuring that all the java processes for karaf and Cassandra are no longer seen.
  2. If they still persist, manually kill them using the following instructions:

    1. Windows:
      1. Start Task Manager
      2. Locate the java process for Cassandra or karaf
      3. Right click and select End Process
    2. Linux:
      1. Run ps -aelf | grep java
      2. Identify the process ID for karaf or Cassandra and then execute: kill -9 <process id>
  3. Start Cassandra:
    1. Windows:
      1. Create a command prompt at <WORKBENCH_INSTALLATION_FOLDER>
      2. Run: cassandra\bin\cassandra.bat
    2. Linux:
      1. cd to <WORKBENCH_INSTALLATION_FOLDER>
      2. run: Cassandra/bin/Cassandra
  4. Run Data Purge Utility and wait until it completes its execution.
  5. Below is an example of the syntax to be used. This command should be run from a command prompt in the directory of the DPU tool:
    java -jar DataPurgeUtility.jar -h 127.0.0.1 -p 9042 -d 30 -f table_specs.txt -log_path "<WORKBENCH_INSTALLATION_DIRECTORY>" -cassandra_bin_path c:\GCTI\WB_server\cassandra\bin -perform_compaction -cassandra_jmx_port 17199
    This command deletes all database records and WorkBench log files older than 30 days and performs database compaction.

  6. Stop Cassandra manually by following 1.a or 1.b above.
  7. Start Workbench.

Following are descriptions of the parameters for this utility.

    Mandatory Parameters

  1. -h <ip>: It specifies the IP address of where the Cassandra Database server is running. Typically, the same as the Workbench host.
  2. -p <port>: It specifies the port used by the Cassandra Database server is running. This is the value of the Database Transport Port set during Workbench installation.
  3. –d <# of days>: It specifies the retention period in number of days. Table records older than the specified number of days will be deleted.
  4. Important
    In order to meet GDPR requirements, we recommend running the Genesys Care Workbench - Data Purge Utility regularly to ensure no more than 30 days of data is kept. This can be done by using a combination of how frequently you execute the tool and the retention period set with the -d option. For example setting -d 20 requires to run the tool every 10 days.

    Cassandra Database Table Deletion Parameters

  5. In order to examine and remove the Cassandra Table Data, follow one of the two following sets of specifications:
    1. This set can be used for an individual table i.e. if data from only one table needs to be examined.
      1. -t <tablename>: The name of the table from which data will be removed if it satisfies the criteria
      2. –c <columnname>: The name of the column that holds the timestamp.
      3. –a <additional key names>: The name(s) of other columns that are part of the primary key until the column that holds timestamp.
      4. –pk<0 or 1>: Whether or not the column that holds timestamp is part of the partition key. 0 indicates No and 1 indicates Yes.
      5. –prk<0 or 1>: Whether or not the column that holds timestamp is a part of the Primary key. 0 indicates No and 1 indicates Yes.
    2. If there are more tables that need their data examined and removed if needed, then the following specification is used:
      1. –f <filename>: Full path of the file that contains one line per table. Each line contains the five parameters explained above for each table. Please note that if this option is specified, the five specifications in 4.a. above will be ignored even if additionally specified. (See File Format section below for details.)
  6. -set_ttl: If present, the Time-To-Live property (in seconds) corresponding to the specified number of days is set for the tables.
  7. For Example: To perform Cassandra compactions and set ttl (time-to_live)
    java -jar DataPurgeUtility.jar -h 135.17.180.184 -p 9042 -cassandra_bin_path c:\GCTI\WB_server\cassandra\bin -perform_compaction -cassandra_jmx_port 17199 -set_ttl

  8. -tombstone_seconds <integer value>: This is an optional parameter that contains the value of gc_grace_seconds Cassandra Table property. This property will be temporarily set to the specified value and later restored to the default value of 8640000 after the deletion of data. This option can be used if an error is encountered during the data deletion and will help to work around the failure(s) due to greater than the maximum allowed tombstone entries. See Troubleshooting for more details.
  9. Cassandra Compaction Parameters

    The usage of these compaction options is recommended to reduce the disk usage of Cassandra but is not mandatory.

  10. -cassandra_bin_path <full path>: This specifies the full path for the bin where the Cassandra utilities are located.
  11. -perform_compaction: If present, Nodetool Compact from the Cassandra bin folder will be executed at the end of the operation.
  12. -cassandra_jmx_port: JMX Port that was used when installing Workbench. If not specified, default value of 7199 will be used when invoking Nodetool command.
  13. Tip
    It is highly recommended to run the above compaction parameters after any deletion of the records from the Cassandra database to optimize the memory usage.

    Log File Deletion Parameters

  14. –log_path <full path>: This is an optional parameter that contains the full path (not relative) to a folder. Any file in that folder that has a last modified timestamp older than the specified number of days will be removed. This option can be used to remove Workbench logs older that the specified number of days.
  15. -recursive: While deleting the log files, the utility would look for log files in sub-directories if this flag is specified.
  16. -log_file_extensions <extensions>: These are comma separated file extensions that are considered to be log files. While deleting these log files, the utility will look files with these extensions and other rotated files and delete them only if they are older than the specified number of days.
  17. For Example: -log_file_extensions log – This will look for all *.log, *.log.<count> files for deletion. The *.log.<count> files are rotated files (Example: def.log.9).

This page was last edited on November 29, 2019, at 14:41.
Comments or questions about this documentation? Contact us for support!