Skip to content

object_size fails on large objects #420

@scottkall

Description

@scottkall

as.integer(attr(r, "content-length"))

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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions