Hive-JSON-Serde
Hive-JSON-Serde copied to clipboard
Read - Write JSON SerDe for Apache Hive.
I am using this serde in my glue table however I see the json key are always getting converted to lowercase irrespective of original input. I tried using case.insensitive" =...
**What is the purpose of the change:** To address the validation issue created due to the potential variations in String ordering during comparison. This PR aims to fix two tests:...
**Describe the bug:** Creating this issue to address 2 tests: ``` org.openx.data.jsonserde.JsonSerDeTest.testNestedExplicitNullValue org.openx.data.jsonserde.JsonSerDeTest.testExplicitNullValue ``` **Expected behavior:** The assertion at the above mentioned tests are expected to succeed irrespective of the...
### data [{"key1":"value1a","key2":"value2a",...},{"key1":"value1b","key2":"value2b",...}] ### create external table ``` CREATE EXTERNAL TABLE IF NOT EXISTS testdata.trynum85 ( data array ) ROW FORMAT SERDE 'org.openx.data.jsonserde.JsonSerDe' WITH SERDEPROPERTIES ( 'serialization.format' = '1', 'strip.outer.array'='false'...
hi @rcongiu I did ``` CREATE EXTERNAL TABLE `XXX`( `ABC` string COMMENT 'from deserializer') ROW FORMAT SERDE 'org.openx.data.jsonserde.JsonSerDe' WITH SERDEPROPERTIES ( 'ignore.malformed.json' = 'true') STORED AS INPUTFORMAT 'org.apache.hadoop.mapred.TextInputFormat' OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat'...
Please push to maven central. Necessary in some cases for corporate adoption. Please also push the individualcomponent jars - in particular the minimal JSON lib which I want to use...
I have one Json file and I have validated it, Its a valid json. now creating Hive table on this file and then selecting data but its showing Error: java.io.IOException:...
SimpleDateFormat is not threadsafe since it mutates fields internally during calls to parse and format. This changes previously static instances of SimpleDateFormat into static thread-local instances to avoid the the...
Strings like this currently parse into a timestamp: ``` 2020-07-30T15:20:05Z ``` but not this: ``` 2020-07-30T15:20:05.424Z ``` This ticket is to add support for the latter.
Any plan to adapt to CDH7? Thank you so much!