Questions tagged [gcsfuse]

gcsfuse is a user-space file system for interacting with Google Cloud Storage.

gcsfuse is a user-space file system for interacting with Google Cloud Storage. Users can mount their GCS buckets as if they were local file systems.

66 questions
0
votes
2 answers

Google Cloud Storage moun + nginx user

I'm able to mount my Google Cloud Storage with gcsfuse but I need nginx to write in it. How do I do that? I've added nginx to the mounting users group and nothing. Probably because the mount has 755 on all folders? Any idea would be…
Bert
  • 1,028
  • 1
  • 16
  • 33
0
votes
1 answer

Store large files in Google Cloud Storage without local copy

I would like to store large binary files (mongodump bson files) in a Google Cloud Storage bucket mounted on a Google Compute instance through gcsfuse. Everything is working well, except that fuse is copying every file to a temporary folder every…
0
votes
1 answer

With gcsfuse, how much remaining space is available in a bucket when mounted?

I'm about to evaluate gcsfuse for use in a system with a database daemon. The daemon is peculiar. It computes its usable available disk space subtactively, rather than additively; that is, it ensures that it uses all of the available space, except…
Corbin
  • 328
  • 2
  • 6
0
votes
3 answers

Mounting google storage bucket folder using gcsfuse

0 down vote favorite I am not able to mount a specific folder inside the google storage bucket On OS X, this program allows you to mount buckets using the mount command. (On Linux, only root can do this.) mount -t gcsfuse -o rw,user my-bucket…
user28763
  • 21
  • 1
  • 1
  • 1
0
votes
1 answer

Does GCSFuse use a VFS?

I am running gcsfuse on a GCE(Debian Jessie) instance and successfully mounted my GCS bucket. If someone drops a file into my bucket, I'd like for it to trigger an event and publish to a topic using cloud pub/sub. I'd have a subscriber listening to…
0
votes
1 answer

gcsfuse mount with fstab fail to apply 'exec' option

I've mounted gcp bucket with gcsfuse by fstab file. To ellow execution of scripts and executable from the bucket, added option of 'exec' to the options in the fstab file. Yet, this option isn't applied. The fstab line: bucketname /mount-point…
yosisviva
  • 3
  • 1
0
votes
0 answers

Attach Cloud Storage as shared NFS storage for CloudRun

I want to attach a shared static storage that is not ephimeral after cloudrun instance gets terminated. Can we use gFuse with CloudStorage to achieve this ? IF so by introducing CloudFuse, do we get any additional latencies
0
votes
1 answer

What would happen if I rm -rf on a mounted gcsfuse directory

Let's say I have a mounted bucket at path ~/path/to/mount/point on my local machine. What would happen if I rm -rf ~/path/to/mount/point. Only the mount point directory would be deleted or also all its content (hence all the bucket content)? I don't…
LucG
  • 103
  • 3
0
votes
1 answer

Input/output error while trying to mkdir in VM at the mounted location of GCS bucket

I m using gcsfuse in my VM in order to mount with google cloud storage bucket. while running the command "mkdir" as a root user in the mounted location, i am getting the error as below. mkdir: cannot create directory ‘243’: Input/output…
0
votes
3 answers

Google Cloud Storage FUSE Adapter: Use Case?

The README documentation says: Please treat gcsfuse as beta-quality software. My question is, would GCS Fuse ever be deployed in a production application? In other words, what is the use case?
0
votes
1 answer

How to mount on /mnt/ as non-root with gcsfuse

Introduction I am using gcsfuse to mount my Cloud Storage bucket as a filesystem in my Linux instance hosted on GCE. Following the documentation from gcsfuse, it recommends to not use "root" to mount it, as the user who mounts the filesystem will be…
0
votes
1 answer

gcsfuse terminating with error 1 on GKE Autopilot

I am trying to use gcsfuse from a kubernetes pods running in GKE Autopilot. I read there may be issues with GKE autopilot, but the error I got is different from what is typically reported. Is gcsfuse now working with Autopilot or there is no…
0
votes
1 answer

gcsfuse failed to open /dev/fuse: Permission denied

I'm running the following command inside a container as an ordinary, non-root user gcsfuse --foreground --debug_fuse --debug_fs --debug_gcs --debug_http my-bucket /data and it works locally when I start the container with --priviliged and that's…
0
votes
0 answers

DeleteObject followed by UpdateObject

Whenever I delete a file on my gcsfuse mounted file system, the DeleteObject command is always followed by an UpdateObject command, which fails, because the file does not exist anymore. The delete itself succeeds, both locally and on the bucket, so…
0
votes
0 answers

Bucket mounted using gcsfuse doesn't match what's in my cloud storage bucket

I have a Google Cloud Storage bucket and am experimenting with creating a website in Google Cloud Platform (using Python+Flask FWIW). For my initial experiment, I'm using gcsfuse to mount my GCS bucket as a…