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
1 answer

gcsfuse fstab configuration with google compute engine

I am running freepbx Centos on a GCE VM. Syncing stops when FreePBX/Asterisk tries to write and create a folder in the mounted folder and FreePBX is unable to write / create folder in the folder. Everything works again when the system is rebooted…
0
votes
1 answer

Why can't I use gcsfuse command on a Google Instance with GPU and preinstalled TF and more?

My goal is to mount a Google Storage bucket in my Google Compute instance machine. I created a Google Compute Instance of type c2-deeplearning-tf-1-14-cu100 It came with various libraries preinstalled, among others CUDA, CuDNN, TensorFlow, and…
zuzaanto
  • 1
  • 1
0
votes
1 answer

"no such file or directory" when mounting, built using the golang:alpine Docker image

I created a fork of the LinuxServer.io's docker-transmission image, adding support for Google Cloud Storage. I used the Ernest (chiaen)'s docker-gcsfuse project to build gcsfuse, namely, extracting parts of his Dockerfile and added to my own one.…
Amitie 10g
  • 53
  • 7
0
votes
1 answer

sftp-server over gcsfuse - large uploads succeed but small uploads (<0.5MB) give error

I'm trying to setup a sftp server over GCS. An example gcsfuse mount in the container is gcsfuse -o nonempty --only-dir user1 $BUCKET /home/user1/ftp When I upload two files using sftp: sftp> put 1024K.txt Uploading 1024K.txt to…
0
votes
1 answer

When I mmap to a file in a mounted storage bucket, how/when is it downloaded?

I'm using a library that mmaps a large resource file. I'm considering storing that resource file in a gcloud bucket and using GCSFuse to make the file available for mmapping, instead of building my own solution to manually download the file. For…
aopal
  • 3
  • 1
0
votes
0 answers

Google Cloud App Engine run custom app in privileged mode

I have an app deployed on app engine in Google cloud. I need to be able to use gcsfuse to access shared bucket but you need to run the docker image in privileged mode to access resources. If I deploy my docker image on compute engine I get the…
0
votes
1 answer

Cloud Storage access from PHP aplication

We configure PHP applications on 2 servers with databases in CloudSQL, they require read /write static content in a CloudStorage bucket from PHP applications. What I did was install GCS Fuse to mount the CloudStorage bucket as a shared folder on a…
0
votes
1 answer

Slash added automaticaly before bucket name with fstab and gcsfuse

I use gcsfuse to mount bucket in Google Compute Engine. For this I use this syntax in my fstab: my_bucket /my_bucket gcsfuse rw,uid=1001,gid=1002 But gcsfuse process is launched like this: /usr/bin/gcsfuse --foreground -o rw --uid 1001 --gid 1002…
Bastien D
  • 109
  • 3
0
votes
0 answers

Issues syncing when using gcsfuse mounted for a SFTP directory

I am having difficulty using gcsfuse mounting a storage bucket to a directory that is being used for SFTP uploads on a CentOS 7 compute engine VM in GCP. I initially tried to mount it using the basic instructions that mounted like the…
0
votes
1 answer

gcsfuse : connection to bucket drops and bucket has to be mounted again

I am running gcsfuse on a GCE and mounted a GCS bucket correctly. I am running a python program that needs to access data from that bucket. To avoid interrupting the program when the GCE connection sometimes drops, I am using a screen, so that the…
Leo
  • 1
0
votes
1 answer

Error 429: rateLimitExceeded

When adding data continuously to the file on GCS buckets mounted from the VM instance, the following error occurred. info info Aug 20 13:20:07 myserver gcsfuse gcsfuse: fuse: 2018/08/20 13:20:07.807693 *fuseops.FlushFileOp error: FileInode.Sync:…
yosuke
  • 1
  • 1
0
votes
1 answer

Trouble Mounting a Bucket

I am trying to mount this public bucket into my Google cloud shell: gs://mssng-share/released/genomes/ILMN/VCF/*Using mount point: /home/serdarrowanalytics/mount I tried: gcsfuse mssng-share ./mount however, i get flagged with this error…
0
votes
1 answer

Mount wp-content folder with gcsfuse

How do I mount a wp-content folder (wordpress) so the permissions stay in place and the web server can serve the files from the sub directory? Problem I am facing are: gcsfuse bucketname /var/www/html/wp-content wp-content folder everything is…
elhombre
  • 435
  • 1
  • 8
  • 18
0
votes
1 answer

Can I mount google cloud storage bucket as disk to linux instance with custom size?

We can mount Google Cloud Storage Bucket as a disk to an instance using Cloud FUSE. By doing so, we are getting 1 PiB as disk size(bucket). Can anybody help me understand why we are getting 1 PiB specifically? Can we modify this size while mounting?…
0
votes
1 answer

Installing a binary on a k8s virtual machine with Container-Optimized OS

Pretty simple situation. I use container engine to create k8s clusters. I need to fuse some buckets to the nodes and want to use this project for that purpose: https://github.com/GoogleCloudPlatform/gcsfuse I downloaded it and cross-compiled for…
user3081519
  • 253
  • 2
  • 13