Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

BDR - HDFS - exclusion

avatar
Rising Star

Hi, In BDR HDFS replication I want to exclude all files which end with ".tmp" in the directory "/backups/"

 

Appreciate it if somebody could give the expression for this to add in BDR "Add Exclusion". 

 

Thanks

1 ACCEPTED SOLUTION

avatar
Master Collaborator

Hi, @vtpcnk Greetings!

Thank you for posting in Cloudera Community.

 

You can use a RegEx pattern like this, Try this out:

CM > Backup > Schedules > Actions > Edit Configurations > Advanced > Path Exclusion

^(?!.*.tmp).*$

For more information, here are some nicer reads:

Section 7: CLDR Doc (Adding Exclusion) 

How-to: Building/Testing RegEx

 

Hope this helps!

 

Is your question answered? If Yes, Feel free to mark the answer as "Accept as Solution".
If you find a reply helpful, say thanks by clicking on the "thumbs-up" button.

View solution in original post

3 REPLIES 3

avatar
Rising Star

BTW files with ".tmp" extension could be under any subdirectory under "/backups".

 

Thanks.

avatar
Master Collaborator

Hi, @vtpcnk Greetings!

Thank you for posting in Cloudera Community.

 

You can use a RegEx pattern like this, Try this out:

CM > Backup > Schedules > Actions > Edit Configurations > Advanced > Path Exclusion

^(?!.*.tmp).*$

For more information, here are some nicer reads:

Section 7: CLDR Doc (Adding Exclusion) 

How-to: Building/Testing RegEx

 

Hope this helps!

 

Is your question answered? If Yes, Feel free to mark the answer as "Accept as Solution".
If you find a reply helpful, say thanks by clicking on the "thumbs-up" button.

avatar
Master Collaborator

Hello @vtpcnk

Good Day!

 

Circling back to see if my post helped you with this task.

If yes, Please mark the answer as "Accept as Solution". So this will be highlighted as solution to this ask for other users in our community.

 

V