1,851 questions
1
vote
0
answers
32
views
Snapshot of Power BI table using dataflow
I have a table in power bi which has calculated column based on azure table and Dataverse. (Dataverse is used for write back feature using power automate as few of the column value get changed).
Table ...
0
votes
0
answers
42
views
How to mount a subdirectory(inode ) to a specific path? Kernel development
I'm working on a directory-level snapshot feature based on a file system, where a snapshot of a directory is recorded by an inode, and I want to implement how the snapshot sharing mount should be ...
0
votes
0
answers
20
views
Reboot TeamCity agent between build pipeline
If I have 2 TeamCity build configurations (A and B), B with a snapshot dependency on A and the option to use the same build agent selected. If I have as a last step in A that reboots the build agent, ...
0
votes
0
answers
238
views
Newer OpenRewrite Maven plugins fail to complete rewrite:run due to missing SNAPSHOT in repository
In an attempt to upgrade to Java 17 compliant code, when using an older versions of rewrite-maven-plugin(5.30.0) and rewrite-migrate-java(2.13.0), the rewrite:run works as expected.
However, when ...
0
votes
0
answers
55
views
How can I replicate build artifact via a snapshot-style file system under Windows and Linux for build testing
I am building a large software art project including a number of data files and build artifacts locally. The size of the entire generated set is around 20 gigabytes. Contained in the build results are ...
0
votes
1
answer
38
views
Oracle replication with limited range
Due to performance reasons I want to have a portion of my data to be available on a second system (Reporting).
I expect the data to be distributed like: (abstract)
Production (today)
todays data &...
0
votes
0
answers
52
views
Vitest snapshot: unsorted html attributes
I am running a vitest to test if a vue component match an snapshot.
The vue component use javascript flatpickr component to generate a datepicker.
The snapshot is generated with another environment ...
2
votes
1
answer
126
views
What data is stored in the log compaction snapshot of a Raft-based distributed file system?
I'm working on a Raft implementation as part of my distributed file system and I've run into a problem with the log compaction process.
Accurding to the official Raft paper, when a log reaches a ...
1
vote
0
answers
121
views
How to keep RDS instance in sync with CDK during recovery?
I am using nodejs cdk to create my stack.
I have a RDS instance:
this.database = new cdk.aws_rds.DatabaseInstance(this, `${id}_db`, {
removalPolicy: cdk.RemovalPolicy.SNAPSHOT,
....,
})
...
1
vote
0
answers
43
views
Take a snapshot of UITextView inside UITableViewCell
I'm trying to take a snapshot of UITextView inside UITableViewCell.The code is as below.
class MyTableViewCell: UITableViewCell {
@IBOutlet weak var myTextView: UITextView!
func bind(){
...
0
votes
1
answer
261
views
AWS unable to create EBS snapshot. Lifecyle Manager error --> fail to fetch
I cannot create snapshots of my EBS volume. In the the volumes' menu I have a window that says:
Fault Tolerance for all volumes in this region -->Data Lifecycle Manager default policy for EBS ...
0
votes
0
answers
51
views
How can I grab a window with widgets and title bar?
I am trying to save a snapshot of a QMainWindow with widgets and title bar.
This is how I tried:
from time import sleep
from PySide6.QtCore import QRect
from PySide6.QtWidgets import QApplication, ...
0
votes
1
answer
220
views
How to specify the nodejs snapshot directory when I use the --heapsnapshot-near-heap-limit option
The node service is subject to occasional oom. He runs on Kubernetes, and every time an oom occurs it causes the container to restart, and the snapshot printed using heapsnapshot-near-heap-limit is ...
1
vote
1
answer
102
views
How can I restore a redshift snapshot using Boto3?
I am trying to restore a Redshift snapshot programmatically, using Boto3 but I am not sure where to get all the details to do that. Here is the documentation: https://boto3.amazonaws.com/v1/...
1
vote
1
answer
140
views
How to take a large snapshot in iOS
In my case, I need to output a relatively large floor plan, and I simplified the code as follows. In the case of a relatively large size, the correct image cannot be output
Sample Code
let image1Size =...
0
votes
0
answers
121
views
How to programmatically detect if a path is a ZFS snapshot?
All ZFS snapshots have paths like "/mount/point/path/.zfs/snapshot/NameOfSnapshot", but not all paths that can conceivably contain "/.zfs/snapshot/" are necessarily ZFS snapshots. ...
0
votes
1
answer
763
views
Ad-Hoc Snapshot with Debezium SQL Server Source Connector using Kafka Signal doesn't work
I've following the documentation at https://debezium.io/documentation/reference/2.4/configuration/signalling.html#debezium-signaling-enabling-kafka-signaling-channel
But when I registered the source ...
1
vote
0
answers
169
views
How can I transfer or copy AWS EC2 snapshots to GCP?
I need to transfer or copy 119 ec2 snapshots that are in aws to gcp, can anyone help me?
I contacted gcp support but received documentation that did not help me.
https://cloud.google.com/migrate/...
0
votes
1
answer
272
views
Unable to copy Disk Snapshot to Azure Blob storage 'CannotVerifyCopySource' Error
I am trying to copy my snapshot into a BLOB container on Azure but I am getting this error
CannotVerifyCopySource
Message
Server failed to authenticate the request. Please refer to the information ...
0
votes
1
answer
106
views
Property snapshotChanges does not exist on type Query<DocumentData> in Angular Firestore
I am working on an Angular (version 9.1.13)
project where I am using Firestore , Fire version ("@angular/fire": "^6.1.5") , Firebase version ("firebase": "^8.10.1&...
0
votes
0
answers
604
views
AWS Opensearch - Restore snapshot - Failed to parse object: unknown field [uuid] found
I am currently in the process of migrating data from Elasticsearch 7.17.7 to OpenSearch AWS.
While following the steps outlined in the migration guide provided by AWS (https://docs.aws.amazon.com/...
-1
votes
1
answer
650
views
The method of storing aws rds manual snapshot more than 100
Currently, the number of my manual snapshot is almost 100. And aws allows us to store up to 100 manual snapshots.
But I don't want to remove this snapshot. I want to keep longer for restoring in the ...
1
vote
0
answers
164
views
VSS snapshot - looking for info about "Auto_Release"
Thanks, I cannot find any info at all about the "Auto_Release" attribute when creating a snapshot.
i use vshadow.exe to create snapshots and the snapshots are always created
"Attributes:...
0
votes
0
answers
53
views
react-native-collapsible jest SyntaxError: Cannot use import statement outside a module
I used 'react-native-collapsible/Accordion' in my component and the snapshot test of the component failed with the error SyntaxError: Cannot use import statement outside a module,
how should I fix it?
...
0
votes
0
answers
1k
views
Running a dbt snapshot model for the first time works, but on the second run, it executes indefinitely
I'm encountering an issue while running a snapshot on a table with over 1,000,000 rows, following the schema detailed here:
Table Schema.
The initial run of the snapshot generates the table correctly. ...