https://dagster.io/ logo
#ask-community
Title
# ask-community
b

Barry Sun

05/20/2022, 6:34 AM
Hi all! I'm trying to output my pandas dataframe to a parquet file in a local folder. I've tried the following: • With path being a config input - I've checked that it is a valid path • It does run successfully, without any errors, however no file is produced! • Also aware that there is a 'parquet_partition_io_manager' resource from the Hacker News example, however I haven't quite wrapped my head around it 😅. I'm trying to do a simple solution here, however, I'm open to learning about using resources and best practices.
🤖 1
j

jamie

05/20/2022, 3:28 PM
hey @Barry Sun I think you might just need to pass the path to the
to_parquet
call
Copy code
df.to_parquet(path=path)
1
b

Barry Sun

05/23/2022, 12:26 AM
😐 thanks Jamie.. Friday afternoon really got to me there