hudi-bot opened a new issue, #15496:
URL: https://github.com/apache/hudi/issues/15496

   ./bin/spark-sql --packages org.apache.hudi:hudi-spark3.3-bundle_2.12:0.12.0  
--conf 'spark.serializer=org.apache.spark.serializer.KryoSerializer' --conf 
'spark.sql.extensions=org.apache.spark.sql.hudi.HoodieSparkSessionExtension' 
--conf 
'spark.sql.catalog.spark_catalog=org.apache.spark.sql.hudi.catalog.HoodieCatalog'
   
   create table hudi_mor_tbl (
     id int,
     name string,
     price double,
     ts bigint
   ) using hudi
   tblproperties (
     type = 'mor',
     primaryKey = 'id',
     preCombineField = 'ts',
     'hoodie.table.base.file.format' = 'ORC'
   );
   
   insert into hudi_mor_tbl select 1, 'a1_1', 20, 1001;
   
   select * from hudi_mor_tbl;
   
   
   java.lang.UnsupportedOperationException: Base file format is not currently 
supported (ORC)
           at 
org.apache.hudi.HoodieBaseRelation.createBaseFileReader(HoodieBaseRelation.scala:577)
           at 
org.apache.hudi.MergeOnReadSnapshotRelation.createBaseFileReaders(MergeOnReadSnapshotRelation.scala:126)
           at 
org.apache.hudi.MergeOnReadSnapshotRelation.composeRDD(MergeOnReadSnapshotRelation.scala:90)
   
   ## JIRA info
   
   - Link: https://issues.apache.org/jira/browse/HUDI-5026
   - Type: Bug
   
   
   ---
   
   
   ## Comments
   
   14/Oct/22 01:29;zhaoym;I will add a spark orc reader to support ;;;


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to