Before you begin
You have downloaded Talend Data Preparation 2.8.
Procedure
- Stop your instance of Talend Data Preparation 1.x/2.x but keep MongoDB running.
-
Backup your MongoDB, while it is still running, using the following command:
mongodump -h <source_mongodb_host>:<source_mongo_port> -d <source_database> -u <source_mongodb_user> -p <source_mongodb_password> -o <dump_output>
For more information; see the MongoDB documentation. - Stop your MongoDB instance.
-
Install MongoDB 3.4.2 and start it.
Talend Data Preparation 2.8 uses the 3.4.2 version of MongoDB.
-
Install Talend Data Preparation 2.8 with
the external MongoDB, and configure it with the same settings as your 1.x/2.x
instance, especially the links to your Talend Administration Center and point to MongoDB
3.4.2.
For more information about the Talend Data Preparation installation and configuration procedures, see Installing and configuring Talend Data Preparation.
- If you have performed any custom configuration to the 1.x/2.x version of the <Data_Stewardship_Path>/conf/data-stewardship.properties file, update the 2.8 version of the file by coping the values from the old configuration file.
-
To retrieve the content of the dataset storage folder used for Talend Data Preparation 1.x/2.x, and migrate it
to version 2.8, complete the next step according to the your situation:
- If you have never modified the value of the
dataset.content.store.file.location
property, copy the content of the <Data_Preparation_Path>/data/store/datasets/content folder used in 1.x/2.x, and paste it in the 2.8 installation folder, following the same path. - If you have set a custom value for the
dataset.content.store.file.location
property, make sure that you set the same value in the application.properties file for the 2.8 version.
- If you have never modified the value of the
- Start Talend Data Preparation 2.8.
-
Stop Talend Data Preparation 2.8.
These two steps are necessary for the migration process to work.
- Start the MongoDB instance of Talend Data Preparation.
-
Drop the database of the Talend Data Preparation 2.8 MongoDB:
-
Open a mongo shell as Talend Data Preparation database user
and execute the following commands:
cd <install_dir>/mongodb/bin ./mongo dataprep -u dataprep-user -p dprep --port 27017
-
Switch to Talend Data Preparation
database:
use dataprep
-
Drop the database:
db.runCommand( { dropDatabase: 1 } )
-
Exit mongo shell:
exit
-
Open a mongo shell as Talend Data Preparation database user
and execute the following commands:
-
Restore the backup performed on the 1.x/2.x MongoDB, on the 2.8 MongoDB
instance using the following command:
mongo_path>/bin/mongorestore -h <mongo_host>:<mongo_port> -u <mongo_tdp_username> -p <mongo_tdp_password> -d <mongo_tdp_database> <backup_location>
- Start Talend Data Preparation 2.8.
Results
You are now ready to use Talend Data Preparation 2.8.