Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unexpected behaviour: S3 meta client copy when uploading parts of copy #4326

Open
1 task
jsaladich opened this issue Nov 2, 2024 · 3 comments
Open
1 task
Assignees
Labels
bug This issue is a confirmed bug. p2 This is a standard priority issue s3

Comments

@jsaladich
Copy link

jsaladich commented Nov 2, 2024

Describe the bug

I have two buckets in two different regions. Both buckets are properly described and verified (assume orig == origin, where the file is located at this present moment and dest == destination, where the file must be copied)

s3_orig = boto3.resource('s3', endpoint_url = endpoint_url_orig, 
                               region_name = region_orig).Bucket(bucket_orig)
s3_dest = boto3.resource('s3', endpoint_url = endpoint_url_dest, 
                               region_name = region_dest).Bucket(bucket_dest)

I just need to make some simple copies between bucket (without versioning, yet both have versioning enabled):

keys_orig = s3_orig.meta.client.list_objects_v2(Bucket = bucket_orig)['Contents']
keys_cp = [k for k in keys_orig if glob_criteria in k['Key']]
s3_dest.meta.client.copy(
            CopySource = dict_source_to_copy, 
            Bucket = bucket_dest,
            Key = key_cp['Key'],
            SourceClient = s3_orig.meta.client
        )

That calls a multipart put since files are >10GB size. Printing some inputs your func CopyPartTask from copies.py

class CopyPartTask(Task):
    """
    """
    print(client.list_buckets(), "\n")
    print(key)
    print(bucket,  "\n")
    print(part_number, "\n")
    print(extra_args, "\n")

we get:

{'ResponseMetadata': {'RequestId': 'tx71635851192b493c82c65-00672615f5', 'HostId': 'tx71635851192b493c82c65-00672615f5', 'HTTPStatusCode': 200, 'HTTPHeaders': {'content-type': 'application/xml', 'content-length': '371', 'x-amz-id-2': 'tx71635851192b493c82c65-00672615f5', 'x-amz-request-id': 'tx71635851192b493c82c65-00672615f5', 'date': 'Sat, 02 Nov 2024 12:07:18 GMT'}, 'RetryAttempts': 0}, 'Buckets': [{'Name': 's3-replication', 'CreationDate': datetime.datetime(2024, 10, 7, 17, 33, 22, tzinfo=tzlocal())}], 'Owner': {'DisplayName': '...', 'ID': '...'}} 

stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc
s3-replication 

10 

{'CopySourceRange': 'bytes=75497472-83886079'} 

{'ResponseMetadata': {'RequestId': 'txc157cda148c24be1a8fcd-00672615f6', 'HostId': 'txc157cda148c24be1a8fcd-00672615f6', 'HTTPStatusCode': 200, 'HTTPHeaders': {'content-type': 'application/xml', 'content-length': '371', 'x-amz-id-2': 'txc157cda148c24be1a8fcd-00672615f6', 'x-amz-request-id': 'txc157cda148c24be1a8fcd-00672615f6', 'date': 'Sat, 02 Nov 2024 12:07:18 GMT'}, 'RetryAttempts': 0}, 'Buckets': [{'Name': 's3-replication', 'CreationDate': datetime.datetime(2024, 10, 7, 17, 33, 22, tzinfo=tzlocal())}], 'Owner': {'DisplayName': '...', 'ID': '...'}} 

stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc
s3-replication 

7 

{'CopySourceRange': 'bytes=50331648-58720255'} 

{'ResponseMetadata': {'RequestId': 'txaa40d9de770744d3ac626-00672615f6', 'HostId': 'txaa40d9de770744d3ac626-00672615f6', 'HTTPStatusCode': 200, 'HTTPHeaders': {'content-type': 'application/xml', 'content-length': '371', 'x-amz-id-2': 'txaa40d9de770744d3ac626-00672615f6', 'x-amz-request-id': 'txaa40d9de770744d3ac626-00672615f6', 'date': 'Sat, 02 Nov 2024 12:07:18 GMT'}, 'RetryAttempts': 0}, 'Buckets': [{'Name': 's3-replication', 'CreationDate': datetime.datetime(2024, 10, 7, 17, 33, 22, tzinfo=tzlocal())}], 'Owner': {'DisplayName': '...', 'ID': '...'}} 

stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc
s3-replication 

6 

{'CopySourceRange': 'bytes=41943040-50331647'} 

{'ResponseMetadata': {'RequestId': 'tx5a3b9f8edd384bf68f40f-00672615f6', 'HostId': 'tx5a3b9f8edd384bf68f40f-00672615f6', 'HTTPStatusCode': 200, 'HTTPHeaders': {'content-type': 'application/xml', 'content-length': '371', 'x-amz-id-2': 'tx5a3b9f8edd384bf68f40f-00672615f6', 'x-amz-request-id': 'tx5a3b9f8edd384bf68f40f-00672615f6', 'date': 'Sat, 02 Nov 2024 12:07:18 GMT'}, 'RetryAttempts': 0}, 'Buckets': [{'Name': 's3-replication', 'CreationDate': datetime.datetime(2024, 10, 7, 17, 33, 22, tzinfo=tzlocal())}], 'Owner': {'DisplayName': '...', 'ID': '...'}} 

stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc
s3-replication 

8 

{'CopySourceRange': 'bytes=58720256-67108863'} 

{'ResponseMetadata': {'RequestId': 'tx00a19e31546c4c5eb8f5d-00672615f6', 'HostId': 'tx00a19e31546c4c5eb8f5d-00672615f6', 'HTTPStatusCode': 200, 'HTTPHeaders': {'content-type': 'application/xml', 'content-length': '371', 'x-amz-id-2': 'tx00a19e31546c4c5eb8f5d-00672615f6', 'x-amz-request-id': 'tx00a19e31546c4c5eb8f5d-00672615f6', 'date': 'Sat, 02 Nov 2024 12:07:18 GMT'}, 'RetryAttempts': 0}, 'Buckets': [{'Name': 's3-replication', 'CreationDate': datetime.datetime(2024, 10, 7, 17, 33, 22, tzinfo=tzlocal())}], 'Owner': {'DisplayName': '...', 'ID': '...'}} 
stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc
s3-replication 

5 

{'CopySourceRange': 'bytes=33554432-41943039'} 

{'ResponseMetadata': {'RequestId': 'txdc2217893c014646b5ad8-00672615f6', 'HostId': 'txdc2217893c014646b5ad8-00672615f6', 'HTTPStatusCode': 200, 'HTTPHeaders': {'content-type': 'application/xml', 'content-length': '371', 'x-amz-id-2': 'txdc2217893c014646b5ad8-00672615f6', 'x-amz-request-id': 'txdc2217893c014646b5ad8-00672615f6', 'date': 'Sat, 02 Nov 2024 12:07:18 GMT'}, 'RetryAttempts': 0}, 'Buckets': [{'Name': 's3-replication', 'CreationDate': datetime.datetime(2024, 10, 7, 17, 33, 22, tzinfo=tzlocal())}], 'Owner': {'DisplayName': '...', 'ID': '...'}} 

stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc
s3-replication 

2 

{'CopySourceRange': 'bytes=8388608-16777215'} 

{'ResponseMetadata': {'RequestId': 'txb2016c93e2c4456a90b82-00672615f6', 'HostId': 'txb2016c93e2c4456a90b82-00672615f6', 'HTTPStatusCode': 200, 'HTTPHeaders': {'content-type': 'application/xml', 'content-length': '371', 'x-amz-id-2': 'txb2016c93e2c4456a90b82-00672615f6', 'x-amz-request-id': 'txb2016c93e2c4456a90b82-00672615f6', 'date': 'Sat, 02 Nov 2024 12:07:18 GMT'}, 'RetryAttempts': 0}, 'Buckets': [{'Name': 's3-replication', 'CreationDate': datetime.datetime(2024, 10, 7, 17, 33, 22, tzinfo=tzlocal())}], 'Owner': {'DisplayName': '...', 'ID': '...'}} 
stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc
s3-replication 

4 

{'CopySourceRange': 'bytes=25165824-33554431'} 

{'ResponseMetadata': {'RequestId': 'tx92b946df2b7c4b49938aa-00672615f6', 'HostId': 'tx92b946df2b7c4b49938aa-00672615f6', 'HTTPStatusCode': 200, 'HTTPHeaders': {'content-type': 'application/xml', 'content-length': '371', 'x-amz-id-2': 'tx92b946df2b7c4b49938aa-00672615f6', 'x-amz-request-id': 'tx92b946df2b7c4b49938aa-00672615f6', 'date': 'Sat, 02 Nov 2024 12:07:18 GMT'}, 'RetryAttempts': 0}, 'Buckets': [{'Name': 's3-replication', 'CreationDate': datetime.datetime(2024, 10, 7, 17, 33, 22, tzinfo=tzlocal())}], 'Owner': {'DisplayName': '...', 'ID': '...'}} 

stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc
s3-replication 

1 

{'CopySourceRange': 'bytes=0-8388607'} 

{'ResponseMetadata': {'RequestId': 'tx9833651aee334c1aa376d-00672615f6', 'HostId': 'tx9833651aee334c1aa376d-00672615f6', 'HTTPStatusCode': 200, 'HTTPHeaders': {'content-type': 'application/xml', 'content-length': '371', 'x-amz-id-2': 'tx9833651aee334c1aa376d-00672615f6', 'x-amz-request-id': 'tx9833651aee334c1aa376d-00672615f6', 'date': 'Sat, 02 Nov 2024 12:07:18 GMT'}, 'RetryAttempts': 0}, 'Buckets': [{'Name': 's3-replication', 'CreationDate': datetime.datetime(2024, 10, 7, 17, 33, 22, tzinfo=tzlocal())}], 'Owner': {'DisplayName': '...', 'ID': '...'}} 

stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc
s3-replication 

3 

{'CopySourceRange': 'bytes=16777216-25165823'} 

{'ResponseMetadata': {'RequestId': 'txe6fd139f311644ca8c047-00672615f6', 'HostId': 'txe6fd139f311644ca8c047-00672615f6', 'HTTPStatusCode': 200, 'HTTPHeaders': {'content-type': 'application/xml', 'content-length': '371', 'x-amz-id-2': 'txe6fd139f311644ca8c047-00672615f6', 'x-amz-request-id': 'txe6fd139f311644ca8c047-00672615f6', 'date': 'Sat, 02 Nov 2024 12:07:18 GMT'}, 'RetryAttempts': 0}, 'Buckets': [{'Name': 's3-replication', 'CreationDate': datetime.datetime(2024, 10, 7, 17, 33, 22, tzinfo=tzlocal())}],'Owner': {'DisplayName': '...', 'ID': '...'}} 

stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc
s3-replication 

9 

{'CopySourceRange': 'bytes=67108864-75497471'} 

---------------------------------------------------------------------------
NoSuchBucket                              Traceback (most recent call last)
Cell In[1], line 94
     90         dict_source_to_copy = {'Bucket': bucket_orig,
     91                                'Key': key_cp['Key']}
     93     print(f"{str(np.datetime64('now', 's'))}: Replicating from {bucket_orig} to {bucket_dest}:\n{key_cp['Key']}")
---> 94     s3_dest.meta.client.copy(
     95                 CopySource = dict_source_to_copy, 
     96                 Bucket = bucket_dest,
     97                 Key = key_cp['Key'],
     98                 SourceClient = s3_orig.meta.client
     99             )
    100 #s3_orig.Bucket(bucket_orig).meta.client.head_object(Bucket = bucket_orig, Key = key_cp['Key'])

File /geoskop/miniforge-pypy3/envs/gsk/lib/python3.11/site-packages/boto3/s3/inject.py:450, in copy(self, CopySource, Bucket, Key, ExtraArgs, Callback, SourceClient, Config)
    441 with create_transfer_manager(self, new_config) as manager:
    442     future = manager.copy(
    443         copy_source=CopySource,
    444         bucket=Bucket,
   (...)
    448         source_client=SourceClient,
    449     )
--> 450     return future.result()

File /geoskop/miniforge-pypy3/envs/gsk/lib/python3.11/site-packages/s3transfer/futures.py:103, in TransferFuture.result(self)
     98 def result(self):
     99     try:
    100         # Usually the result() method blocks until the transfer is done,
    101         # however if a KeyboardInterrupt is raised we want want to exit
    102         # out of this and propagate the exception.
--> 103         return self._coordinator.result()
    104     except KeyboardInterrupt as e:
    105         self.cancel()

File /geoskop/miniforge-pypy3/envs/gsk/lib/python3.11/site-packages/s3transfer/futures.py:266, in TransferCoordinator.result(self)
    263 # Once done waiting, raise an exception if present or return the
    264 # final result.
    265 if self._exception:
--> 266     raise self._exception
    267 return self._result

File /geoskop/miniforge-pypy3/envs/gsk/lib/python3.11/site-packages/s3transfer/tasks.py:139, in Task.__call__(self)
    135     # If the task is not done (really only if some other related
    136     # task to the TransferFuture had failed) then execute the task's
    137     # main() method.
    138     if not self._transfer_coordinator.done():
--> 139         return self._execute_main(kwargs)
    140 except Exception as e:
    141     self._log_and_set_exception(e)

File /geoskop/miniforge-pypy3/envs/gsk/lib/python3.11/site-packages/s3transfer/tasks.py:162, in Task._execute_main(self, kwargs)
    159 # Log what is about to be executed.
    160 logger.debug(f"Executing task {self} with kwargs {kwargs_to_display}")
--> 162 return_value = self._main(**kwargs)
    163 # If the task is the final task, then set the TransferFuture's
    164 # value to the return value from main().
    165 if self._is_final:

File /geoskop/miniforge-pypy3/envs/gsk/lib/python3.11/site-packages/s3transfer/copies.py:375, in CopyPartTask._main(self, client, copy_source, bucket, key, upload_id, part_number, extra_args, callbacks, size, checksum_algorithm)
    373 print(part_number, "\n")
    374 print(extra_args, "\n")
--> 375 response = client.upload_part_copy(
    376     CopySource=copy_source,
    377     Bucket=bucket,
    378     Key=key,
    379     UploadId=upload_id,
    380     PartNumber=part_number,
    381     **extra_args,
    382 )
    383 for callback in callbacks:
    384     callback(bytes_transferred=size)

File /geoskop/miniforge-pypy3/envs/gsk/lib/python3.11/site-packages/botocore/client.py:565, in ClientCreator._create_api_method.<locals>._api_call(self, *args, **kwargs)
    561     raise TypeError(
    562         f"{py_operation_name}() only accepts keyword arguments."
    563     )
    564 # The "self" in this scope is referring to the BaseClient.
--> 565 return self._make_api_call(operation_name, kwargs)

File /geoskop/miniforge-pypy3/envs/gsk/lib/python3.11/site-packages/botocore/client.py:1017, in BaseClient._make_api_call(self, operation_name, api_params)
   1013     error_code = error_info.get("QueryErrorCode") or error_info.get(
   1014         "Code"
   1015     )
   1016     error_class = self.exceptions.from_code(error_code)
-> 1017     raise error_class(parsed_response, operation_name)
   1018 else:
   1019     return parsed_response

NoSuchBucket: An error occurred (NoSuchBucket) when calling the UploadPartCopy operation: The specified bucket does not exist.

Why the multipart upload can't finish? The parts return a 200

Regression Issue

  • Select this option if this issue appears to be a regression.

Expected Behavior

I would expect the multipart upload to finish if the parts can be uploaded

Current Behavior

An error saying the bucket can't be found

Reproduction Steps

Described above

Possible Solution

No response

Additional Information/Context

No response

SDK version used

None

Environment details (OS name and version, etc.)

Ubuntu 23.04, Python 3.12, boto3 1.34.162

@jsaladich jsaladich added bug This issue is a confirmed bug. needs-triage This issue or PR still needs to be triaged. labels Nov 2, 2024
@tim-finnigan tim-finnigan self-assigned this Nov 5, 2024
@tim-finnigan tim-finnigan added the investigating This issue is being investigated and/or work is in progress to resolve the issue. label Nov 5, 2024
@tim-finnigan
Copy link
Contributor

Thanks for reaching out. Can you share your debug logs to help us with further investigation? You can get those by adding boto3.set_stream_logger('') to your script after importing boto3.

@tim-finnigan tim-finnigan added response-requested Waiting on additional information or feedback. s3 p2 This is a standard priority issue and removed investigating This issue is being investigated and/or work is in progress to resolve the issue. needs-triage This issue or PR still needs to be triaged. labels Nov 5, 2024
@jsaladich
Copy link
Author

2024-11-05 22:01:13,232 urllib3.connectionpool [DEBUG] https://s3.gra.io.cloud.ovh.net:443 "GET /s3-data?list-type=2&encoding-type=url HTTP/11" 200 8695
2024-11-05 22:01:13,234 botocore.parsers [DEBUG] Response headers: {'Content-Type': 'application/xml', 'Content-Length': '8695', 'x-amz-id-2': 'tx786d7d2680324dce97f36-00672a95a9', 'x-amz-request-id': 'tx786d7d2680324dce97f36-00672a95a9', 'Date': 'Tue, 05 Nov 2024 22:01:13 GMT'}
2024-11-05 22:01:13,235 botocore.parsers [DEBUG] Response body:
b'\ns3-data331000urlfalse/dev_data/a.txt2024-08-28T10:55:19.000Z"7fc56270e7a70fa81a5935b72eacbe29"1STANDARD/dev_data/b.txt2024-08-28T10:55:19.000Z"f50881ced34c7d9e6bce100bf33dec60"4STANDARD/dev_data/c.txt2024-08-28T10:55:19.000Z"246477a85111d007984149b7374d1c49"539STANDARD/dev_data/d.txt2024-09-25T22:39:08.000Z"fd78b82199f942013ebc77e4e8979769"16STANDARDDAR30_pr_cli-month_CMIP6-median%2BERA5_ssp370_all-ens_global_bcqdm-global_2022-2080.nc2024-06-20T15:57:44.000Z"38902bcd036cd340dabb29f325089714-958"8034450281STANDARDMAE_CMIP6-mean_all-ssp_all-ens_global_percen-improve-vs-BC_1979-2022.nc2024-06-20T15:38:55.000Z"a9c551c761ce16ec79fd768c9a2f92a5-2"13131515STANDARDR99tot_pr_cli-month_CMIP6-median%2BERA5_ssp370_all-ens_global_bcqdm-global_2022-2080.nc2024-06-20T15:57:30.000Z"f00446f35c822860c0629d3e148b6bf7-958"8034450266STANDARDR_CMIP6-median_ssp370_all-ens_global_percen-improve-vs-BC_1979-2022.nc2024-06-20T15:38:51.000Z"0e862e4851b6af098f4eaa8403d109bd-2"13131490STANDARDT2M_era5_1daily_167_LAT0LON1_1979-2022.nc2024-06-20T15:44:31.000Z"f6971c70290dcbd35c725d14d4ff532d-174"1452570812STANDARDdev_data/a.txt2024-08-30T10:05:06.000Z"7fc56270e7a70fa81a5935b72eacbe29"1STANDARDdev_data/b.txt2024-08-30T10:05:07.000Z"f50881ced34c7d9e6bce100bf33dec60"4STANDARDdev_data/c.txt2024-08-30T10:05:07.000Z"246477a85111d007984149b7374d1c49"539STANDARDreplicate_put.json2024-10-07T17:51:27.000Z"b9522818743f2f035e421befac83768d"388STANDARDstx/MBE_CMIP6-median_ssp119_all-ens_LAT0LON0_calculated-period_1979-2022.nc2024-08-31T21:27:06.000Z"d316bc18f96e1b09f46040a5e76fd387"291033STANDARDstx/MBE_CMIP6-median_ssp460_all-ens_LAT0LON0_calculated-period_1979-2022.nc2024-08-31T21:34:19.000Z"eaba9251cc4a565ade19773160b99cee"291033STANDARDstx/R_CMIP6-median_ssp370_all-ens_global_percen-improve-vs-BC_1979-2022.nc2024-08-31T21:34:16.000Z"e4a374e3651dcec0a19d50359e56e197"13131490STANDARDstx/sfcWindmax/AvMT_tas_cli-month_CMIP6-median%2BERA5_ssp119_all-ens_global_bcqdm-global_2022-2080.nc2024-09-01T17:32:35.000Z"27fc836f45fcd216e52c0e825c71a364-5"8034450197STANDARDstx/sfcWindmax/DAR30_pr_cli-month_CMIP6-median%2BERA5_ssp370_all-ens_global_bcqdm-global_2022-2080.nc2024-09-01T17:31:39.000Z"4b689a8676d1ef9872dffe9809f5e6a8-5"8034450281STANDARDstx/sfcWindmax/MBE_CMIP6-median_ssp119_all-ens_LAT0LON0_calculated-period_1979-2022.nc2024-09-01T17:29:49.000Z"d316bc18f96e1b09f46040a5e76fd387"291033STANDARDstx/sfcWindmax/MBE_CMIP6-median_ssp460_all-ens_LAT0LON0_calculated-period_1979-2022.nc2024-09-01T17:31:41.000Z"eaba9251cc4a565ade19773160b99cee"291033STANDARDstx/sfcWindmax/R99tot_pr_cli-month_CMIP6-median%2BERA5_ssp370_all-ens_global_bcqdm-global_2022-2080.nc2024-09-01T17:31:06.000Z"d9e9bdce5398d555b286f48cd4a1d641-5"8034450266STANDARDstx/sfcWindmax/R_CMIP6-median_ssp370_all-ens_global_percen-improve-vs-BC_1979-2022.nc2024-09-01T17:31:39.000Z"e4a374e3651dcec0a19d50359e56e197"13131490STANDARDstx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc2024-09-01T17:30:15.000Z"e37bbf581ad90d67f699404cdb361cef"3365009830STANDARDstx/sfcWindmax_CMIP6-median%2BERA5_ssp119_all-ens_global_bcqdm-global_2022-2080.nc2024-09-01T22:52:26.000Z"fb53df79b8e7e4a4b86ef5a89999759a-123"244358395566STANDARDstx/sfcWindmax_CMIP6-median%2BERA5_ssp126_all-ens_global_bcqdm-global_2022-2080.nc2024-09-01T22:33:19.000Z"504d97ecbb70503eeef1d2acc7461f03-123"244358395566STANDARDstx/sfcWindmax_CMIP6-median%2BERA5_ssp245_all-ens_global_bcqdm-global_2022-2080.nc2024-09-01T22:33:27.000Z"0c66a5d81c556b508ec0cd42ffcd4d3c-123"244358395566STANDARDstx/sfcWindmax_CMIP6-median%2BERA5_ssp370_all-ens_global_bcqdm-global_2022-2080.nc2024-09-01T21:25:42.000Z"1ecf5c0549343b23b7baf66b323ee1ed-123"244358395566STANDARDstx/sfcWindmax_CMIP6-median%2BERA5_ssp434_all-ens_global_bcqdm-global_2022-2080.nc2024-09-01T22:45:48.000Z"4c09bcabc70811e49cf70e6f97b420de-123"244358395566STANDARDstx/sfcWindmax_CMIP6-median%2BERA5_ssp460_all-ens_global_bcqdm-global_2022-2080.nc2024-09-01T21:22:59.000Z"615fa7aa0e220ba5d5a1303cdfc49762-123"244358395566STANDARDstx/sfcWindmax_CMIP6-median%2BERA5_ssp585_all-ens_global_bcqdm-global_2022-2080.nc2024-09-01T21:29:32.000Z"3169d15c7b9e96273e10a171787e8626-123"244358395566STANDARDstx/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc2024-08-31T21:27:33.000Z"e37bbf581ad90d67f699404cdb361cef"3365009830STANDARDtas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc2024-06-20T15:48:45.000Z"2c0c190503e3963ecac5d93e789b4677-402"3365009830STANDARDtest/MBE_CMIP6-median_ssp460_all-ens_LAT0LON0_calculated-period_1979-2022.nc2024-08-22T07:59:14.000Z"eaba9251cc4a565ade19773160b99cee"291033STANDARD'
2024-11-05 22:01:13,248 botocore.hooks [DEBUG] Event needs-retry.s3.ListObjectsV2: calling handler <botocore.retryhandler.RetryHandler object at 0x7fc532c74c50>
2024-11-05 22:01:13,249 botocore.retryhandler [DEBUG] No retry needed.
2024-11-05 22:01:13,250 botocore.hooks [DEBUG] Event needs-retry.s3.ListObjectsV2: calling handler <bound method S3RegionRedirectorv2.redirect_from_error of <botocore.utils.S3RegionRedirectorv2 object at 0x7fc5335b9750>>
2024-11-05 22:01:13,251 botocore.hooks [DEBUG] Event after-call.s3.ListObjectsV2: calling handler <function decode_list_object_v2 at 0x7fc534986200>
2024-11-05 22:01:13,253 botocore.hooks [DEBUG] Event before-parameter-build.s3.ListObjectsV2: calling handler <function set_list_objects_encoding_type_url at 0x7fc5349860c0>
2024-11-05 22:01:13,254 botocore.hooks [DEBUG] Event before-parameter-build.s3.ListObjectsV2: calling handler <function validate_bucket_name at 0x7fc534984c20>
2024-11-05 22:01:13,255 botocore.hooks [DEBUG] Event before-parameter-build.s3.ListObjectsV2: calling handler <function remove_bucket_from_url_paths_from_model at 0x7fc534986de0>
2024-11-05 22:01:13,256 botocore.hooks [DEBUG] Event before-parameter-build.s3.ListObjectsV2: calling handler <bound method S3RegionRedirectorv2.annotate_request_context of <botocore.utils.S3RegionRedirectorv2 object at 0x7fc533d10990>>
2024-11-05 22:01:13,257 botocore.hooks [DEBUG] Event before-parameter-build.s3.ListObjectsV2: calling handler <bound method ClientCreator._inject_s3_input_parameters of <botocore.client.ClientCreator object at 0x7fc532c75110>>
2024-11-05 22:01:13,258 botocore.hooks [DEBUG] Event before-parameter-build.s3.ListObjectsV2: calling handler <function generate_idempotent_uuid at 0x7fc534984a40>
2024-11-05 22:01:13,259 botocore.hooks [DEBUG] Event before-endpoint-resolution.s3: calling handler <function customize_endpoint_resolver_builtins at 0x7fc534986fc0>
2024-11-05 22:01:13,260 botocore.hooks [DEBUG] Event before-endpoint-resolution.s3: calling handler <bound method S3RegionRedirectorv2.redirect_from_cache of <botocore.utils.S3RegionRedirectorv2 object at 0x7fc533d10990>>
2024-11-05 22:01:13,260 botocore.regions [DEBUG] Calling endpoint provider with parameters: {'Bucket': 's3-replication', 'Region': 'sbg', 'UseFIPS': False, 'UseDualStack': False, 'Endpoint': 'https://s3.sbg.io.cloud.ovh.net/', 'ForcePathStyle': True, 'Accelerate': False, 'UseGlobalEndpoint': False, 'DisableMultiRegionAccessPoints': False, 'UseArnRegion': True}
2024-11-05 22:01:13,262 botocore.regions [DEBUG] Endpoint provider result: https://s3.sbg.io.cloud.ovh.net/s3-replication
2024-11-05 22:01:13,262 botocore.regions [DEBUG] Selecting from endpoint provider's list of auth schemes: "sigv4". User selected auth scheme is: "None"
2024-11-05 22:01:13,263 botocore.regions [DEBUG] Selected auth type "v4" as "v4" with signing context params: {'region': 'sbg', 'signing_name': 's3', 'disableDoubleEncoding': True}
2024-11-05 22:01:13,264 botocore.hooks [DEBUG] Event before-call.s3.ListObjectsV2: calling handler <function add_expect_header at 0x7fc534984fe0>
2024-11-05 22:01:13,265 botocore.hooks [DEBUG] Event before-call.s3.ListObjectsV2: calling handler <bound method S3ExpressIdentityResolver.apply_signing_cache_key of <botocore.utils.S3ExpressIdentityResolver object at 0x7fc532cc8b90>>
2024-11-05 22:01:13,268 botocore.hooks [DEBUG] Event before-call.s3.ListObjectsV2: calling handler <function add_recursion_detection_header at 0x7fc53495f9c0>
2024-11-05 22:01:13,268 botocore.hooks [DEBUG] Event before-call.s3.ListObjectsV2: calling handler <function inject_api_version_header_if_needed at 0x7fc534986520>
2024-11-05 22:01:13,269 botocore.endpoint [DEBUG] Making request for OperationModel(name=ListObjectsV2) with params: {'url_path': '?list-type=2', 'query_string': {'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.34.162 md/Botocore#1.34.162 ua/2.0 os/linux#6.2.0-39-generic md/arch#x86_64 lang/python#3.11.7 md/pyimpl#CPython cfg/retry-mode#legacy Botocore/1.34.162 Resource'}, 'body': b'', 'auth_path': '/s3-replication/', 'url': 'https://s3.sbg.io.cloud.ovh.net/s3-replication?list-type=2&encoding-type=url', 'context': {'client_region': 'sbg', 'client_config': <botocore.config.Config object at 0x7fc532cc81d0>, 'has_streaming_input': False, 'auth_type': 'v4', 'encoding_type_auto_set': True, 's3_redirect': {'redirected': False, 'bucket': 's3-replication', 'params': {'Bucket': 's3-replication', 'EncodingType': 'url'}}, 'input_params': {'Bucket': 's3-replication'}, 'signing': {'region': 'sbg', 'signing_name': 's3', 'disableDoubleEncoding': True}, 'endpoint_properties': {'authSchemes': [{'disableDoubleEncoding': True, 'name': 'sigv4', 'signingName': 's3', 'signingRegion': 'sbg'}]}}}
2024-11-05 22:01:13,270 botocore.hooks [DEBUG] Event request-created.s3.ListObjectsV2: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x7fc532cc8190>>
2024-11-05 22:01:13,271 botocore.hooks [DEBUG] Event choose-signer.s3.ListObjectsV2: calling handler <function set_operation_specific_signer at 0x7fc534984900>
2024-11-05 22:01:13,272 botocore.hooks [DEBUG] Event before-sign.s3.ListObjectsV2: calling handler <function remove_arn_from_signing_path at 0x7fc534986f20>
2024-11-05 22:01:13,273 botocore.hooks [DEBUG] Event before-sign.s3.ListObjectsV2: calling handler <bound method S3ExpressIdentityResolver.resolve_s3express_identity of <botocore.utils.S3ExpressIdentityResolver object at 0x7fc532cc8b90>>
2024-11-05 22:01:13,273 botocore.auth [DEBUG] Calculating signature using v4 auth.
2024-11-05 22:01:13,274 botocore.auth [DEBUG] CanonicalRequest:
GET
/s3-replication
encoding-type=url&list-type=2
host:s3.sbg.io.cloud.ovh.net
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20241105T220113Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2024-11-05 22:01:13,275 botocore.auth [DEBUG] StringToSign:
AWS4-HMAC-SHA256
20241105T220113Z
20241105/sbg/s3/aws4_request
ffa10c1a4d32e4a3835fcc13893ddce86fa9b3a01a0e2c62a14c490c39f509ac
2024-11-05 22:01:13,276 botocore.auth [DEBUG] Signature:
4f239ea25e313684a064816c1ae295e0c761eb18c232e0419102e43ce8fa0aa8
2024-11-05 22:01:13,276 botocore.hooks [DEBUG] Event request-created.s3.ListObjectsV2: calling handler <function add_retry_headers at 0x7fc534986d40>
2024-11-05 22:01:13,277 botocore.endpoint [DEBUG] Sending http request: <AWSPreparedRequest stream_output=False, method=GET, url=https://s3.sbg.io.cloud.ovh.net/s3-replication?list-type=2&encoding-type=url, headers={'User-Agent': b'Boto3/1.34.162 md/Botocore#1.34.162 ua/2.0 os/linux#6.2.0-39-generic md/arch#x86_64 lang/python#3.11.7 md/pyimpl#CPython cfg/retry-mode#legacy Botocore/1.34.162 Resource', 'X-Amz-Date': b'20241105T220113Z', 'X-Amz-Content-SHA256': b'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 'Authorization': b'AWS4-HMAC-SHA256 Credential=f9f8cfd6ad224bf08f85f527e5bedbac/20241105/sbg/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=4f239ea25e313684a064816c1ae295e0c761eb18c232e0419102e43ce8fa0aa8', 'amz-sdk-invocation-id': b'36240702-6637-4d13-874f-da2c9089adbb', 'amz-sdk-request': b'attempt=1'}>
2024-11-05 22:01:13,278 botocore.httpsession [DEBUG] Certificate path: /geoskop/miniforge-pypy3/envs/gsk/lib/python3.11/site-packages/certifi/cacert.pem
2024-11-05 22:01:13,279 urllib3.connectionpool [DEBUG] Starting new HTTPS connection (1): s3.sbg.io.cloud.ovh.net:443
2024-11-05 22:01:13,408 urllib3.connectionpool [DEBUG] https://s3.sbg.io.cloud.ovh.net:443 "GET /s3-replication?list-type=2&encoding-type=url HTTP/11" 200 486
2024-11-05 22:01:13,410 botocore.parsers [DEBUG] Response headers: {'Content-Type': 'application/xml', 'Content-Length': '486', 'x-amz-id-2': 'txeba0fb3b285c48a9b7b7a-00672a95a9', 'x-amz-request-id': 'txeba0fb3b285c48a9b7b7a-00672a95a9', 'Date': 'Tue, 05 Nov 2024 22:01:13 GMT'}
2024-11-05 22:01:13,411 botocore.parsers [DEBUG] Response body:
b'\ns3-replication11000urlfalseafvl_def_relevance_impact.docx2024-10-19T14:05:06.000Z"4c42f8b6f0fcad50dcab22ff1dccbd1d"37314STANDARD'
2024-11-05 22:01:13,414 botocore.hooks [DEBUG] Event needs-retry.s3.ListObjectsV2: calling handler <botocore.retryhandler.RetryHandler object at 0x7fc533761550>
2024-11-05 22:01:13,415 botocore.retryhandler [DEBUG] No retry needed.
2024-11-05 22:01:13,416 botocore.hooks [DEBUG] Event needs-retry.s3.ListObjectsV2: calling handler <bound method S3RegionRedirectorv2.redirect_from_error of <botocore.utils.S3RegionRedirectorv2 object at 0x7fc533d10990>>
2024-11-05 22:01:13,417 botocore.hooks [DEBUG] Event after-call.s3.ListObjectsV2: calling handler <function decode_list_object_v2 at 0x7fc534986200>
2024-11-05 22:01:13,420 boto3.s3.transfer [DEBUG] Opting out of CRT Transfer Manager. Preferred client: classic, CRT available: False, Instance Optimized: False.
2024-11-05 22:01:13,421 boto3.s3.transfer [DEBUG] Using default client. pid: 1605663, thread: 140486210623296
2024-11-05 22:01:13,422 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,425 s3transfer.tasks [DEBUG] CopySubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7fc532d05210>}) about to wait for the following futures []
2024-11-05 22:01:13,427 s3transfer.tasks [DEBUG] CopySubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7fc532d05210>}) done waiting for dependent futures
2024-11-05 22:01:13,428 s3transfer.tasks [DEBUG] Executing task CopySubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7fc532d05210>}) with kwargs {'client': <botocore.client.S3 object at 0x7fc532cb1610>, 'config': <boto3.s3.transfer.TransferConfig object at 0x7fc533997510>, 'osutil': <s3transfer.utils.OSUtils object at 0x7fc532cb2410>, 'request_executor': <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0>, 'transfer_future': <s3transfer.futures.TransferFuture object at 0x7fc532d05210>}
2024-11-05 22:01:13,430 botocore.hooks [DEBUG] Event before-parameter-build.s3.HeadObject: calling handler <function sse_md5 at 0x7fc534984cc0>
2024-11-05 22:01:13,431 botocore.hooks [DEBUG] Event before-parameter-build.s3.HeadObject: calling handler <function validate_bucket_name at 0x7fc534984c20>
2024-11-05 22:01:13,432 botocore.hooks [DEBUG] Event before-parameter-build.s3.HeadObject: calling handler <function remove_bucket_from_url_paths_from_model at 0x7fc534986de0>
2024-11-05 22:01:13,432 botocore.hooks [DEBUG] Event before-parameter-build.s3.HeadObject: calling handler <bound method S3RegionRedirectorv2.annotate_request_context of <botocore.utils.S3RegionRedirectorv2 object at 0x7fc5335b9750>>
2024-11-05 22:01:13,433 botocore.hooks [DEBUG] Event before-parameter-build.s3.HeadObject: calling handler <bound method ClientCreator._inject_s3_input_parameters of <botocore.client.ClientCreator object at 0x7fc57b4d8f90>>
2024-11-05 22:01:13,434 botocore.hooks [DEBUG] Event before-parameter-build.s3.HeadObject: calling handler <function generate_idempotent_uuid at 0x7fc534984a40>
2024-11-05 22:01:13,435 botocore.hooks [DEBUG] Event before-endpoint-resolution.s3: calling handler <function customize_endpoint_resolver_builtins at 0x7fc534986fc0>
2024-11-05 22:01:13,436 botocore.hooks [DEBUG] Event before-endpoint-resolution.s3: calling handler <bound method S3RegionRedirectorv2.redirect_from_cache of <botocore.utils.S3RegionRedirectorv2 object at 0x7fc5335b9750>>
2024-11-05 22:01:13,436 botocore.regions [DEBUG] Calling endpoint provider with parameters: {'Bucket': 's3-data', 'Region': 'gra', 'UseFIPS': False, 'UseDualStack': False, 'Endpoint': 'https://s3.gra.io.cloud.ovh.net/', 'ForcePathStyle': True, 'Accelerate': False, 'UseGlobalEndpoint': False, 'Key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'DisableMultiRegionAccessPoints': False, 'UseArnRegion': True}
2024-11-05 22:01:13,438 botocore.regions [DEBUG] Endpoint provider result: https://s3.gra.io.cloud.ovh.net/s3-data
2024-11-05 22:01:13,438 botocore.regions [DEBUG] Selecting from endpoint provider's list of auth schemes: "sigv4". User selected auth scheme is: "None"
2024-11-05 22:01:13,439 botocore.regions [DEBUG] Selected auth type "v4" as "v4" with signing context params: {'region': 'gra', 'signing_name': 's3', 'disableDoubleEncoding': True}
2024-11-05 22:01:13,440 botocore.hooks [DEBUG] Event before-call.s3.HeadObject: calling handler <function add_expect_header at 0x7fc534984fe0>
2024-11-05 22:01:13,441 botocore.hooks [DEBUG] Event before-call.s3.HeadObject: calling handler <bound method S3ExpressIdentityResolver.apply_signing_cache_key of <botocore.utils.S3ExpressIdentityResolver object at 0x7fc532c74e90>>
2024-11-05 22:01:13,444 botocore.hooks [DEBUG] Event before-call.s3.HeadObject: calling handler <function add_recursion_detection_header at 0x7fc53495f9c0>
2024-11-05 22:01:13,444 botocore.hooks [DEBUG] Event before-call.s3.HeadObject: calling handler <function inject_api_version_header_if_needed at 0x7fc534986520>
2024-11-05 22:01:13,445 botocore.endpoint [DEBUG] Making request for OperationModel(name=HeadObject) with params: {'url_path': '/stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.34.162 md/Botocore#1.34.162 ua/2.0 os/linux#6.2.0-39-generic md/arch#x86_64 lang/python#3.11.7 md/pyimpl#CPython cfg/retry-mode#legacy Botocore/1.34.162 Resource'}, 'body': b'', 'auth_path': '/s3-data/stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'url': 'https://s3.gra.io.cloud.ovh.net/s3-data/stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'context': {'client_region': 'gra', 'client_config': <botocore.config.Config object at 0x7fc532c64590>, 'has_streaming_input': False, 'auth_type': 'v4', 's3_redirect': {'redirected': False, 'bucket': 's3-data', 'params': {'Bucket': 's3-data', 'Key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc'}}, 'input_params': {'Bucket': 's3-data', 'Key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc'}, 'signing': {'region': 'gra', 'signing_name': 's3', 'disableDoubleEncoding': True}, 'endpoint_properties': {'authSchemes': [{'disableDoubleEncoding': True, 'name': 'sigv4', 'signingName': 's3', 'signingRegion': 'gra'}]}}}
2024-11-05 22:01:13,446 botocore.hooks [DEBUG] Event request-created.s3.HeadObject: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x7fc532c64550>>
2024-11-05 22:01:13,447 botocore.hooks [DEBUG] Event choose-signer.s3.HeadObject: calling handler <function set_operation_specific_signer at 0x7fc534984900>
2024-11-05 22:01:13,448 botocore.hooks [DEBUG] Event before-sign.s3.HeadObject: calling handler <function remove_arn_from_signing_path at 0x7fc534986f20>
2024-11-05 22:01:13,449 botocore.hooks [DEBUG] Event before-sign.s3.HeadObject: calling handler <bound method S3ExpressIdentityResolver.resolve_s3express_identity of <botocore.utils.S3ExpressIdentityResolver object at 0x7fc532c74e90>>
2024-11-05 22:01:13,450 botocore.auth [DEBUG] Calculating signature using v4 auth.
2024-11-05 22:01:13,450 botocore.auth [DEBUG] CanonicalRequest:
HEAD
/s3-data/stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc

host:s3.gra.io.cloud.ovh.net
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20241105T220113Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2024-11-05 22:01:13,451 botocore.auth [DEBUG] StringToSign:
AWS4-HMAC-SHA256
20241105T220113Z
20241105/gra/s3/aws4_request
d1c94fd47c41f6d1cbe638281f62c4e50079439713dc31b43f40473db53b12e0
2024-11-05 22:01:13,453 botocore.auth [DEBUG] Signature:
cd5301d16ce5dc7c58448e93d671a406f2acc2ac73d77daad86132b419d4b0e2
2024-11-05 22:01:13,454 botocore.hooks [DEBUG] Event request-created.s3.HeadObject: calling handler <function add_retry_headers at 0x7fc534986d40>
2024-11-05 22:01:13,454 botocore.endpoint [DEBUG] Sending http request: <AWSPreparedRequest stream_output=False, method=HEAD, url=https://s3.gra.io.cloud.ovh.net/s3-data/stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc, headers={'User-Agent': b'Boto3/1.34.162 md/Botocore#1.34.162 ua/2.0 os/linux#6.2.0-39-generic md/arch#x86_64 lang/python#3.11.7 md/pyimpl#CPython cfg/retry-mode#legacy Botocore/1.34.162 Resource', 'X-Amz-Date': b'20241105T220113Z', 'X-Amz-Content-SHA256': b'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 'Authorization': b'AWS4-HMAC-SHA256 Credential=f9f8cfd6ad224bf08f85f527e5bedbac/20241105/gra/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=cd5301d16ce5dc7c58448e93d671a406f2acc2ac73d77daad86132b419d4b0e2', 'amz-sdk-invocation-id': b'fc8d9f0c-ab59-4bfc-be23-ded148163bc6', 'amz-sdk-request': b'attempt=1'}>
2024-11-05 22:01:13,456 botocore.httpsession [DEBUG] Certificate path: /geoskop/miniforge-pypy3/envs/gsk/lib/python3.11/site-packages/certifi/cacert.pem
2024-11-05 22:01:13,476 urllib3.connectionpool [DEBUG] https://s3.gra.io.cloud.ovh.net:443 "HEAD /s3-data/stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc HTTP/11" 200 0
2024-11-05 22:01:13,477 botocore.parsers [DEBUG] Response headers: {'Content-Type': 'binary/octet-stream', 'Content-Length': '3365009830', 'ETag': '"e37bbf581ad90d67f699404cdb361cef"', 'x-amz-version-id': '1725211789.200808', 'Last-Modified': 'Sun, 01 Sep 2024 17:30:15 GMT', 'Accept-Ranges': 'bytes', 'x-amz-id-2': 'tx5208ff55fa7743fabe7b4-00672a95a9', 'x-amz-request-id': 'tx5208ff55fa7743fabe7b4-00672a95a9', 'Date': 'Tue, 05 Nov 2024 22:01:13 GMT'}
2024-11-05 22:01:13,478 botocore.parsers [DEBUG] Response body:
b''
2024-11-05 22:01:13,480 botocore.hooks [DEBUG] Event needs-retry.s3.HeadObject: calling handler <botocore.retryhandler.RetryHandler object at 0x7fc532c74c50>
2024-11-05 22:01:13,481 botocore.retryhandler [DEBUG] No retry needed.
2024-11-05 22:01:13,482 botocore.hooks [DEBUG] Event needs-retry.s3.HeadObject: calling handler <bound method S3RegionRedirectorv2.redirect_from_error of <botocore.utils.S3RegionRedirectorv2 object at 0x7fc5335b9750>>
2024-11-05 22:01:13,483 s3transfer.futures [DEBUG] Submitting task CreateMultipartUploadTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'extra_args': {}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,484 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,486 s3transfer.tasks [DEBUG] CreateMultipartUploadTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'extra_args': {}}) about to wait for the following futures []
2024-11-05 22:01:13,488 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 1, 'extra_args': {'CopySourceRange': 'bytes=0-8388607'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,490 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,488 s3transfer.tasks [DEBUG] CreateMultipartUploadTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'extra_args': {}}) done waiting for dependent futures
2024-11-05 22:01:13,492 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 1, 'extra_args': {'CopySourceRange': 'bytes=0-8388607'}}) about to wait for the following futures [<s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>]
2024-11-05 22:01:13,492 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 2, 'extra_args': {'CopySourceRange': 'bytes=8388608-16777215'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,493 s3transfer.tasks [DEBUG] Executing task CreateMultipartUploadTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'extra_args': {}}) with kwargs {'client': <botocore.client.S3 object at 0x7fc532cb1610>, 'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'extra_args': {}}
2024-11-05 22:01:13,494 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 1, 'extra_args': {'CopySourceRange': 'bytes=0-8388607'}}) about to wait for <s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>
2024-11-05 22:01:13,495 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,496 botocore.hooks [DEBUG] Event before-parameter-build.s3.CreateMultipartUpload: calling handler <function validate_ascii_metadata at 0x7fc5349859e0>
2024-11-05 22:01:13,499 botocore.hooks [DEBUG] Event before-parameter-build.s3.CreateMultipartUpload: calling handler <function sse_md5 at 0x7fc534984cc0>
2024-11-05 22:01:13,499 botocore.hooks [DEBUG] Event before-parameter-build.s3.CreateMultipartUpload: calling handler <function validate_bucket_name at 0x7fc534984c20>
2024-11-05 22:01:13,500 botocore.hooks [DEBUG] Event before-parameter-build.s3.CreateMultipartUpload: calling handler <function remove_bucket_from_url_paths_from_model at 0x7fc534986de0>
2024-11-05 22:01:13,501 botocore.hooks [DEBUG] Event before-parameter-build.s3.CreateMultipartUpload: calling handler <bound method S3RegionRedirectorv2.annotate_request_context of <botocore.utils.S3RegionRedirectorv2 object at 0x7fc533d10990>>
2024-11-05 22:01:13,501 botocore.hooks [DEBUG] Event before-parameter-build.s3.CreateMultipartUpload: calling handler <bound method ClientCreator._inject_s3_input_parameters of <botocore.client.ClientCreator object at 0x7fc532c75110>>
2024-11-05 22:01:13,502 botocore.hooks [DEBUG] Event before-parameter-build.s3.CreateMultipartUpload: calling handler <function generate_idempotent_uuid at 0x7fc534984a40>
2024-11-05 22:01:13,502 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 2, 'extra_args': {'CopySourceRange': 'bytes=8388608-16777215'}}) about to wait for the following futures [<s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>]
2024-11-05 22:01:13,505 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 2, 'extra_args': {'CopySourceRange': 'bytes=8388608-16777215'}}) about to wait for <s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>
2024-11-05 22:01:13,504 botocore.hooks [DEBUG] Event before-endpoint-resolution.s3: calling handler <function customize_endpoint_resolver_builtins at 0x7fc534986fc0>
2024-11-05 22:01:13,503 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 3, 'extra_args': {'CopySourceRange': 'bytes=16777216-25165823'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,508 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,507 botocore.hooks [DEBUG] Event before-endpoint-resolution.s3: calling handler <bound method S3RegionRedirectorv2.redirect_from_cache of <botocore.utils.S3RegionRedirectorv2 object at 0x7fc533d10990>>
2024-11-05 22:01:13,509 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 3, 'extra_args': {'CopySourceRange': 'bytes=16777216-25165823'}}) about to wait for the following futures [<s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>]
2024-11-05 22:01:13,509 botocore.regions [DEBUG] Calling endpoint provider with parameters: {'Bucket': 's3-replication', 'Region': 'sbg', 'UseFIPS': False, 'UseDualStack': False, 'Endpoint': 'https://s3.sbg.io.cloud.ovh.net/', 'ForcePathStyle': True, 'Accelerate': False, 'UseGlobalEndpoint': False, 'Key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'DisableMultiRegionAccessPoints': False, 'UseArnRegion': True}
2024-11-05 22:01:13,510 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 4, 'extra_args': {'CopySourceRange': 'bytes=25165824-33554431'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,513 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,512 botocore.regions [DEBUG] Endpoint provider result: https://s3.sbg.io.cloud.ovh.net/s3-replication
2024-11-05 22:01:13,511 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 3, 'extra_args': {'CopySourceRange': 'bytes=16777216-25165823'}}) about to wait for <s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>
2024-11-05 22:01:13,514 botocore.regions [DEBUG] Selecting from endpoint provider's list of auth schemes: "sigv4". User selected auth scheme is: "None"
2024-11-05 22:01:13,516 botocore.regions [DEBUG] Selected auth type "v4" as "v4" with signing context params: {'region': 'sbg', 'signing_name': 's3', 'disableDoubleEncoding': True}
2024-11-05 22:01:13,514 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 5, 'extra_args': {'CopySourceRange': 'bytes=33554432-41943039'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,517 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,517 botocore.hooks [DEBUG] Event before-call.s3.CreateMultipartUpload: calling handler <function add_expect_header at 0x7fc534984fe0>
2024-11-05 22:01:13,519 botocore.hooks [DEBUG] Event before-call.s3.CreateMultipartUpload: calling handler <bound method S3ExpressIdentityResolver.apply_signing_cache_key of <botocore.utils.S3ExpressIdentityResolver object at 0x7fc532cc8b90>>
2024-11-05 22:01:13,519 botocore.hooks [DEBUG] Event before-call.s3.CreateMultipartUpload: calling handler <function add_recursion_detection_header at 0x7fc53495f9c0>
2024-11-05 22:01:13,514 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 4, 'extra_args': {'CopySourceRange': 'bytes=25165824-33554431'}}) about to wait for the following futures [<s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>]
2024-11-05 22:01:13,520 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 5, 'extra_args': {'CopySourceRange': 'bytes=33554432-41943039'}}) about to wait for the following futures [<s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>]
2024-11-05 22:01:13,520 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 6, 'extra_args': {'CopySourceRange': 'bytes=41943040-50331647'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,522 botocore.hooks [DEBUG] Event before-call.s3.CreateMultipartUpload: calling handler <function inject_api_version_header_if_needed at 0x7fc534986520>
2024-11-05 22:01:13,523 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 4, 'extra_args': {'CopySourceRange': 'bytes=25165824-33554431'}}) about to wait for <s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>
2024-11-05 22:01:13,523 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 5, 'extra_args': {'CopySourceRange': 'bytes=33554432-41943039'}}) about to wait for <s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>
2024-11-05 22:01:13,524 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,525 botocore.endpoint [DEBUG] Making request for OperationModel(name=CreateMultipartUpload) with params: {'url_path': '/stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc?uploads', 'query_string': {}, 'method': 'POST', 'headers': {'User-Agent': 'Boto3/1.34.162 md/Botocore#1.34.162 ua/2.0 os/linux#6.2.0-39-generic md/arch#x86_64 lang/python#3.11.7 md/pyimpl#CPython cfg/retry-mode#legacy Botocore/1.34.162 Resource'}, 'body': b'', 'auth_path': '/s3-replication/stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'url': 'https://s3.sbg.io.cloud.ovh.net/s3-replication/stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc?uploads', 'context': {'client_region': 'sbg', 'client_config': <botocore.config.Config object at 0x7fc532cc81d0>, 'has_streaming_input': False, 'auth_type': 'v4', 's3_redirect': {'redirected': False, 'bucket': 's3-replication', 'params': {'Bucket': 's3-replication', 'Key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc'}}, 'input_params': {'Bucket': 's3-replication', 'Key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc'}, 'signing': {'region': 'sbg', 'signing_name': 's3', 'disableDoubleEncoding': True}, 'endpoint_properties': {'authSchemes': [{'disableDoubleEncoding': True, 'name': 'sigv4', 'signingName': 's3', 'signingRegion': 'sbg'}]}}}
2024-11-05 22:01:13,528 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 6, 'extra_args': {'CopySourceRange': 'bytes=41943040-50331647'}}) about to wait for the following futures [<s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>]
2024-11-05 22:01:13,528 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 7, 'extra_args': {'CopySourceRange': 'bytes=50331648-58720255'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,530 botocore.hooks [DEBUG] Event request-created.s3.CreateMultipartUpload: calling handler <function signal_not_transferring at 0x7fc53410e160>
2024-11-05 22:01:13,532 botocore.hooks [DEBUG] Event request-created.s3.CreateMultipartUpload: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x7fc532cc8190>>
2024-11-05 22:01:13,531 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,530 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 6, 'extra_args': {'CopySourceRange': 'bytes=41943040-50331647'}}) about to wait for <s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>
2024-11-05 22:01:13,532 botocore.hooks [DEBUG] Event choose-signer.s3.CreateMultipartUpload: calling handler <function set_operation_specific_signer at 0x7fc534984900>
2024-11-05 22:01:13,536 botocore.hooks [DEBUG] Event before-sign.s3.CreateMultipartUpload: calling handler <function remove_arn_from_signing_path at 0x7fc534986f20>
2024-11-05 22:01:13,535 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 8, 'extra_args': {'CopySourceRange': 'bytes=58720256-67108863'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,537 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,537 botocore.hooks [DEBUG] Event before-sign.s3.CreateMultipartUpload: calling handler <bound method S3ExpressIdentityResolver.resolve_s3express_identity of <botocore.utils.S3ExpressIdentityResolver object at 0x7fc532cc8b90>>
2024-11-05 22:01:13,534 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 7, 'extra_args': {'CopySourceRange': 'bytes=50331648-58720255'}}) about to wait for the following futures [<s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>]
2024-11-05 22:01:13,540 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 7, 'extra_args': {'CopySourceRange': 'bytes=50331648-58720255'}}) about to wait for <s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>
2024-11-05 22:01:13,539 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 8, 'extra_args': {'CopySourceRange': 'bytes=58720256-67108863'}}) about to wait for the following futures [<s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>]
2024-11-05 22:01:13,539 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 9, 'extra_args': {'CopySourceRange': 'bytes=67108864-75497471'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,544 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,543 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 8, 'extra_args': {'CopySourceRange': 'bytes=58720256-67108863'}}) about to wait for <s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>
2024-11-05 22:01:13,539 botocore.auth [DEBUG] Calculating signature using v4 auth.
2024-11-05 22:01:13,547 botocore.auth [DEBUG] CanonicalRequest:
POST
/s3-replication/stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc
uploads=
host:s3.sbg.io.cloud.ovh.net
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20241105T220113Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2024-11-05 22:01:13,545 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 10, 'extra_args': {'CopySourceRange': 'bytes=75497472-83886079'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,545 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 9, 'extra_args': {'CopySourceRange': 'bytes=67108864-75497471'}}) about to wait for the following futures [<s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>]
2024-11-05 22:01:13,547 botocore.auth [DEBUG] StringToSign:
AWS4-HMAC-SHA256
20241105T220113Z
20241105/sbg/s3/aws4_request
2c0ebf3465338fe89ba28300061a3c36a042b493c60eb9b12fc4bf364079603a
2024-11-05 22:01:13,548 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,549 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 9, 'extra_args': {'CopySourceRange': 'bytes=67108864-75497471'}}) about to wait for <s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>
2024-11-05 22:01:13,550 botocore.auth [DEBUG] Signature:
c3592735c9d7b195682cd23690f07708637b98f69ffaad3f35f2b3476be54e18
2024-11-05 22:01:13,551 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 11, 'extra_args': {'CopySourceRange': 'bytes=83886080-92274687'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,553 botocore.hooks [DEBUG] Event request-created.s3.CreateMultipartUpload: calling handler <function signal_transferring at 0x7fc53410e480>
2024-11-05 22:01:13,553 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,554 botocore.hooks [DEBUG] Event request-created.s3.CreateMultipartUpload: calling handler <function add_retry_headers at 0x7fc534986d40>
2024-11-05 22:01:13,554 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 12, 'extra_args': {'CopySourceRange': 'bytes=92274688-100663295'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,555 botocore.endpoint [DEBUG] Sending http request: <AWSPreparedRequest stream_output=False, method=POST, url=https://s3.sbg.io.cloud.ovh.net/s3-replication/stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc?uploads, headers={'User-Agent': b'Boto3/1.34.162 md/Botocore#1.34.162 ua/2.0 os/linux#6.2.0-39-generic md/arch#x86_64 lang/python#3.11.7 md/pyimpl#CPython cfg/retry-mode#legacy Botocore/1.34.162 Resource', 'X-Amz-Date': b'20241105T220113Z', 'X-Amz-Content-SHA256': b'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 'Authorization': b'AWS4-HMAC-SHA256 Credential=f9f8cfd6ad224bf08f85f527e5bedbac/20241105/sbg/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=c3592735c9d7b195682cd23690f07708637b98f69ffaad3f35f2b3476be54e18', 'amz-sdk-invocation-id': b'5b98dc7d-956b-4f8b-9ef8-5cb9b6a90244', 'amz-sdk-request': b'attempt=1', 'Content-Length': '0'}>
2024-11-05 22:01:13,556 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,557 botocore.httpsession [DEBUG] Certificate path: /geoskop/miniforge-pypy3/envs/gsk/lib/python3.11/site-packages/certifi/cacert.pem
2024-11-05 22:01:13,557 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 13, 'extra_args': {'CopySourceRange': 'bytes=100663296-109051903'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,559 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,560 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 14, 'extra_args': {'CopySourceRange': 'bytes=109051904-117440511'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,560 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,561 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 15, 'extra_args': {'CopySourceRange': 'bytes=117440512-125829119'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,561 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,562 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 16, 'extra_args': {'CopySourceRange': 'bytes=125829120-134217727'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,563 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,563 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 17, 'extra_args': {'CopySourceRange': 'bytes=134217728-142606335'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,564 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,564 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 18, 'extra_args': {'CopySourceRange': 'bytes=142606336-150994943'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,565 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,565 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 19, 'extra_args': {'CopySourceRange': 'bytes=150994944-159383551'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,566 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,566 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 20, 'extra_args': {'CopySourceRange': 'bytes=159383552-167772159'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,567 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,567 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 21, 'extra_args': {'CopySourceRange': 'bytes=167772160-176160767'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,568 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,568 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 22, 'extra_args': {'CopySourceRange': 'bytes=176160768-184549375'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,569 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,569 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 23, 'extra_args': {'CopySourceRange': 'bytes=184549376-192937983'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,570 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,570 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 24, 'extra_args': {'CopySourceRange': 'bytes=192937984-201326591'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,571 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,571 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 25, 'extra_args': {'CopySourceRange': 'bytes=201326592-209715199'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,572 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,572 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 26, 'extra_args': {'CopySourceRange': 'bytes=209715200-218103807'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,573 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,573 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 27, 'extra_args': {'CopySourceRange': 'bytes=218103808-226492415'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,574 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,574 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 28, 'extra_args': {'CopySourceRange': 'bytes=226492416-234881023'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,575 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,575 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 29, 'extra_args': {'CopySourceRange': 'bytes=234881024-243269631'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,576 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,576 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 30, 'extra_args': {'CopySourceRange': 'bytes=243269632-251658239'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,577 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,577 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 31, 'extra_args': {'CopySourceRange': 'bytes=251658240-260046847'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,578 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,578 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 32, 'extra_args': {'CopySourceRange': 'bytes=260046848-268435455'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,579 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,580 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 33, 'extra_args': {'CopySourceRange': 'bytes=268435456-276824063'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,580 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,581 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 34, 'extra_args': {'CopySourceRange': 'bytes=276824064-285212671'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,581 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,582 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 35, 'extra_args': {'CopySourceRange': 'bytes=285212672-293601279'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,582 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,583 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 36, 'extra_args': {'CopySourceRange': 'bytes=293601280-301989887'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,583 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,584 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 37, 'extra_args': {'CopySourceRange': 'bytes=301989888-310378495'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,584 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,585 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 38, 'extra_args': {'CopySourceRange': 'bytes=310378496-318767103'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,585 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,586 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 39, 'extra_args': {'CopySourceRange': 'bytes=318767104-327155711'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,586 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,587 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 40, 'extra_args': {'CopySourceRange': 'bytes=327155712-335544319'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,587 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,588 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 41, 'extra_args': {'CopySourceRange': 'bytes=335544320-343932927'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,588 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,589 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 42, 'extra_args': {'CopySourceRange': 'bytes=343932928-352321535'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,589 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,590 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 43, 'extra_args': {'CopySourceRange': 'bytes=352321536-360710143'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,590 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,591 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 44, 'extra_args': {'CopySourceRange': 'bytes=360710144-369098751'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,591 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,592 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 45, 'extra_args': {'CopySourceRange': 'bytes=369098752-377487359'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,593 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,593 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 46, 'extra_args': {'CopySourceRange': 'bytes=377487360-385875967'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,594 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,594 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 47, 'extra_args': {'CopySourceRange': 'bytes=385875968-394264575'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,595 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,595 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 48, 'extra_args': {'CopySourceRange': 'bytes=394264576-402653183'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,596 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,596 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 49, 'extra_args': {'CopySourceRange': 'bytes=402653184-411041791'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,597 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,597 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 50, 'extra_args': {'CopySourceRange': 'bytes=411041792-419430399'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,598 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,598 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 51, 'extra_args': {'CopySourceRange': 'bytes=419430400-427819007'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,599 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,600 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 52, 'extra_args': {'CopySourceRange': 'bytes=427819008-436207615'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,600 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,601 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 53, 'extra_args': {'CopySourceRange': 'bytes=436207616-444596223'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,601 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,602 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 54, 'extra_args': {'CopySourceRange': 'bytes=444596224-452984831'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,602 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,603 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 55, 'extra_args': {'CopySourceRange': 'bytes=452984832-461373439'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,603 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,604 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 56, 'extra_args': {'CopySourceRange': 'bytes=461373440-469762047'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,604 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,605 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 57, 'extra_args': {'CopySourceRange': 'bytes=469762048-478150655'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,605 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,606 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 58, 'extra_args': {'CopySourceRange': 'bytes=478150656-486539263'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,606 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,607 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 59, 'extra_args': {'CopySourceRange': 'bytes=486539264-494927871'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,607 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,608 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 60, 'extra_args': {'CopySourceRange': 'bytes=494927872-503316479'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,608 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,609 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 61, 'extra_args': {'CopySourceRange': 'bytes=503316480-511705087'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,609 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,610 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 62, 'extra_args': {'CopySourceRange': 'bytes=511705088-520093695'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,611 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,611 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 63, 'extra_args': {'CopySourceRange': 'bytes=520093696-528482303'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,612 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,612 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 64, 'extra_args': {'CopySourceRange': 'bytes=528482304-536870911'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,613 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,613 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 65, 'extra_args': {'CopySourceRange': 'bytes=536870912-545259519'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,614 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,614 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 66, 'extra_args': {'CopySourceRange': 'bytes=545259520-553648127'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,615 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,615 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 67, 'extra_args': {'CopySourceRange': 'bytes=553648128-562036735'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,616 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,616 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 68, 'extra_args': {'CopySourceRange': 'bytes=562036736-570425343'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,617 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,617 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 69, 'extra_args': {'CopySourceRange': 'bytes=570425344-578813951'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,618 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,618 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 70, 'extra_args': {'CopySourceRange': 'bytes=578813952-587202559'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,619 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,620 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 71, 'extra_args': {'CopySourceRange': 'bytes=587202560-595591167'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,620 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,621 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 72, 'extra_args': {'CopySourceRange': 'bytes=595591168-603979775'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,621 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05T22:01:13: Replicating from s3-data to s3-replication:
stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc
2024-11-05 22:01:13,622 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 73, 'extra_args': {'CopySourceRange': 'bytes=603979776-612368383'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,622 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,623 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 74, 'extra_args': {'CopySourceRange': 'bytes=612368384-620756991'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,623 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,624 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 75, 'extra_args': {'CopySourceRange': 'bytes=620756992-629145599'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,624 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,625 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 76, 'extra_args': {'CopySourceRange': 'bytes=629145600-637534207'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,625 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,626 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 77, 'extra_args': {'CopySourceRange': 'bytes=637534208-645922815'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,626 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,627 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 78, 'extra_args': {'CopySourceRange': 'bytes=645922816-654311423'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,627 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,628 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 79, 'extra_args': {'CopySourceRange': 'bytes=654311424-662700031'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,629 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,629 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 80, 'extra_args': {'CopySourceRange': 'bytes=662700032-671088639'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,630 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,630 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 81, 'extra_args': {'CopySourceRange': 'bytes=671088640-679477247'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,631 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,631 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 82, 'extra_args': {'CopySourceRange': 'bytes=679477248-687865855'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,632 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,632 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 83, 'extra_args': {'CopySourceRange': 'bytes=687865856-696254463'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,633 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,633 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 84, 'extra_args': {'CopySourceRange': 'bytes=696254464-704643071'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,634 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,635 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 85, 'extra_args': {'CopySourceRange': 'bytes=704643072-713031679'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,635 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,636 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 86, 'extra_args': {'CopySourceRange': 'bytes=713031680-721420287'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,636 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,637 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 87, 'extra_args': {'CopySourceRange': 'bytes=721420288-729808895'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,637 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,638 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 88, 'extra_args': {'CopySourceRange': 'bytes=729808896-738197503'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,638 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,639 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 89, 'extra_args': {'CopySourceRange': 'bytes=738197504-746586111'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,639 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,640 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 90, 'extra_args': {'CopySourceRange': 'bytes=746586112-754974719'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,640 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,641 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 91, 'extra_args': {'CopySourceRange': 'bytes=754974720-763363327'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,641 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,642 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 92, 'extra_args': {'CopySourceRange': 'bytes=763363328-771751935'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,642 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,643 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 93, 'extra_args': {'CopySourceRange': 'bytes=771751936-780140543'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,644 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,644 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 94, 'extra_args': {'CopySourceRange': 'bytes=780140544-788529151'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,645 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,645 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 95, 'extra_args': {'CopySourceRange': 'bytes=788529152-796917759'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,646 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,646 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 96, 'extra_args': {'CopySourceRange': 'bytes=796917760-805306367'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,647 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,647 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 97, 'extra_args': {'CopySourceRange': 'bytes=805306368-813694975'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,648 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,648 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 98, 'extra_args': {'CopySourceRange': 'bytes=813694976-822083583'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,649 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,649 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 99, 'extra_args': {'CopySourceRange': 'bytes=822083584-830472191'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,650 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,651 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 100, 'extra_args': {'CopySourceRange': 'bytes=830472192-838860799'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,651 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,652 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 101, 'extra_args': {'CopySourceRange': 'bytes=838860800-847249407'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,652 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,653 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 102, 'extra_args': {'CopySourceRange': 'bytes=847249408-855638015'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,653 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,654 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 103, 'extra_args': {'CopySourceRange': 'bytes=855638016-864026623'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,654 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,655 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 104, 'extra_args': {'CopySourceRange': 'bytes=864026624-872415231'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,655 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,656 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 105, 'extra_args': {'CopySourceRange': 'bytes=872415232-880803839'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,656 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,657 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 106, 'extra_args': {'CopySourceRange': 'bytes=880803840-889192447'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,657 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,658 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 107, 'extra_args': {'CopySourceRange': 'bytes=889192448-897581055'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,658 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,659 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 108, 'extra_args': {'CopySourceRange': 'bytes=897581056-905969663'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,659 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,660 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 109, 'extra_args': {'CopySourceRange': 'bytes=905969664-914358271'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,660 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,661 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 110, 'extra_args': {'CopySourceRange': 'bytes=914358272-922746879'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,662 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,662 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 111, 'extra_args': {'CopySourceRange': 'bytes=922746880-931135487'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,663 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,663 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 112, 'extra_args': {'CopySourceRange': 'bytes=931135488-939524095'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,664 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,665 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 113, 'extra_args': {'CopySourceRange': 'bytes=939524096-947912703'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,666 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,667 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 114, 'extra_args': {'CopySourceRange': 'bytes=947912704-956301311'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,668 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,669 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 115, 'extra_args': {'CopySourceRange': 'bytes=956301312-964689919'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,674 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,674 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 116, 'extra_args': {'CopySourceRange': 'bytes=964689920-973078527'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,674 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,675 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 117, 'extra_args': {'CopySourceRange': 'bytes=973078528-981467135'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,697 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,697 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 118, 'extra_args': {'CopySourceRange': 'bytes=981467136-989855743'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,702 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,703 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 119, 'extra_args': {'CopySourceRange': 'bytes=989855744-998244351'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,703 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,704 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 120, 'extra_args': {'CopySourceRange': 'bytes=998244352-1006632959'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,704 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,705 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 121, 'extra_args': {'CopySourceRange': 'bytes=1006632960-1015021567'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,705 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,706 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 122, 'extra_args': {'CopySourceRange': 'bytes=1015021568-1023410175'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,706 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,707 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 123, 'extra_args': {'CopySourceRange': 'bytes=1023410176-1031798783'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,708 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,708 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 124, 'extra_args': {'CopySourceRange': 'bytes=1031798784-1040187391'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,709 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,709 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 125, 'extra_args': {'CopySourceRange': 'bytes=1040187392-1048575999'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,711 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,712 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 126, 'extra_args': {'CopySourceRange': 'bytes=1048576000-1056964607'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,713 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,713 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 127, 'extra_args': {'CopySourceRange': 'bytes=1056964608-1065353215'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,714 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,715 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 128, 'extra_args': {'CopySourceRange': 'bytes=1065353216-1073741823'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,715 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,716 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 129, 'extra_args': {'CopySourceRange': 'bytes=1073741824-1082130431'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,717 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,717 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 130, 'extra_args': {'CopySourceRange': 'bytes=1082130432-1090519039'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,718 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,719 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 131, 'extra_args': {'CopySourceRange': 'bytes=1090519040-1098907647'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,720 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,720 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 132, 'extra_args': {'CopySourceRange': 'bytes=1098907648-1107296255'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,721 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,722 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 133, 'extra_args': {'CopySourceRange': 'bytes=1107296256-1115684863'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,723 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,724 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 134, 'extra_args': {'CopySourceRange': 'bytes=1115684864-1124073471'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,725 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,725 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 135, 'extra_args': {'CopySourceRange': 'bytes=1124073472-1132462079'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,726 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,727 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 136, 'extra_args': {'CopySourceRange': 'bytes=1132462080-1140850687'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,728 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,729 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 137, 'extra_args': {'CopySourceRange': 'bytes=1140850688-1149239295'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,730 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,731 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 138, 'extra_args': {'CopySourceRange': 'bytes=1149239296-1157627903'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,732 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,733 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 139, 'extra_args': {'CopySourceRange': 'bytes=1157627904-1166016511'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,734 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,735 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 140, 'extra_args': {'CopySourceRange': 'bytes=1166016512-1174405119'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,735 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,736 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 141, 'extra_args': {'CopySourceRange': 'bytes=1174405120-1182793727'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,737 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,737 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 142, 'extra_args': {'CopySourceRange': 'bytes=1182793728-1191182335'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,738 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,738 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 143, 'extra_args': {'CopySourceRange': 'bytes=1191182336-1199570943'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,739 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,740 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 144, 'extra_args': {'CopySourceRange': 'bytes=1199570944-1207959551'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,740 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,742 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 145, 'extra_args': {'CopySourceRange': 'bytes=1207959552-1216348159'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,743 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,744 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 146, 'extra_args': {'CopySourceRange': 'bytes=1216348160-1224736767'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,744 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,745 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 147, 'extra_args': {'CopySourceRange': 'bytes=1224736768-1233125375'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,746 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,746 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 148, 'extra_args': {'CopySourceRange': 'bytes=1233125376-1241513983'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,747 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,749 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 149, 'extra_args': {'CopySourceRange': 'bytes=1241513984-1249902591'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,749 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,750 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 150, 'extra_args': {'CopySourceRange': 'bytes=1249902592-1258291199'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,751 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,751 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 151, 'extra_args': {'CopySourceRange': 'bytes=1258291200-1266679807'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,752 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,753 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 152, 'extra_args': {'CopySourceRange': 'bytes=1266679808-1275068415'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,754 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,754 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 153, 'extra_args': {'CopySourceRange': 'bytes=1275068416-1283457023'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,755 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,756 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 154, 'extra_args': {'CopySourceRange': 'bytes=1283457024-1291845631'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,756 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,758 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 155, 'extra_args': {'CopySourceRange': 'bytes=1291845632-1300234239'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,759 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,759 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 156, 'extra_args': {'CopySourceRange': 'bytes=1300234240-1308622847'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,760 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,761 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 157, 'extra_args': {'CopySourceRange': 'bytes=1308622848-1317011455'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,762 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,762 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 158, 'extra_args': {'CopySourceRange': 'bytes=1317011456-1325400063'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,763 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,764 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 159, 'extra_args': {'CopySourceRange': 'bytes=1325400064-1333788671'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,765 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,765 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 160, 'extra_args': {'CopySourceRange': 'bytes=1333788672-1342177279'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,766 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,767 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 161, 'extra_args': {'CopySourceRange': 'bytes=1342177280-1350565887'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,767 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,768 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 162, 'extra_args': {'CopySourceRange': 'bytes=1350565888-1358954495'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,768 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,769 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 163, 'extra_args': {'CopySourceRange': 'bytes=1358954496-1367343103'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,770 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,770 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 164, 'extra_args': {'CopySourceRange': 'bytes=1367343104-1375731711'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,771 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,772 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 165, 'extra_args': {'CopySourceRange': 'bytes=1375731712-1384120319'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,772 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,773 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 166, 'extra_args': {'CopySourceRange': 'bytes=1384120320-1392508927'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,773 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,776 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 167, 'extra_args': {'CopySourceRange': 'bytes=1392508928-1400897535'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,777 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,778 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 168, 'extra_args': {'CopySourceRange': 'bytes=1400897536-1409286143'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,779 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,779 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 169, 'extra_args': {'CopySourceRange': 'bytes=1409286144-1417674751'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,780 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,781 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 170, 'extra_args': {'CopySourceRange': 'bytes=1417674752-1426063359'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,782 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,783 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 171, 'extra_args': {'CopySourceRange': 'bytes=1426063360-1434451967'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,784 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,784 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 172, 'extra_args': {'CopySourceRange': 'bytes=1434451968-1442840575'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,785 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,786 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 173, 'extra_args': {'CopySourceRange': 'bytes=1442840576-1451229183'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,786 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,787 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 174, 'extra_args': {'CopySourceRange': 'bytes=1451229184-1459617791'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,788 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,789 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 175, 'extra_args': {'CopySourceRange': 'bytes=1459617792-1468006399'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,789 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,790 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 176, 'extra_args': {'CopySourceRange': 'bytes=1468006400-1476395007'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,793 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,793 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 177, 'extra_args': {'CopySourceRange': 'bytes=1476395008-1484783615'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,794 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,795 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 178, 'extra_args': {'CopySourceRange': 'bytes=1484783616-1493172223'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,795 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,796 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 179, 'extra_args': {'CopySourceRange': 'bytes=1493172224-1501560831'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,797 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,798 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 180, 'extra_args': {'CopySourceRange': 'bytes=1501560832-1509949439'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,799 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,800 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 181, 'extra_args': {'CopySourceRange': 'bytes=1509949440-1518338047'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,800 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,801 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 182, 'extra_args': {'CopySourceRange': 'bytes=1518338048-1526726655'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,802 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,803 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 183, 'extra_args': {'CopySourceRange': 'bytes=1526726656-1535115263'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,803 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,804 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 184, 'extra_args': {'CopySourceRange': 'bytes=1535115264-1543503871'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,805 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,806 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 185, 'extra_args': {'CopySourceRange': 'bytes=1543503872-1551892479'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,807 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,807 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 186, 'extra_args': {'CopySourceRange': 'bytes=1551892480-1560281087'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,808 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,809 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 187, 'extra_args': {'CopySourceRange': 'bytes=1560281088-1568669695'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,809 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,810 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 188, 'extra_args': {'CopySourceRange': 'bytes=1568669696-1577058303'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,811 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,811 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 189, 'extra_args': {'CopySourceRange': 'bytes=1577058304-1585446911'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,812 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,814 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 190, 'extra_args': {'CopySourceRange': 'bytes=1585446912-1593835519'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,815 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,815 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 191, 'extra_args': {'CopySourceRange': 'bytes=1593835520-1602224127'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,816 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,817 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 192, 'extra_args': {'CopySourceRange': 'bytes=1602224128-1610612735'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,818 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,819 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 193, 'extra_args': {'CopySourceRange': 'bytes=1610612736-1619001343'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,820 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,820 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 194, 'extra_args': {'CopySourceRange': 'bytes=1619001344-1627389951'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,822 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,822 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 195, 'extra_args': {'CopySourceRange': 'bytes=1627389952-1635778559'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,823 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,824 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 196, 'extra_args': {'CopySourceRange': 'bytes=1635778560-1644167167'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,825 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,825 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 197, 'extra_args': {'CopySourceRange': 'bytes=1644167168-1652555775'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,826 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,827 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 198, 'extra_args': {'CopySourceRange': 'bytes=1652555776-1660944383'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,828 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,829 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 199, 'extra_args': {'CopySourceRange': 'bytes=1660944384-1669332991'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,829 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,830 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 200, 'extra_args': {'CopySourceRange': 'bytes=1669332992-1677721599'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,831 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,831 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 201, 'extra_args': {'CopySourceRange': 'bytes=1677721600-1686110207'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,832 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,833 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 202, 'extra_args': {'CopySourceRange': 'bytes=1686110208-1694498815'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,833 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,834 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 203, 'extra_args': {'CopySourceRange': 'bytes=1694498816-1702887423'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,834 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,835 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 204, 'extra_args': {'CopySourceRange': 'bytes=1702887424-1711276031'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,838 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,839 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 205, 'extra_args': {'CopySourceRange': 'bytes=1711276032-1719664639'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,839 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,840 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 206, 'extra_args': {'CopySourceRange': 'bytes=1719664640-1728053247'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,840 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,842 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 207, 'extra_args': {'CopySourceRange': 'bytes=1728053248-1736441855'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,843 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,844 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 208, 'extra_args': {'CopySourceRange': 'bytes=1736441856-1744830463'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,845 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,846 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 209, 'extra_args': {'CopySourceRange': 'bytes=1744830464-1753219071'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,847 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,848 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 210, 'extra_args': {'CopySourceRange': 'bytes=1753219072-1761607679'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,849 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,850 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 211, 'extra_args': {'CopySourceRange': 'bytes=1761607680-1769996287'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,853 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,854 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 212, 'extra_args': {'CopySourceRange': 'bytes=1769996288-1778384895'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,854 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,855 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 213, 'extra_args': {'CopySourceRange': 'bytes=1778384896-1786773503'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,856 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,856 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 214, 'extra_args': {'CopySourceRange': 'bytes=1786773504-1795162111'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,857 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,857 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 215, 'extra_args': {'CopySourceRange': 'bytes=1795162112-1803550719'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,858 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,859 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 216, 'extra_args': {'CopySourceRange': 'bytes=1803550720-1811939327'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,860 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,860 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 217, 'extra_args': {'CopySourceRange': 'bytes=1811939328-1820327935'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,861 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,862 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 218, 'extra_args': {'CopySourceRange': 'bytes=1820327936-1828716543'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,862 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,866 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 219, 'extra_args': {'CopySourceRange': 'bytes=1828716544-1837105151'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,867 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,868 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 220, 'extra_args': {'CopySourceRange': 'bytes=1837105152-1845493759'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,869 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,869 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 221, 'extra_args': {'CopySourceRange': 'bytes=1845493760-1853882367'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,870 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,871 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 222, 'extra_args': {'CopySourceRange': 'bytes=1853882368-1862270975'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,872 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,873 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 223, 'extra_args': {'CopySourceRange': 'bytes=1862270976-1870659583'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,873 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,874 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 224, 'extra_args': {'CopySourceRange': 'bytes=1870659584-1879048191'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,875 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,876 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 225, 'extra_args': {'CopySourceRange': 'bytes=1879048192-1887436799'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,876 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,877 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 226, 'extra_args': {'CopySourceRange': 'bytes=1887436800-1895825407'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,878 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,878 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 227, 'extra_args': {'CopySourceRange': 'bytes=1895825408-1904214015'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,879 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,880 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 228, 'extra_args': {'CopySourceRange': 'bytes=1904214016-1912602623'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,880 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,881 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 229, 'extra_args': {'CopySourceRange': 'bytes=1912602624-1920991231'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,882 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,882 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 230, 'extra_args': {'CopySourceRange': 'bytes=1920991232-1929379839'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,883 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,885 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 231, 'extra_args': {'CopySourceRange': 'bytes=1929379840-1937768447'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,886 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,886 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 232, 'extra_args': {'CopySourceRange': 'bytes=1937768448-1946157055'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,888 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,888 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 233, 'extra_args': {'CopySourceRange': 'bytes=1946157056-1954545663'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,889 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,890 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 234, 'extra_args': {'CopySourceRange': 'bytes=1954545664-1962934271'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,890 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,891 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 235, 'extra_args': {'CopySourceRange': 'bytes=1962934272-1971322879'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,891 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,893 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 236, 'extra_args': {'CopySourceRange': 'bytes=1971322880-1979711487'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,893 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,894 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 237, 'extra_args': {'CopySourceRange': 'bytes=1979711488-1988100095'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,895 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,896 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 238, 'extra_args': {'CopySourceRange': 'bytes=1988100096-1996488703'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,897 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,897 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 239, 'extra_args': {'CopySourceRange': 'bytes=1996488704-2004877311'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,898 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,899 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 240, 'extra_args': {'CopySourceRange': 'bytes=2004877312-2013265919'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,899 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,900 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 241, 'extra_args': {'CopySourceRange': 'bytes=2013265920-2021654527'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,901 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,902 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 242, 'extra_args': {'CopySourceRange': 'bytes=2021654528-2030043135'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,903 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,903 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 243, 'extra_args': {'CopySourceRange': 'bytes=2030043136-2038431743'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,904 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,905 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 244, 'extra_args': {'CopySourceRange': 'bytes=2038431744-2046820351'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,906 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,907 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 245, 'extra_args': {'CopySourceRange': 'bytes=2046820352-2055208959'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,907 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,908 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 246, 'extra_args': {'CopySourceRange': 'bytes=2055208960-2063597567'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,909 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,910 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 247, 'extra_args': {'CopySourceRange': 'bytes=2063597568-2071986175'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,911 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,912 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 248, 'extra_args': {'CopySourceRange': 'bytes=2071986176-2080374783'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,912 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,913 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 249, 'extra_args': {'CopySourceRange': 'bytes=2080374784-2088763391'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,914 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,915 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 250, 'extra_args': {'CopySourceRange': 'bytes=2088763392-2097151999'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,916 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,917 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 251, 'extra_args': {'CopySourceRange': 'bytes=2097152000-2105540607'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,918 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,918 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 252, 'extra_args': {'CopySourceRange': 'bytes=2105540608-2113929215'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.
2024-11-05 22:01:13,919 s3transfer.utils [DEBUG] Acquiring 0
2024-11-05 22:01:13,920 s3transfer.futures [DEBUG] Submitting task CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 253, 'extra_args': {'CopySourceRange': 'bytes=2113929216-2122317823'}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fc532cdfad0> for transfer request: 0.

@jsaladich
Copy link
Author

and it ends like:

2024-11-05 22:01:15,811 s3transfer.utils [DEBUG] Releasing acquire 0/None
2024-11-05 22:01:15,818 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 310, 'extra_args': {'CopySourceRange': 'bytes=2592079872-2600468479'}}) about to wait for the following futures [<s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>]
2024-11-05 22:01:15,819 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 310, 'extra_args': {'CopySourceRange': 'bytes=2592079872-2600468479'}}) about to wait for <s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>
2024-11-05 22:01:15,806 s3transfer.utils [DEBUG] Releasing acquire 0/None
2024-11-05 22:01:15,820 s3transfer.tasks [DEBUG] CopyPartTask(transfer_id=0, {'bucket': 's3-replication', 'key': 'stx/sfcWindmax/tas_CMIP6-std_ssp119_all-ens_LAT0LON0_day-to-1daily_1979-2080.nc', 'part_number': 311, 'extra_args': {'CopySourceRange': 'bytes=2600468480-2608857087'}}) about to wait for the following futures [<s3transfer.futures.ExecutorFuture object at 0x7fc532cde110>]
IOPub message rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_msg_rate_limit`.

Current values:
ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)
ServerApp.rate_limit_window=3.0 (secs)

Is there a way to write this log in a file?

@github-actions github-actions bot removed the response-requested Waiting on additional information or feedback. label Nov 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug This issue is a confirmed bug. p2 This is a standard priority issue s3
Projects
None yet
Development

No branches or pull requests

2 participants