Member since
07-30-2019
333
Posts
357
Kudos Received
76
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
10114 | 02-17-2017 10:58 PM | |
2405 | 02-16-2017 07:55 PM | |
8130 | 12-21-2016 06:24 PM | |
1803 | 12-20-2016 01:29 PM | |
1275 | 12-16-2016 01:21 PM |
01-16-2017
09:14 AM
One question.. Does the ID of a Processor or ProcessFlow change if NiFi is rebooted?
... View more
11-04-2015
06:31 PM
Thanks Mark, so this is a quick way to search for 'expected' components and get an actual ID handle to work with them next. My use case is programmatic flow control through an API.
... View more
08-31-2018
07:55 AM
Very old topic, but still valid. Do I understand it right, if we have no provenance enabled, it makes no sense to have the content repo archive enabled? If both is enabled, how can we recover a single flow, via the provenance window?
... View more
10-30-2015
09:35 PM
1 Kudo
If you are asking about iptables then iptables = on port exceptions stays on or knox plays its charm.
... View more
06-07-2016
05:53 PM
1 Kudo
i spent 5 hours to find the proper code for downloading the latest JDK which is 1.8_92 currently. Guys be aware that the oracle website needs you to accept the license and you have to put it in you command line. the following code is working perfectly. enjoy # sudo wget --no-cookie --no-check-certificate --header "Cookie:gpw_e24=http%sA2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u92-b14/jdk-8u92-linux-x64.tar.gz?AuthParam=1465316438_f262c7659515d89274633588ae8f73ca # mkdir /usr/java # mv jdk-8u92-linux-x64.tar.gz /usr.java/jdk-8u92-linux-x64.tar.gz # tar zxvf jdk-8u92-linux-x64.tar.gz # ln -s /usr/java/jdk1.8.0_92 /usr/java/default # export JAVA_HOME=/usr/java/default # export PATH=$JAVA_HOME/bin:$PATH
... View more
10-27-2015
05:47 PM
Hi Neeraj.I am mainly looking at log4j stuff.
... View more
05-15-2017
08:17 PM
Hey Andrew, I'm having the same issue. Did you find any fixes for this? It's great it can be changed without a restart... but having to come back in and set this anytime Solr or the server itself is restarted isn't great. 🙂 EDIT: Help from Hortonworks support pointed out that in log4j.properties (either in Ambari if your Solr Cloud is managed there, or directly on server if not) you can adjust the following line from: log4j.rootLogger=INFO, file, CONSOLE Changed to: log4j.rootLogger=WARN, file, CONSOLE That will allow it to retain this change on Solr startup.
... View more
10-25-2015
11:57 PM
Thanks, Joe. I'm aware of Java 8 dropping those settings, wherever they decided to have permgen be now, good choice there with defaults in bootstrap. I now realized that I got thrown off by off-heap vs non-heap, was thinking of the off-heap memory for this reason. I realize there's no off-heap memory used in the product.
... View more
10-25-2015
05:30 PM
Yes, Joe, I had something like snappy in my mind as a good middle ground between size and performance. As a minimum, a compression level property should be exposed to the operator to balance an existing compression protocol between speeed/cpu load and network traffic volume.
... View more