I think it is still not clear what you are doing. What do you mean by using the fs.append function? Can you please provide each query that you execute? From where is the data inserted? Did you check all the logfiles of Hive and in Yarn?
Then single inserts are highly inefficient. Try to use create table as select or insert overwrite into a new partition. As the people already said - if it even does not work when not using Ignite then it is a Hive or HDFS problem. > On 4. Aug 2017, at 06:45, csumi <[email protected]> wrote: > > Thank you for the response. > > If I insert data from hive directly using below query, select query works > fine. > > insert into table stocks PARTITION (years=2004,months=12,days=3) > values('AAPL',1501236980,120.34); > > I think the issue here is that when we insert data using IGFS api (append > method), select fails to return the results but if we use insert query, > partitions are created and select query works fine. How to resolve this? Is > partition supported 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-tp15725p15983.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com.
