Uploaded image for project: 'CarbonData'
  1. CarbonData
  2. CARBONDATA-3937

Insert into select from another carbon /parquet table is not working on Hive Beeline on a newly create Hive write format - carbon table. We are getting “Database is not set" error.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Invalid
    • 2.0.0
    • None
    • hive-integration
    • None

    Description

      Insert into select from another carbon or parquet table to a carbon table is not working on Hive Beeline on a newly create Hive write format carbon table. We are getting “Database is not set” error.

       

      Test queries:

       drop table if exists hive_carbon;

      create table hive_carbon(id int, name string, scale decimal, country string, salary double) stored by 'org.apache.carbondata.hive.CarbonStorageHandler';

      insert into hive_carbon select 1,"Ram","2.3","India",3500;

      insert into hive_carbon select 2,"Raju","2.4","Russia",3600;

      insert into hive_carbon select 3,"Raghu","2.5","China",3700;

      insert into hive_carbon select 4,"Ravi","2.6","Australia",3800;

       

      drop table if exists hive_carbon2;

      create table hive_carbon2(id int, name string, scale decimal, country string, salary double) stored by 'org.apache.carbondata.hive.CarbonStorageHandler';

      insert into hive_carbon2 select * from hive_carbon;

      select * from hive_carbon;

      select * from hive_carbon2;

       

       --execute below queries in spark-beeline;

      create table hive_table(id int, name string, scale decimal, country string, salary double);
      create table parquet_table(id int, name string, scale decimal, country string, salary double) stored as parquet;
      insert into hive_table select 1,"Ram","2.3","India",3500;
      select * from hive_table;
      insert into parquet_table select 1,"Ram","2.3","India",3500;
      select * from parquet_table;

      --execute the below query in hive beeline;

      insert into hive_carbon select * from parquet_table;

      Attached the logs for your reference. But the insert into select from the parquet and hive table into carbon table is working fine.

       

      Only insert into select from hive table to carbon table is only working.

      Error details in MR job which run through hive query:

      Error: java.io.IOException: java.io.IOException: Database name is not set. at org.apache.hadoop.hive.io.HiveIOExceptionHandlerChain.handleRecordReaderCreationException(HiveIOExceptionHandlerChain.java:97) at org.apache.hadoop.hive.io.HiveIOExceptionHandlerUtil.handleRecordReaderCreationException(HiveIOExceptionHandlerUtil.java:57) at org.apache.hadoop.hive.ql.io.HiveInputFormat.getRecordReader(HiveInputFormat.java:414) at org.apache.hadoop.hive.ql.io.CombineHiveInputFormat.getRecordReader(CombineHiveInputFormat.java:843) at org.apache.hadoop.mapred.MapTask$TrackedRecordReader.<init>(MapTask.java:175) at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:444) at org.apache.hadoop.mapred.MapTask.run(MapTask.java:349) at org.apache.hadoop.mapred.YarnChild$1.run(YarnChild.java:175) at java.security.AccessController.doPrivileged(Native Method) at javax.security.auth.Subject.doAs(Subject.java:422) at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1737) at org.apache.hadoop.mapred.YarnChild.main(YarnChild.java:169) Caused by: java.io.IOException: Database name is not set. at org.apache.carbondata.hadoop.api.CarbonInputFormat.getDatabaseName(CarbonInputFormat.java:841) at org.apache.carbondata.hive.MapredCarbonInputFormat.getCarbonTable(MapredCarbonInputFormat.java:80) at org.apache.carbondata.hive.MapredCarbonInputFormat.getQueryModel(MapredCarbonInputFormat.java:215) at org.apache.carbondata.hive.MapredCarbonInputFormat.getRecordReader(MapredCarbonInputFormat.java:205) at org.apache.hadoop.hive.ql.io.HiveInputFormat.getRecordReader(HiveInputFormat.java:411) ... 9 more

      Attachments

        Activity

          People

            Unassigned Unassigned
            Prasanna Ravichandran Prasanna Ravichandran
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: