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 | |
3573 | 12-11-2015 01:48 AM | |
3033 | 11-23-2015 12:11 PM | |
2804 | 07-06-2015 10:40 AM |
06-12-2015
05:54 AM
Try to use the sanitizeUnkownSolrFields command per http://kitesdk.org/docs/current/morphlines/morphlines-reference-guide.html#sanitizeUnknownSolrFields Wolfgang.
... View more
12-09-2014
10:27 AM
This does not work for merging with text substitution for the same reason I mentioned in my previous comment, but you are right, it is include functionality. I was probably biased towards the use case for which I created this thread. 🙂 Thanks.
... View more
11-27-2014
02:09 AM
I've took org.apache.flume.sink.solr.
morphline.UUIDInterceptor$Builder as an example My custom interceptor takes event body and stores it in event header. Then SolrSink takes this header by default and sendt it to Solr for indexing. it works NB: solr schema.xml should have matching field declaration.
... View more
11-10-2014
07:48 AM
Got you, all working perfectly now. Thank you so much for your help, I now understand more about how morphline / hbase-indexer work.
... View more
10-17-2014
01:04 AM
I assumed so, but wanted to confirm that there is no state sharing "behind the scenes", especially in the Command building process. Thanks for the confirmation.
... View more
10-17-2014
01:02 AM
Sure. FreeMarker is a good idea, especially now that they have switched to the Apache 2.0 License.
... View more
10-15-2014
08:18 AM
Hi, looks like it's a bug, your reply created new sperate forum thread. I see the defference. EXample from CDK tests return: text="sample tweet one" sequence item #1 is of class: net.sf.saxon.tree.tiny.TinyAttributeImpl with value: text="sample tweet one" And mine doesn't return someName=someValue, only someValue: 431 [main] TRACE com.cloudera.cdk.morphline.saxon.XQueryBuilder$XQuery - XQuery result sequence item #1 is of class: net.sf.saxon.tree.tiny.TinyTextImpl with value:someValueIWantToGet Twitter-based example takes name "text" becuase it's attribute name from xml? I've refactored my xq: queryString : """
for $entry in /collectorEvent/attributes/etpEventCollectorAttributes
return
<entry>
{$entry/ssoId}
{$entry/applicationId}
</entry>
""" now it returns: {applicationId=[123], ssoId=[someSSO_id} Thanks, it works!
... View more
10-14-2014
11:30 AM
Thanks for your patience,
... View more
10-14-2014
11:14 AM
NPE reason is in wrong test initialization order. I'ev found the problem
... View more