Member since
08-21-2013
146
Posts
25
Kudos Received
34
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3100 | 10-24-2016 10:43 AM | |
6894 | 03-13-2016 02:15 PM | |
3545 | 12-11-2015 01:48 AM | |
3007 | 11-23-2015 12:11 PM | |
2770 | 07-06-2015 10:40 AM |
04-29-2014
12:04 PM
A next step is to configure Solr, in particular schema.xml and solrconfig.xml. For an example see http://www.cloudera.com/content/cloudera-content/cloudera-docs/Search/latest/Cloudera-Search-User-Guide/csug_tutorial.html
... View more
04-25-2014
01:43 PM
Yes, you can write a custom morphline command in Java [1] and add the corresponding custom jar that to the classpath, e.g via the HBASE_INDEXER_CLASSPATH environment variable in menu ?Service-Wide/Advanced/Safety Valve? in Cloudera Manager (for Near Real Time Indexing) or via the --libjars CLI option on HBaseMapReduceIndexerTool (for Batch Indexing). Alternatively, you also write a mini script in Java and paste it into the body of the ?java" morphline command [2]. [1] Section "Implementing your own Custom Command? at http://cloudera.github.io/cdk/docs/current/cdk-morphlines/morphlinesReferenceGuide.html [2] http://cloudera.github.io/cdk/docs/current/cdk-morphlines/morphlinesReferenceGuide.html#/java
... View more
04-24-2014
02:33 PM
You can just specify an extractHBaseCells command followed by an xquery command in the same morphline config file. Each command pipes into the subsequent command, and you can specify as many commands as you like. The links I mentioned contain a (commented out) example for extractHBaseCells followed by readAvroContainer. just uncomment that and replace readAvroContainer with xquery. Wolfgang.
... View more
04-24-2014
02:02 PM
1 Kudo
See Sections "Creating a Morphline Configuration File? and "Understanding the extractHBaseCells morphline command? at http://www.cloudera.com/content/cloudera-content/cloudera-docs/Search/latest/Cloudera-Search-User-Guide/csug_hbase_batch_indexer.html Wolfgang.
... View more
04-17-2014
09:30 AM
Sounds like the --zookeeper arg is missing. See http://www.cloudera.com/content/cloudera-content/cloudera-docs/Search/latest/Cloudera-Search-User-Guide/csug_use_hbase_indexer_service.html
... View more
02-07-2014
08:11 AM
Make sure to run search-1.1.0.
... View more
02-07-2014
07:11 AM
1 Kudo
I think this has been fixed in more recent versions of Cloudera Search.
... View more
02-02-2014
11:13 AM
All variables have to statically resolve at compile time. Still, you can statically enumerate multiple solrLocators and do stuff like this: if { conditions : [ { equals { tenant : [foo] } } ] then : [ { loadSolr { solrLocator : { collection : collection_foo, zkHost : "127.0.0.1:2181/solr" } } } ] else : [ { loadSolr { solrLocator : { collection : collection_bar, zkHost : "127.0.0.1:2181/solr" } } } ] } Wolfgang.
... View more
01-27-2014
03:13 PM
There's no need to change any input data. Rather you need to change the xsl transform to spit out whatever output is expected. The XSL transform needs to produce data that is shaped as expected by the rules that govern the conversion of saxon xslt output to morphline records, as described in the docs - http://kitesdk.org/docs/current/kite-morphlines/morphlinesReferenceGuide.html#/xslt Wolfgang.
... View more