Member since
07-30-2018
49
Posts
7
Kudos Received
7
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3913 | 11-22-2021 08:37 AM | |
| 2370 | 11-01-2021 08:33 AM | |
| 2473 | 12-08-2020 09:27 AM | |
| 4332 | 10-14-2020 03:58 AM | |
| 1949 | 10-12-2020 10:29 AM |
11-22-2021
08:42 AM
@toninghaywi Looks like you are trying to enable TLS for NiFi UI. Please make sure all the properties are correctly configured and the service should start fine. If you are not trying to enable the TLS for NiFi and still you are seeing this issue then you can try to remove all the TLS related properties from CM > NiFi > Configs.
... View more
11-22-2021
08:37 AM
1 Kudo
@mt13 Looking at this It seems like the property nifi.cluster.protocol.heartbeat.missable.max made configurable on NiFi 1.12, before this it is using the default value of 8. Which is the reason you are not able to get the expected timeframe results. But instead of looking to tune the timeouts to higher values, you should look to tune the dataflow designs. The lack of heartbeat is mostly occurring due to high resource utilization either memory or CPU or network. The choice of processors and incoming data has to be analyzed for a more stable cluster. In NiFi-1.12 a new feature was added to review the node status history from NIFi UI > Global Menu > Node Status History. It shows the resources utilization in graphical form for each node which would be a great indicator to analyze the load, incoming traffic, heap utilization, etc.
... View more
11-01-2021
08:33 AM
1 Kudo
@Chakkara The behavior you are seeing is looking similar to NIFI-8470 . A quick fix for the issue on NiFi-1.13 is to alter the table column to varchar. The behavior introduced by NIFI-8223 . This is fixed in NiFi 1.14 so an upgrade can be done if table schema alter is not an option.
... View more
01-18-2021
02:40 AM
@Law serveraddress is hostname of host where nifi service is installed. E.g you have installed it on samplehost.com then it would be "http://samplehost.com:8080/nifi" .If you enable SSL for nifi later then the URL will change to "https://samplehost.com:<secure_port>/nifi". Also you should check that host and port are reachable from your browser to access NiFi UI. If this answer resolves your issue or allows you to move forward, please choose to ACCEPT this solution and close this topic. If you have further dialogue on this topic please comment here. -Akash
... View more
12-08-2020
09:27 AM
Jaro, nipiapi Windows automated testing not attempted. Are there any particular things you want to achieve using nipiapi+Windows combination? -Akash
... View more
12-08-2020
09:05 AM
@DarkStar Is the join query works fine on PostgreSQL CLI? If yes, then what is the jdbc driver you are using? is that jdbc version supports joins with duplicate fields? It looks like you have T1.track_id and T3.track_id which are conflicting. May be can you try to change the field name, test it on psql CLI and then test again in NiFi ? -Akash
... View more
10-14-2020
03:58 AM
@justenji The timestamp details are not exposed by NiFi on Flow but NiFi does maintain it in flow history. [Only if NiFi is secured with SSL] So you can try https://${hostname}:${NIFI_PORT}/nifi-api/flow/history/components/{componentId} to get the details. But it will provide all history of that component you have to parse it as per your need. Note that this info gets purged as per flow history parameters in nifi.properties so you will have these details not from beginning but beginning of the date [days/hours] mentioned in properties. If you are looking for flow timestamp when it is exported to NiFi-Registry then checkout for https://${hostname}:${NR_PORT}//nifi-registry-api/buckets/{bucketId}/flows/{flowId} Br, Akash
... View more
10-12-2020
10:29 AM
@sunile_manjee I am not very familiar with AWS ELB but you can try to use HandleHttpRequest and HandleHttpResponse processors and check if it serves your use case
... View more
10-12-2020
09:57 AM
@justenji It is not possible yet to get all info in one NiFi API call as you desired but you can try below call to get the versioning info about particular process group curl -v -X GET "https://$HOSTNAME:9091/nifi-api/versions/process-groups/{id}" -H "Authorization: Bearer $TOKEN" -H "Connection: close" -k Br, Akash
... View more
08-24-2020
08:56 AM
@Koffi Can you try to lower the initial memory and restart the service please?
... View more