aws.s3 icon indicating copy to clipboard operation
aws.s3 copied to clipboard

object_size fails on large objects

Open scottkall opened this issue 3 years ago • 0 comments

https://github.com/cloudyr/aws.s3/blob/621e0adc85abaa414814569ffe7dd28334318dc3/R/head_object.R#L66

Hi, I think a simple change here from as.integer to as.double should fix this bug.

I was calling object_size() on a large object, and it was returning NA because the file size was too large.

> object_exists(paste0(s3bucket,"/",s3key))
[1] TRUE
> object_size(paste0(s3bucket,"/",s3key))
[1] NA
Warning message:
In object_size(paste0(s3bucket, "/", s3key)) :
  NAs introduced by coercion to integer range
> attr(head_object(paste0(s3bucket,"/",s3key)),"content-length")
[1] "17350435674"
> as.double("17350435674")
[1] 17350435674
> as.integer("17350435674")
[1] NA
Warning message:
NAs introduced by coercion to integer range 

This is related to #181 and #234 . Thank you!

scottkall avatar Aug 02 '22 22:08 scottkall