Member since
08-28-2019
2
Posts
0
Kudos Received
0
Solutions
11-19-2021
05:13 AM
Hello, I'm using Hue to visualize document indexed in SolR. I would like to Hide from Hue some field that are part of the SolR collection schema. The image below is what I see from Hue when I open a indexed document, I would like to know if it is possible (and how), hide the yellow fields from Hue. This is the schema used to create the SolR collection: I've tried to set stored=false and indexed=false but this seems to have no effect. Could you please provide some hint? Thanks
... View more
Labels:
- Labels:
-
Apache Solr
-
Cloudera Hue
11-16-2021
04:07 AM
I'm trying to use a ListenUDPRecord processor to parse syslog messages as input, using SyslogReader as Record Reader and JsonRecordSetWriter as Record Writer. The solution is working as I am getting a json message as output with the following fields: priority, severity, facility, version, timestamp, hostname, body. The json must then be indexed in a solr collection and the problem is that I get a timestamp field of the form: Nov 16 12:36:32 but I would need a unix timestamp fomat field (e.g. 1637062592000) or an output like that: "2021-11-16 12:36:32". I tried to specify the "Timestamp Format" field of the JsonRecordSetWriter service (i.e. "yyyy-MM-dd HH:mm:ss" or "MM/dd/yyyy HH:mm:ss") but output does not change. How can I change the structure of the timestamp field of my output json message?
... View more
Labels:
- Labels:
-
Apache NiFi