- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Nifi - PutHDFS - now() time format
- Labels:
-
Apache NiFi
Created ‎06-17-2017 08:50 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
${filename}.${now():toNumber()}
I am newbie when it comes to NIFI . My cluster is managed by Cloudera manager .
I am trying to do simple poc - for checking duplicates files .
I would like to get my file written in HDFS as filename_now_date_timestamps(HH:MM:SS)
I am trying the above expression unable to achive
could anyone help me out this .
Created ‎06-17-2017 04:14 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @Guna sun,
You can use the format function:
https://nifi.apache.org/docs/nifi-docs/html/expression-language-guide.html#now
Example:
${now():format('yyyyMMdd-HHmmss')}
I'd not recommend using the character ":" in file names.
Hope this helps.
Created ‎06-17-2017 04:14 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @Guna sun,
You can use the format function:
https://nifi.apache.org/docs/nifi-docs/html/expression-language-guide.html#now
Example:
${now():format('yyyyMMdd-HHmmss')}
I'd not recommend using the character ":" in file names.
Hope this helps.
