Member since
12-20-2018
21
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3144 | 02-27-2019 09:30 AM |
07-01-2019
05:20 PM
I really appreciated your work. I bookmarked this page.
... View more
06-25-2019
08:27 AM
Hello @Yuma I, how did you read modbus data with nifi? Can you share your custom processor?
... View more
04-27-2019
11:23 AM
Hello @Vasilis Vagias, some other tutorials state that "NOTE: ExecuteScript will perform a session.commit() at the end of each execution to ensure the operations have been committed. You do not need to (and should not) perform a session.commit() within the script." (Source:Link ) Do we really need to use commit statement?
... View more
02-27-2019
09:37 AM
Thanks Chris, it is also my use case for NiFi. Can you provide a download link for the template? Thanks.
... View more
02-27-2019
09:30 AM
I've fixed it by using RouteOnAttribute to http.request.url attribute.
... View more
02-26-2019
06:45 PM
I've investigated a bit more and I've found this. "http.request.url" attribute has an "http://localhost:8011/favicon.ico" value for one of them and the other one has "http://localhost:8011".
... View more
02-26-2019
04:17 PM
Hi, I need to handle an HTTP request and I need to respond an HTML file with NiFi. My flow is like HandleHttpRequest -> ExecuteSQL -> HandleHttpResponse. I need to query our database to show proper HTML result. My problem is HandleHttpRequest runs twice for each request when triggered by browsers such as Chrome, Firefox. HandleHttpRequest runs once if I use Postman or SoapUI. I've tried to eliminate the second call by using HashContent and DetectDuplicate but it makes some of our requests fail. I've investigated the issue and I've found that Chrome and Firefox creates an additional request for displaying favicon and sometimes some other reasons. (Link) I need to find real request and I need to eliminate other requests. The real request can be the second one depending on the browser status. Browser decides when to create new requests and their orders. So, my question is how can I run my flow exactly one time when user creates request from their browser? Because I do some operations on the database and second call ruins these operations. Thanks.
... View more
Labels:
- Labels:
-
Apache NiFi
02-20-2019
08:34 AM
Thanks, Matt. Very informative for beginners like me.
... View more
02-20-2019
08:19 AM
You may need to review logs for more information \logs\nifi-app.log and \logs\nifi-user.log. There is also a log level switch but I can't remember the location. Good luck.
... View more
02-20-2019
08:04 AM
You may use ExecuteSQL processor for that. You can write custom SQL query with that processor.
... View more