Questions tagged [staging]

Staging is the process of deploying to an intermediate, usually internal, repository so that deployed artifacts can be tested and later promoted to higher levels so that they can finally be release to public repositories

Staging, when it comes to Data warehousing

The Data Warehouse Staging Area is temporary location where data from source systems is copied. A staging area is mainly required in a Data Warehousing Architecture for timing reasons. In short, all required data must be available before data can be integrated into the Data Warehouse.

Due to varying business cycles, data processing cycles, hardware and network resource limitations and geographical factors, it is not feasible to extract all the data from all Operational data sources at exactly the same time.

For example, it might be reasonable to extract sales data on a daily basis, however, daily extracts might not be suitable for financial data that requires a month-end reconciliation process.

Data in the Data Warehouse can be either persistent (i.e. remains around for a long period) or transient (i.e. only remains around temporarily).

Not all business require a Data Warehouse Staging Area. For many businesses it is feasible to use ETL to copy data directly from operational databases into the Data Warehouse.

Links

530 questions
0
votes
1 answer

When I publish my LightSwitch app to Azure staging, the production deployment stops

Every time I publish my app to staging (from the LightSwitch publishing wizard in Visual Studio 2010) my production deployment stops. I can then restart the production deployment, but this is obviously not what I want. Both the staging and…
Mark
  • 1
0
votes
2 answers

mysqlimport to staging table, then changing the table name?

We're using MySQL and have an ~1.1 million record InnoDB table where the entire table has to be replaced with data from a CSV twice per day. What I've been doing up until now is truncating the table, then using mysqlimport to repopulate the table…
0
votes
1 answer

Restricting a staging server

I am thinking of methods to restrict public users from accessing sites on our staging server. The best method I can think of at the moment is use: Deny from all Allow IP Addresses If I add this to vhost configuration then it will do what I need. Is…
Ian Jamieson
  • 4,376
  • 2
  • 35
  • 55
0
votes
1 answer

How to intercept update requests in Hibernate

We are currently engaging a staging environment. In the vendor's infinite wisdom, they use composite primary keys for relationships, meaning if I update the relationship I update the key as well breaking the staging service. Is there a way to…
Jackie
  • 21,969
  • 32
  • 147
  • 289
-1
votes
2 answers

Staging deployment with Bitbucket pipeline and Azure Static Web App

I could successfully deploy my project into the production environment using the provided documentation https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/static-web-apps/bitbucket.md pipelines: branches: main: - step: …
-1
votes
1 answer

git reset HEAD on removed directory

ALL, I am trying to revert following operations: cd && rm mysql-connector-c && git rm mysql-connector-c at least until I figure out how to update to the current version properly. Trying to run git reset HEAD mysql-connector-c does not…
Igor
  • 5,620
  • 11
  • 51
  • 103
-1
votes
1 answer

Restart during swap of deployment slots

I’m trying to reduce the downtime during a deployment to prod without stopping the functions by adding a staging slot. During a swap between production and staging slots, do the functions get automatically restart?
user989988
  • 3,006
  • 7
  • 44
  • 91
-1
votes
2 answers

Spinning Up a Staging Server for Testing a Django Web-Application

I have been following Harry J.W. Percival's Test-Driven Development with Python. In the chapter of "Testing Deployment Using a Staging Site", I am confused as to the course of action that I should take now to implement this: Spinning Up a…
Bruce Wayne
  • 50
  • 1
  • 7
-1
votes
3 answers

A work file is modified after it was added to staging. Then the file is committed to git without and add. What should happen?

I noticed that after a modified file is added to staging in git and the file is changed again then followed by a commit without an add, there is no error nor warning. The latest changes in the working file get committed. Is what initially added to…
jacobm654321
  • 643
  • 6
  • 8
-1
votes
1 answer

How do I prevent files from being sent to the staging area?

I am working on a project that relates several files, some of which I want to add toa git repository and some of which I do not. By running git add . I would add all my files with untracked changes into the staging area, what if I want to run that…
-1
votes
2 answers

Static Website hosting with Staging in AWS

We are running a static website that gets deployed by CI automatically to a public S3 bucket. The website is a jekyll page that has multiple folders. We are very happy with the setup because of the ease of deployment and no infrastructure. But we…
snorberhuis
  • 3,108
  • 2
  • 22
  • 29
-1
votes
1 answer

Build Failed from Dev to Staging using TFS Release management

I am trying to build a project from dev to staging environment, what all i did was just to merge the changes in dev to staging and trigger a build. but the build got failed even tried multiple times. Below is the log file shared in google drive.…
-1
votes
1 answer

CSV to SQL Server

In my csv files that I want to bulk insert into SQL Server, there's text (serial number) that's not in the .csv column format that I would LOVE to use as a primary key. EX. Data from Engine SQL03423, version 21.04, time, speed, temp june 3 1:00,…
WillaOMO
  • 1
  • 1
-1
votes
1 answer

Laravel Scout & Algolia - can't create index on staging server after migrating from TNTSearch to Algolia

this is very weird. I've successfully created an index on my local server and it showed up in Algolia dashbord. However, when I ran php artisan scout:import 'App\MyModel' on my staging server I get: Imported [App\MyModel] models up to ID: 22 All…
dbr
  • 1,037
  • 14
  • 34
-1
votes
1 answer

Crreate staging environment for a MySQL database

I have a question regarding staging environments for databases. I started as a web developer and have been maintain my websites with GIT, which allows me to have a staging environment and thus I have rollback possibilities if there are major…
Tavo
  • 173
  • 1
  • 15
1 2 3
35
36