You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Eugene Koifman (JIRA)" <ji...@apache.org> on 2018/01/16 21:56:00 UTC

[jira] [Created] (HIVE-18460) Compactor doesn't pass Table properties to the Orc writer

Eugene Koifman created HIVE-18460:
-------------------------------------

             Summary: Compactor doesn't pass Table properties to the Orc writer
                 Key: HIVE-18460
                 URL: https://issues.apache.org/jira/browse/HIVE-18460
             Project: Hive
          Issue Type: Bug
          Components: Transactions
    Affects Versions: 0.14.0
            Reporter: Eugene Koifman
            Assignee: Eugene Koifman


 

 CompactorMap.getWrite()/getDeleteEventWriter() both do AcidOutputFormat.Options.tableProperties() but
OrcOutputFormat.getRawRecordWriter() does
{noformat}
final OrcFile.WriterOptions opts =
OrcFile.writerOptions(options.getConfiguration());
{noformat}
which ignores tableProperties value.
It should do 
{noformat}
final OrcFile.WriterOptions opts =
OrcFile.writerOptions(options.getTableProperties(), options.getConfiguration());
{noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)