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ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ