Created 09-30-2014 06:51 AM
I've got a record in Morphlines that includes a byte array field. I want to convert that to a UTF-8 string, i.e. the equivalent of String(field, "UTF-8) in Java.
I can see the readClob command exists, but that works on a whole record rather than a single field. Is there an alternative?
Appreciate that I should have stored my data differently, but it's not my format and that's what ETL tools (morphlines) are for! 😉
Thanks in advance.
Created 09-30-2014 11:42 AM
Created 09-30-2014 11:42 AM
Created 09-30-2014 01:19 PM
Perfect, thanks for this.
I was also having a look at something like:
{ setValues { _attachment_body : "@{myInputField}" } } { readClob { charSet : "UTF-8" } }
Out of interest, are there any disadvantages with that approach?
Thanks.
Created 09-30-2014 01:37 PM
Created 10-20-2014 04:04 PM
Hi, what kind of source you use to get attachment_body? Is it possible to use HttpSource as a source and morphlinesolrsink to process accepted payload (xml data)
Created 07-11-2018 11:07 PM
While reading parquet file, How to convert Parquet DECIMAL datatype to String.