478 questions
0
votes
1
answer
189
views
Error Exporting from BigQuery to GCS: 'Operation cannot be performed on a nested schema
I encountered an error while trying to execute an ETL task to export data from a BigQuery table to Google Cloud Storage (GCS).
Here is the exact error message:
raise self._exception google.api_core....
1
vote
1
answer
40
views
Saving 2d Lists to local device - Flutter
i am looking to save data to the device my Pre Delivery Checklist App is runing on (hence all the boolean data(for the checklists)). The data would look something like this:
List<List> ...
0
votes
2
answers
120
views
Store external data in guile modules?
Suppose I have a collection of external data structures in a txt file.
Whenever I need the data for computation I have to parse the file and then use it's values.
How to make it more convenient?
Keep ...
0
votes
2
answers
471
views
How to store and handle large arrays in unity
In my unity project, I have a very large array of arrays of integers. It contains around 65 thousand arrays each of length 4. When I attempt to use this in my program, it crashes and unity shuts down.
...
1
vote
0
answers
2k
views
How to add a new node in a existing MinIo cluster
I have a multi node multi drive minio cluster runing on 1.1.1.1 and 1.1.1.2 Ip. Both have 3 drives each and mounted to /disk1,/disk2 and /disk3.This is an up and runing system.Now I want to add a new ...
1
vote
0
answers
556
views
Why the Maximum Metadata Size of a Thin Logical Volume Is Only 15.81G?
My boss asked me to create a thin pool with metadata size exceeding the maximum limit.
In the first step, I executed the subordinate command:
[root@localhost ~]# pvs /dev/vdb
Configuration setting &...
0
votes
1
answer
116
views
Conent Nodes saved to different members
I've posted this quesiton in the Umbraco Forums as well as the Umbraco Discord without getting a response so I thought I'd try here as well :)
I've managed to store different fields from a specific ...
0
votes
0
answers
51
views
How to store data during multipreocessing in python
I have a process in which an optimiser which runs thousands of iterations with different inputs.
optimizer = ng.optimizers. NGOpt (parametrization=instrum, budget=10000, num workers = 25)
with ...
1
vote
3
answers
63
views
Call url and save data after every x-time-periode into csv-file
run_time = 60
run_until = time.time() + run_time
while time.time() < run_until:
if run_time % 5 == 0:
url = 'URL'
csv_file = open('cam_data1.csv', 'a')
req = requests....
0
votes
1
answer
89
views
Is it possible to prepopulate React Native async storage with static data
I am creating an app with a lot of static text, and I am looking for a way to store it in a clean way.
Is it possible to bundle an app with a prepopulated async stroage?
Or is there any clean way to ...
0
votes
0
answers
170
views
How do I save images locally using NSUserData?
I'm working on a project where the user can upload images from their library into a gallery. It's working fine, but I want the images to stay even after I refresh the app. I've been told that ...
1
vote
1
answer
151
views
storing and using special symbols in a C# winforms application
I am currently working on a application which will give flash card like questions which I have stored on the system. I was wondering what would be my best option to store lists of information. The ...
0
votes
1
answer
389
views
How do I see my image (BLOB) in MySQL Workbench
I am having trouble seeing my image. No matter what I do, it turns up null.
SHOW VARIABLES LIKE 'secure_file_priv';
would give me
In that folder, I have a folder called Image, and then images (.jpg)
...
1
vote
1
answer
148
views
Want button click sound to persist from scene to scene
I created an Audiosource from an audio click on all button hits. However, it gets deleted when clicking a button that loads a new scene. I'm wondering if there is an easy way to fix this, like how to ...
0
votes
1
answer
879
views
Creating a black-listed words list with discord.py
I have created a list of black-listed words in an external text file which can be modified with a simple command. The problem is that I want my bot to be able to be used by all servers, and when a ...
0
votes
1
answer
58
views
Flutter JsonSerialization
I am currently building an app where the user is able to store List items as favorites on their device. Debugging my app I am running in the following error:
Exception has occurred.
_CastError (type '...
0
votes
1
answer
2k
views
Flutter Getx Store Data locally
I am currently working on an app where the user can mark ListTimes as favorites.
These favorites are then displayed on a second page.
I am using GetX for this and the functionality works. But as soon ...
1
vote
1
answer
348
views
Proper way to store documents in MongoDB
I've been having this same question about MongoDB for the longest time. So I'm trying to store some user data for users who invite my discord bot to their guild. It stores them based off guild ID and ...
0
votes
1
answer
252
views
Can I use the external nor flash as program memory and data storage at the same time?
I am using lpc54016 on a custom board with winbond w25q32jvss as external SPI flash memory. Can I use winbond w25q32jvss for storing the code memory as well as store some data for my application at ...
0
votes
1
answer
939
views
How can I store most-effectively user input data on SwiftUI? [closed]
I am building an app in SwiftUI which is a more-in-depth version of "Notes". The plan is that the user can create groups and inside of it specific notes with images, links etc. you know it. ...
1
vote
0
answers
286
views
Are raw levelDB files safe to use as a backup storage layer?
I have a service that stores data to LevelDB. To make backups I simply zip the entire data folder that LevelDB writes to and upload it to S3.
If I need to restore I just unzip the data and copy it ...
1
vote
0
answers
1k
views
What is the best option to store objects for an Android application?
I know this is a well-known question (for example: How do you save/store objects in SharedPreferences on Android?) , but I was wondering if it was better to store an object in shared preferences (...
1
vote
1
answer
515
views
Splitting incoming traffic between multiple servers?
I currently have a single server (480GB storage and 400mb bandwidth) for a clients project, and we are quickly running out of storage space, as well as bandwidth for when we do hls video streaming ...
0
votes
1
answer
140
views
How to store user choice using html and Js
I am working on making an online quiz. I wish to store the option user chooses and time spent per question.
How do I go about it?
0
votes
1
answer
646
views
How to properly store non-reactive and static data in an vue?
Greetings to the community! This is my first question on the StackOverflow.
I use vue.js-v2 and webpack. I need to have immutable data available for child components. The components are loaded via the ...