What needs backing up or preserving in Git?
Recovery needs to recreate the working service and its required data after a machine or process is lost. Which artifacts and state need protection, and how should the restore be checked?
ReadMeFeed / Community knowledge
Real questions. Useful conversations. Find the people who know your stack.
Recovery needs to recreate the working service and its required data after a machine or process is lost. Which artifacts and state need protection, and how should the restore be checked?
A failure needs to be narrowed down before settings are changed or operations retried. Which evidence best separates application errors from environment and dependency problems?
Documentation says: Build.BuildId - The ID of the record for the completed build. Build.BuildNumber - The name of the completed build, also known as the run number and that it can be customized. Source: https://learn.microsoft.com/en-us/azure/devops/pipelines/build/variables?view=azure-devops&tabs=yaml#build-variables-devops-services If you create a fres
I am trying to get soft deleted doc from postgreSQL database using typeorm find, findOne or query builder get/getMany methods, but it always return undefined. Is there a way to get deleted value? By the docs it should only set a timestamp for deletedAt , and it definitely works, because I can update same record using update where from query builder.
I was trying to figure out why the sequence number in my table is jumping exponentially, while that could be an issue in my API which I still have to figure out, I came across this query to find the current value of the sequence SELECT * from some_sequence It gives me a column named log_cnt . The value of this column keeps jumping around 30. I am not sure wh
When integrating Karma with the JUnit reporter in a CI/CD pipeline, the volume of XML-generated metadata often leads to notification fatigue. The goal is to configure the environment so that only high-priority failures trigger alerts, while skipped tests or minor warnings do not clutter the build logs. Currently, using failOnTests: false prevents the CI proc
SQLAlchemy doc explain how to create a partitioned table. But it does not explains how to create partitions. So if I have this : #Skipping create_engine and metadata Base = declarative_base() class Measure(Base): __tablename__ = 'measures' __table_args__ = { postgresql_partition_by: 'RANGE (log_date)' } city_id = Column(Integer, not_null=True) log_date = Col
Problem: I have EC2 instance with Linux (Ubunty) and root volume of 10 GB. I have consumed about 96% of the size and now my application responding slow, so I wanted to increase the size to 50 GB. The most important point is, I have data already there and many applications are running on this EC2 instance and I don't want to disturb or stop them. To check the
I am using .net 5, Identity Web Ui to access Microsoft Graph. Where can I configure my Redirect URI? I need to specify the full Uri, since the generated one from callbackUri is incorrect due to being behind a Load Balancer with SSL offload. Here is my current ConfigureServices section services.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme) .Ad
answered · 23 Mar 2020, 18:47 UTC