- 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: how to fulfill flow with massive of dates in attribute
- Labels:
-
Apache NiFi
Created ‎06-12-2020 09:25 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I want to make several invokeHTTP requests with dates from a date range in its URL.
So I have first date, for example 2020-05-01, and end date - 2020-05-31.
How automatically create massive: 2020-05-01, 2020-05-02, ..., 2020-05-31 and put it into URL.
Thanks in advance!
Created ‎06-12-2020 09:48 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @Maria_pl , generally speaking the approach is as follows:
1. Generate a dummy flow file that will trigger (GenerateFlowFile processor)
2. Next step is UpdateAttribute processor that sets the start date and end date as attributes in the flow file
3. ExecuteScript is next. This can be a python script, or whichever language you prefer, that will use the start and end attributes to list out all the dates in between.
4. If your script produces single file output of dates, you can then use SplitText processor to cut each row into its own flow file and from there each file will have its own unique date in your range.
Hope that makes sense.
Created ‎06-12-2020 09:48 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @Maria_pl , generally speaking the approach is as follows:
1. Generate a dummy flow file that will trigger (GenerateFlowFile processor)
2. Next step is UpdateAttribute processor that sets the start date and end date as attributes in the flow file
3. ExecuteScript is next. This can be a python script, or whichever language you prefer, that will use the start and end attributes to list out all the dates in between.
4. If your script produces single file output of dates, you can then use SplitText processor to cut each row into its own flow file and from there each file will have its own unique date in your range.
Hope that makes sense.
