Member since
07-30-2019
333
Posts
356
Kudos Received
76
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
9920 | 02-17-2017 10:58 PM | |
2316 | 02-16-2017 07:55 PM | |
8014 | 12-21-2016 06:24 PM | |
1765 | 12-20-2016 01:29 PM | |
1243 | 12-16-2016 01:21 PM |
10-26-2015
12:45 PM
3 Kudos
When one stands up SolrCloud/HDPSearch, every core/replica will be writing logs to /opt/lucidworks-hdpsearch/solr/server/logs. Files like 'solr-8983-console.log' will grow very quickly for a lightly used index, at the rate of several GBs per day. The reason is it outputs all INFO and DEBUG messages to this console log. Which is great for development, but a pain for production and operations. The challenge is there are quite a few log configuration files spread around the Solr directories, and those will not necessarily yield the desired result. It gets even more complicated for a SolrCloud, where one is dealing with a cluster of nodes.
There is, however, a very straightforward way to quickly address this issue:
Navigate to the admin console, like http://xxx-solr-1:8983/solr
Click on Logging -> Level
Select a root logger (click on the level value) and modify it to be WARN
The change is applied at runtime, no restart required.
... View more
Labels:
10-26-2015
12:24 PM
For the record, the patch has now made it into the next NiFi release.
... 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
06:02 PM
I'm trying to make sense of the below screenshot. Questions: What is non-heap memory used for? I couldn't find any reference in the admin guide. Does -1 mean uncapped memory usage? What is a correlation between Total and Max here? Should I be concerned there's only ~11MB left of free non-heap memory? Should we bump it? How?
... View more
Labels:
- Labels:
-
Apache NiFi
-
Cloudera DataFlow (CDF)
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
10-25-2015
05:07 PM
Which compression algorithm is used when a remote port communication is set up? Can it be customized? Does it work on a FlowFile level or the batch that s2s protocol negotiated for transmission?
... View more
Labels:
- Labels:
-
Apache NiFi
-
Cloudera DataFlow (CDF)
10-23-2015
04:45 PM
You are missing a dependency from the example. Note that this is an external link, not created nor endorsed by Hortonworks. Example instructions mention it in the first paragraph: Note: this flow depends on nifi-websocket module, download nar and copy to $NIFI_HOME/lib Module source code is here: https://github.com/xmlking/nifi-websocket
... View more
10-23-2015
03:06 PM
1 Kudo
Consider the following flow where records are inserted in the RDBMS (or Phoenix/HBase in this instance): The PutSQL and similar processor depends on a database connection, provided by a DBCPConnectionPool controller service (Controller Settings -> Controller Services): The best part: when one creates a template, all linked services will automatically be included. When template is rehydrated in another NiFi instance, services like the one below will automatically be added to the new NiFi flow:
... View more
10-23-2015
02:35 PM
I think the error is coming from a NUMBER with unlimited precision being treated as java.math.BigDecimal. Will ask a developer to take a loot next.
... View more
10-23-2015
02:24 PM
Slider is a client lib and will be installed as part of client set in Ambari. Whether you choose to install it on a master node, is secondary, but typically you will see Slider (and clients) on the edge nodes.
... View more