persistent-storage Questions

3

Solved

I'm new to google cloud. I'm managing several users who are testing it out and I run the lab so have to figure out what it's costing us. I'm trying to understand where the charges come from. Here's...

2

Solved

Quickstart: Compose and WordPress proposes the following docker-compose.yml version: '3.3' services: db: image: mysql:5.7 volumes: - dbdata:/var/lib/mysql restart: always environment: MYSQ...

3

I am trying to create a Kubernetes pod with a single container which has two external volumes mounted on it. My .yml pod file is: apiVersion: v1 kind: Pod metadata: name: my-project labels: nam...
Kiaochow asked 16/2, 2016 at 21:46

6

Solved

When I push my deployments, for some reason, I'm getting the error on my pods: pod has unbound PersistentVolumeClaims Here are my YAML below: This is running locally, not on any cloud solutio...
Exarchate asked 5/10, 2018 at 15:28

3

Solved

I'm running Julia on the raspberry pi 4. For what I'm doing, I need Julia 1.5 and thankfully there is a docker image of it here: https://github.com/Julia-Embedded/jlcross My challenge is that, beca...
Odell asked 27/9, 2020 at 21:54

2

I am using Dexie to access IndexedDB on a flash card maker project. I can manipulate the database as expected, and it stays in the database if I close and reopen the browser, but often when I open ...
Toot asked 30/10, 2020 at 22:18

8

Solved

This is how I am inserting data into database using Room Persistence Library: Entity: @Entity class User { @PrimaryKey(autoGenerate = true) public int id; //... } Data access object: @Dao p...
Thao asked 5/6, 2017 at 7:55

7

Solved

I have an application that will need extremely little persistent storage. Realistically, we're talking about < 30 integers. All the application needs is to know those integers on next startup (a...
Mendelism asked 25/4, 2012 at 21:3

1

I'm looking for some way to mount a S3 Storage Bucket (for example) as Docker volume in an Elastic Beanstalk Docker Container. Since i can't change the application code, i have to configure that p...

2

Solved

What is the advantage and disadvantage of using redis as a sidecar in kubernetes?Is it possible to have persistence cache when redis container is added in each app pod? Will that affect the availab...
Onega asked 28/4, 2020 at 6:15

3

Our application uses RabbitMQ with only a single node. It is run in a single Kubernetes pod. We use durable/persistent queues, but any time that our cloud instance is brought down and back up, and...
Cupro asked 21/6, 2019 at 19:49

3

Solved

Base question: When I try to use kube-apiserver on my master node, I get command not found error. How I can install/configure kube-apiserver? Any link to example will help. $ kube-apiserver --enab...
Cythera asked 15/5, 2018 at 14:20

0

I am getting an "Update Persistent Storage" failure when running any Flutter app from my Linux computer to my Galaxy Tab S6 using "flutter clean" followed by "flutter...
Prearrange asked 8/10, 2020 at 15:47

1

Solved

What is best practice for a PWA to store user generated data in a persistent way? My app lets the user generate up to 5 MB of data that needs to be stored and accessed locally, but also backed up ...
Breastfeed asked 7/6, 2020 at 9:54

3

I am trying to create a deployment in GKE that uses multiple replicas. I have some static data which I want to have available in every pod. This data will not be updated, no write is required. I d...
Maternal asked 2/9, 2019 at 8:59

1

Solved

What is the safest way to store data offline, assuming that I want to cover all platforms (Web, Electron & Cordova). The reason I ask is, my app Fudget (which is a Cordova / Electron - but no...

1

Solved

Is anyone aware of any shortcomings in trying to use the Intel Optane DC Memory (DCPMM) in App Direct Mode (that is as non-volatile memory) to write or read to/from it using Write Through (WT) or U...
Setscrew asked 3/1, 2020 at 1:56

6

Solved

I am working on a personal project in Python where I need some form of persistent data. The data would fit in 2-3 tables of 10-20 columns and 100-200 records each. I have a basic understanding of S...
Saladin asked 28/5, 2011 at 10:48

1

Solved

I need to build an application that has many bare-metal nodes joined in a Kubernetes cluster and I need a shared persistent file system between those nodes. The nodes should be able to read-write i...
Bologna asked 23/2, 2019 at 18:57

2

How can i attach persistent storage on Elastic Beanstalk ? I know i need to have a .config file where i set the parameters of the environment to run every time an instance is created. My goal is ...

3

Solved

How would you best handle persistent data between instances with a load-balanced service in Amazon ECS? Data only containers will not work and neither will the volumes you can specify in the tasks,...
Embodiment asked 26/1, 2016 at 23:34

4

We have noticed that our containers are taking up a lot of space, one of the reasons for this is the images. We would like to move the images. I know right now they are stored in /var/lib/docke...
Caldera asked 31/1, 2014 at 17:11

1

Solved

I asked this in the Apple forum however there have been no replies. I use SQLite database in my app. The data that is in my testers local db on the device. How do I get that data for my testers in...
Ichabod asked 19/9, 2016 at 0:48

3

Solved

https://developer.apple.com/library/ios/releasenotes/DataManagement/WhatsNew_CoreData_iOS/ I am having trouble in disabling journal mode. My code is: static NSManagedObjectContext *managedObjectCon...
Digression asked 19/11, 2013 at 2:49

1

Solved

I'm running postgres inside a docker container to limit the amount of system resources it has access to. I'm having some trouble understanding how to make the data persistent. I've read the followi...
Horvath asked 5/4, 2016 at 10:21

© 2022 - 2024 — McMap. All rights reserved.