Member since
08-21-2013
146
Posts
25
Kudos Received
34
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3132 | 10-24-2016 10:43 AM | |
6998 | 03-13-2016 02:15 PM | |
3572 | 12-11-2015 01:48 AM | |
3030 | 11-23-2015 12:11 PM | |
2804 | 07-06-2015 10:40 AM |
08-21-2014
06:20 AM
Try to use syntax with quotes, like so : /my_contexts : "/attachments[]/documents[]/context" Wolfgang.
... View more
08-20-2014
11:20 AM
See http://www.cloudera.com/content/cloudera-content/cloudera-docs/CDH5/latest/Search/Cloudera-Search-User-Guide/csug_metadata.html
... View more
08-05-2014
11:30 PM
Thank you, Wolfgang. The cause of the problem was that the amount of Java Heap Memory dedicated for a MR container was too low, though there was enough phisycal memory on each node. After some tuning, I found out that the ratio of memory of data (unzipped) to index to available JVM memory for a reducer task is about 2:1. So if you have a larger file to index in single reducer you likely get OutOfMemeryError. Thanks for the help.
... View more
05-29-2014
07:23 AM
Thanks for the prompt answer! Adding to the Morphlines Reference Guide, the tryRules block has to be placed inside the commands block, e.g. morphlines : [
{
id : morphline1
importCommands : ["org.kitesdk.**", "org.apache.solr.**"]
commands : [
{
readLine {
charset : UTF-8
}
}
{
tryRules {
catchExceptions : false
throwExceptionIfAllRulesFailed : true
rules : [
# next rule of tryRules cmd:
{
commands : [
{ ... }
{ ... }
]
}
# next rule of tryRules cmd:
{
commands : [
{ ... }
{ ... }
]
}
}
}
]
}
... View more
05-05-2014
10:05 AM
Thanks mate.It worked.Thanks a lot for all your help in this
... View more
05-01-2014
02:28 PM
Great! Looking forward to meet up @ Berlin Buzzwords. Wolfgang.
... View more
04-30-2014
10:53 AM
Thanks a lot.I have created the solr cloud and was able to index a sample data(extract the mesagae and put it into one solr field) just to check that my configuration is correct and it works. How ever when I try to extract data and assign it to solr schema elements it does not work.Extract hbase cell looks like this.Do I need to have _attachment_body" field or an "_attachment_mimetype" field defined in my schema? extractHBaseCells { mappings : [ { inputColumn : "messages:*" outputField : "_attachment_body" type : byte[] source : value } ] } }
... View more
04-17-2014
02:54 PM
Hi It did work and I am able to index the documents now. How ever when I go to solr admin page and query for the data ,I get an error message as below.I can see an increase in the number of documents indexed each time I put add a row into hbase. This is what I have done in general. 1.set up lily. 2.Insert record into hbase 3.navigate to solr admin UI and created a solr core for my collection. I tried restarting the solr service once I saw this error but still keeps getting it. error": { "msg": "no servers hosting shard: ", "code": 503 }
... View more
02-07-2014
08:11 AM
Make sure to run search-1.1.0.
... 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
- « Previous
- Next »