Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Nifi - PutHDFS - now() time format

avatar
Explorer
${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 .

1 ACCEPTED SOLUTION

avatar

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.

View solution in original post

1 REPLY 1

avatar

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.