Why is the upload speed of dmp files from aws rds to s3 so fast?

0

After backing up using data pump in AWS rds, the file in the directory of the file was uploaded to s3.

I monitored it and saw the file list appear in S3 in about 1 second.

I wonder if this is because the upload has actually been completed or is in progress.

If the upload has been completed, I am curious as to why it is uploaded so quickly.

joker
已提问 8 个月前238 查看次数
1 回答
0
已接受的回答

The time will vary depending on file size. There is a way to monitor upload download files, for example with RDS for Oracle you can run a query as described here: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-s3-integration.html

SELECT rdsadmin.rdsadmin_s3_tasks.upload_to_s3(
      p_bucket_name               =>  's3bucketOwnedByAccountB', 
      p_prefix                    =>  '', 
      p_s3_prefix                 =>  '', 
      p_directory_name            =>  'DATA_PUMP_DIR',
      p_bucket_owner_full_control =>  'FULL_CONTROL',
      p_compression_level         =>  6) 
   AS TASK_ID FROM DUAL;

SELECT text FROM table(rdsadmin.rds_file_util.read_text_file('BDUMP','dbtask-task-id.log'));
profile pictureAWS
已回答 8 个月前
profile pictureAWS
专家
已审核 8 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则

相关内容