I have a Hive partitioned table as below: create table stocks (stock string, time timestamp, price float) PARTITIONED BY (years bigint, months bigint, days bigint) ROW FORMAT DELIMITED FIELDS TERMINATED BY ',';
Data is getting saved in HDFS through IGFS when I pass comma separated string to the fs.append method but when I query on Hive there is no row coming. If I remove the partition while creating the table, I am able to fetch rows from hive. What could be wrong here? How can we save data to a partitioned table through IGFS? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/how-to-append-data-to-IGFS-so-that-data-gets-saved-to-Hive-partitioned-table-tp15725.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
