You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I overwrite a file on a bucket, or I remove old file and put same file on a bucket on google storage, I have to wait 30 minutes before to see the change, it's look like that google storage keep in memory the old file.
My code to connect on a bucket:
`path_log<-paste("google_auth",auth_json,sep="/")
Sys.setenv("GCS_AUTH_FILE" = path_log)
library(googleCloudStorageR)
gcs_get_bucket(bucket)
Sys.setenv("GCS_DEFAULT_BUCKET" = bucket)
gcs_global_bucket(bucket)
buckets <- gcs_list_buckets(proj)
bucket_info <- gcs_get_bucket(bucket)`
The configuration of the bucket:
image
I use gcs_upload(df_poids, name = "test.csv",predefinedAcl="publicRead") to write file on storage,
and
gcs_get_object(object_name="test.csv",saveToDisk="test.csv",overwrite=T) to read the file.
The text was updated successfully, but these errors were encountered:
cran/googleCloudStorageR#1
Hello,
When I overwrite a file on a bucket, or I remove old file and put same file on a bucket on google storage, I have to wait 30 minutes before to see the change, it's look like that google storage keep in memory the old file.
My code to connect on a bucket:
`path_log<-paste("google_auth",auth_json,sep="/")
Sys.setenv("GCS_AUTH_FILE" = path_log)
library(googleCloudStorageR)
gcs_get_bucket(bucket)
Sys.setenv("GCS_DEFAULT_BUCKET" = bucket)
gcs_global_bucket(bucket)
buckets <- gcs_list_buckets(proj)
bucket_info <- gcs_get_bucket(bucket)`
The configuration of the bucket:
image
I use gcs_upload(df_poids, name = "test.csv",predefinedAcl="publicRead") to write file on storage,
and
gcs_get_object(object_name="test.csv",saveToDisk="test.csv",overwrite=T) to read the file.
The text was updated successfully, but these errors were encountered: