[ 
https://issues.apache.org/jira/browse/HIVE-22337?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16952409#comment-16952409
 ] 

Hive QA commented on HIVE-22337:
--------------------------------



Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12983073/HIVE-22337.2.patch

{color:green}SUCCESS:{color} +1 due to 6 test(s) being added or modified.

{color:red}ERROR:{color} -1 due to 9 failed/errored test(s), 17365 tests 
executed
*Failed tests:*
{noformat}
TestDataSourceProviderFactory - did not produce a TEST-*.xml file (likely timed 
out) (batchId=234)
TestHLLNoBias - did not produce a TEST-*.xml file (likely timed out) 
(batchId=234)
TestHLLSerialization - did not produce a TEST-*.xml file (likely timed out) 
(batchId=234)
TestHyperLogLogDense - did not produce a TEST-*.xml file (likely timed out) 
(batchId=234)
TestHyperLogLogMerge - did not produce a TEST-*.xml file (likely timed out) 
(batchId=234)
TestHyperLogLogSparse - did not produce a TEST-*.xml file (likely timed out) 
(batchId=234)
TestObjectStore - did not produce a TEST-*.xml file (likely timed out) 
(batchId=234)
TestPartitionProjectionEvaluator - did not produce a TEST-*.xml file (likely 
timed out) (batchId=234)
TestRetriesInRetryingHMSHandler - did not produce a TEST-*.xml file (likely 
timed out) (batchId=234)
{noformat}

Test results: 
https://builds.apache.org/job/PreCommit-HIVE-Build/19006/testReport
Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/19006/console
Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-19006/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.YetusPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 9 tests failed
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12983073 - PreCommit-HIVE-Build

> Improve and Expand Text-Based SerDes
> ------------------------------------
>
>                 Key: HIVE-22337
>                 URL: https://issues.apache.org/jira/browse/HIVE-22337
>             Project: Hive
>          Issue Type: Improvement
>          Components: Serializers/Deserializers
>    Affects Versions: 4.0.0
>            Reporter: David Mollitor
>            Assignee: David Mollitor
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 4.0.0
>
>         Attachments: HIVE-22337.1.patch, HIVE-22337.2.patch
>
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> * Add new SerDe package just for text-based formats: 
> org.apache.hadoop.hive.serde2.text.*
> * Add new SerDe package just for text-based log formats: 
> org.apache.hadoop.hive.serde2.text.log.*
> * Create a coherent hierarchy for processing delimited data: AbstractSerDe -> 
> TextSerDe -> EncodingAwareTextSerde -> DelimitedSerDe -> CsvTestSerDe
> * Create a coherent hierarchy for processing regex'ed data: AbstractSerDe -> 
> TextSerDe -> EncodingAwareTextSerde -> RegexSerDe -> CommonFormatLogSerDe
> * Create some standard text processors for super-quick out-of-the-box 
> processing: TSV SerDe and CSV SerDe
> * Create some standard log processors for super-quick out-of-the-box 
> processing: Apache Common Log Format and Apache Combined Log Format (Apache 
> HTTP Server Log Parsers)
> * Better default behaviors for processing text
> The default behavior should allow users to quick query data without any 
> failures.
> # When a blank line is encountered, insert a 'null' value for each column
> # When there are fewer fields in the data than defined in the table schema, 
> shift all available fields left, and fill in 'null' values for all remaining 
> fields
> # When there are too many fields in the data, the last field in the results 
> will contain all remaining values.  Currently, the data is silently swallows 
> and a warning is issued in the YARN logs.  A normal user will never see this 
> warning, especially if the job completes successfully.  Better to (by 
> default) provide them all the data than to hide anything.
> {code:none|title=CSV SerDe}
> "1,2,3"    = ["1","2","3"]
> "1,2,"     = ["1","2",null]
> ""         = [null,null,null]
> "1,2,3,4"  = ["1","2","3,4"]
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to