Member since
09-29-2015
142
Posts
45
Kudos Received
15
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1690 | 06-08-2017 05:28 PM | |
6172 | 05-30-2017 02:07 PM | |
1540 | 05-26-2017 07:48 PM | |
3842 | 04-28-2017 02:48 PM | |
2350 | 04-28-2017 02:41 PM |
04-28-2017
02:41 PM
Take a look at the ExtractText processor and see if it meets your needs: https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.standard.ExtractText/index.html
... View more
02-27-2017
08:59 PM
The description of Nifi functions ends with the statement, After evaluating expression language functions, all attributes are stored as type String. https://nifi.apache.org/docs/nifi-docs/html/expression-language-guide.html#functions How do you plan to use the attribute down stream? If you're just looking for a way to have your output become an attribute, the following page has a nice example, http://funnifi.blogspot.com/2016/02/executescript-processor-hello-world.html
... View more
01-27-2017
03:12 PM
Arun, yes, timestamp is a supported datatype. Here is a link to the doc: https://avro.apache.org/docs/1.8.1/spec.html#Logical+Types
... View more
01-06-2017
08:41 PM
You can read messages to the console from a particular offset using the Simple Consumer CLI: https://cwiki.apache.org/confluence/display/KAFKA/System+Tools Search for Simple Consumer.
... View more
12-20-2016
04:44 PM
1 Kudo
It wasn't clear to me from this thread...have you shut down both ambari and the ambari-agent? If not, I would perform the following: Stop ambari. Stop the agent. Start ambari. Start the agent with the command, ambari-agent start --verbose. Then perhaps include the ambari-agent log as an attachment.
... View more
12-19-2016
05:35 PM
1 Kudo
Can you make sure that only one ambari-agent is running: ls -la /var/run/ambari-agent/ There should be one pid file.
... View more
12-16-2016
07:58 PM
Not sure about the Ranger re-installation, but it looks like the MySQL SQLException is occurring because you have left out the server name in the -cstring option.
... View more
12-16-2016
07:24 PM
1 Kudo
Also, you may want to take a look at the ambari logs to see if there is anything helpful: /var/log/ambari-server/ambari-server.log /var/log/ambari-agent/ambari-agent.log
... View more
12-16-2016
03:40 PM
2 Kudos
I don't think the idle processes are your problem. It is normal to see these when using Postgres. They are related to the connection pool that Ambari uses with Postgres.
... View more
11-14-2016
05:50 PM
Between two processors, you define a relationship. So you probably already established a relationship from the SplitJSon to another processor, and it is configured for the ‘split’ relationship. You can setup another relationship and configure it as the ‘original’ relationship. So between two processors, right click on the relationship and you should see three check boxes. One for original, split, and failure.
... View more