Support Questions

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

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.