I have AWS s3 bucket where I am receiving multiple parquet files every minutes after performing some operation in AWS firehose. Now I have to make Real time sync of these files with GCP cloud storage bucket as we have multi cloud env and further process will be happening in GCP cloud. But I have problem that how can I do real time sync between two cloud buckets so that as soon as any file comes to AWS s3, same time it should come to GCP bucket as well. Any inputs please
realtime. Firehose does not support Google Cloud Storage, so the answer is automatically NO. If you do not need realtime behavior, you can implement an event system, such as Lambda, that copies objects from S3 to Cloud Storage. - John Hanley