I need to read many parquet files from S3 bucket in an AWS lambda function. I see it's possible to write files to streams but not possible for reading. Do we have any workaround to read files from S3 buckets without writing them to local disk?
I saw #28 about reading as base64 and comments are pointing ParquetTransformer as solution, but as far as I see it's only for writing not for reading.
I need to read many parquet files from S3 bucket in an AWS lambda function. I see it's possible to write files to streams but not possible for reading. Do we have any workaround to read files from S3 buckets without writing them to local disk?
I saw #28 about reading as base64 and comments are pointing
ParquetTransformer
as solution, but as far as I see it's only for writing not for reading.