Hi,
I was previously working Hive 1.2.1000.2.6.5.0-292. When i create a ORC table like below:
CREATE TABLE acidtbl2 (a INT, b STRING) STORED AS orc tblproperties ("orc.compress"="SNAPPY");
And insert data into it:
INSERT INTO acidtbl2 (a,b) VALUES (100, "oranges"), (200, "apples"), (300,"bananas");
I get a the following directory which contains the data file as below:
hdfs dfs -ls /apps/hive/warehouse/imp_rt_test1912.db/acidtbl1/
Found 1 items
-rwxrwxrwx 3 bdauser hdfs 380 2020-02-15 10:52 /apps/hive/warehouse/imp_rt_test1912.db/acidtbl2/000000_0
Now with Hive 3.1 if I do the same , I get a delta folder and withing it i see a file named bucket_00000
hdfs dfs -ls /warehouse/tablespace/managed/hive/hdptesta.db/acidtbl2/
Found 1 items
drwxrwx---+ - bdauser hadoop 0 2020-02-15 10:59 /warehouse/tablespace/managed/hive/hdptesta.db/acidtbl2/delta_0000001_0000001_0000
Is there a way to have the bucketing disabled so that bucket files dont get generated?
Thanks,
Kevin