Support Questions

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

Get the last day of the month

avatar
Contributor

Hi, please, how can I get the last day of the month of given date in NiFi?

Step 1 could be taking the month out of the given date

Step 2 getting the last day or date of the month taken from step 1

 

Thanks a lot.

1 ACCEPTED SOLUTION

avatar
Master Collaborator

You will need to get both the year and the month of the original date (because of the leap year considerations). In terms of how to accomplish this in NiFi one way is to use ExecuteScript processor and Python's calendar library with the function calendar.monthrange(year,  month) that returns the last day of month as the second argument. 

View solution in original post

1 REPLY 1

avatar
Master Collaborator

You will need to get both the year and the month of the original date (because of the leap year considerations). In terms of how to accomplish this in NiFi one way is to use ExecuteScript processor and Python's calendar library with the function calendar.monthrange(year,  month) that returns the last day of month as the second argument.