Member since
07-30-2019
333
Posts
356
Kudos Received
76
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
9918 | 02-17-2017 10:58 PM | |
2310 | 02-16-2017 07:55 PM | |
8013 | 12-21-2016 06:24 PM | |
1764 | 12-20-2016 01:29 PM | |
1241 | 12-16-2016 01:21 PM |
06-22-2016
03:06 PM
Hi, is it a custom processor or one of the standard ones?
... View more
06-15-2016
05:11 PM
3 Kudos
Check out the ControlRate processor https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.standard.ControlRate/index.html and a backpressure feature of NiFi https://nifi.apache.org/docs/nifi-docs/html/getting-started.html#connecting-processors
... View more
06-15-2016
02:22 PM
1 Kudo
Milind, NiFi doesn't participate in XA transactions. It would make no sense for it due to the nature of the design - it's a dataflow product vs an atomic orchestrator of transactional events. Having said that, NiFi fully supports internal local transactions, so every transition of your data piece from componentA to componentB is persisted and kept atomic through internal NiFi connections.
... View more
06-08-2016
07:05 PM
1 Kudo
If you're open to technology alternatives - consider NiFi. It will allow you to visually connect your Kafka source, filter the data containing the json path values you need and post them all to the ElasticSearch. All without writing a single line of code.
... View more
06-08-2016
12:03 PM
Some API calls have a recursive and non-recursive attribute, but I wouldn't count on that being ubiquitous. If you're interacting with the API from a command line, I can't recommend 'jq' enough. Pipe the output of e.g. curl call into this JSON parser/query processor. It also adds syntax highlighting as an extra bonus.
... View more
06-08-2016
11:08 AM
2 Kudos
Davide, take a look at https://github.com/aperepel/nifi-api-deploy You can either use this script or peek at how it's doing the template import and instantiation. Good luck!
... View more
06-01-2016
01:48 PM
Can you see the root cause for the error in nifi-app.log? It will tell why it failed to convert the data type.
... View more
06-01-2016
01:43 PM
2 Kudos
Consider wiring your topologies with Storm's Flux. It also allows for property substitution: http://storm.apache.org/releases/current/flux.html
... View more
05-31-2016
03:44 PM
Compressed rolled files aren't supported today, this is called out in the docs. As for runtime schedule - what are the time units? 1 of what? 🙂 Try bumping it more, without having access to a system and flow it's hard to suggest more specific numbers.
... View more
05-26-2016
10:09 PM
Also, check out this discussion, might help https://community.hortonworks.com/questions/29074/publish-jms-processor-failing.html
... View more