I am writing a lambda function, I have to read a parquet file, for which I am using pyarrow package. It works fine in my local machine with below line of code.
pq_raw = pq.read_table(source='C:\\Users\\xxx\\Desktop\\testfolder\\yyyy.parquet')
Now I want to recreate the same functionality in lambda function with the file being in an S3 location. How this can be done?