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
15
votes
7 answers

Git push current branch to a remote with Heroku

I'm trying to create a staging branch on Heroku, but there's something I don't quite get. Assuming I've already created a heroku app and setup the remote to point to staging-remote, If I do: git checkout -b staging staging-remote/master I get a…
cmaughan
  • 2,596
  • 5
  • 30
  • 35
14
votes
2 answers

Installing both staging and production iOS / Android apps on your device

I have an app which is published on both App Store and Play Store already. The app published is pointing to my production server. What I want to do is to have my devices install a "staging" app which points to my staging server so I don't mess up…
nigong
  • 1,727
  • 3
  • 19
  • 33
14
votes
4 answers

Git invert staging area

I have got changes in my staging area, and others not staged yet (some files have changes both in and out the staging area). I would like to invert the content of the staging area and the changes which are not staged. Does a shortcut exist in order…
moala
  • 5,094
  • 9
  • 45
  • 66
13
votes
5 answers

Connection Strings are replaced when performing Azure Web Site staging Swap

(1) we have a web application running on Azure Web Site using Sql Server (Web Edition). The application includes two connection strings: DefaultConnection - normal connection string, in the form…
yarg
  • 679
  • 6
  • 11
12
votes
1 answer

what is difference between sandbox and staging environments?

If the staging environment is an isolated environment for testing by testers and also sandbox is an isolated environment for testing, So what are those differences? Actually I could not find any useful and clear information on.
Mohammad Jamal Dashtaki
  • 1,415
  • 1
  • 16
  • 23
12
votes
5 answers

Staging database predicament

Suppose that there are 3 databases for Production Staging Dev As far as I know, Staging database need to be in sync with Production database But, When we are developing, we can do whatever we want with Dev database and change schema. Now here…
dance2die
  • 35,807
  • 39
  • 131
  • 194
12
votes
2 answers

Codepush React Native Android staging- Task installReleaseStagingDebug not found in root project

I'm trying to configure my RN android project according to this section of the react-native-code-push docs My build.gradle file has this configuration: buildTypes { debug { } releaseStaging { buildConfigField…
Uri Klar
  • 3,800
  • 3
  • 37
  • 75
12
votes
2 answers

Rails: differentiating staging from production

I've got a production server and a staging sever in which new features are tested before moving them to production. The staging server is physically different from the production one (different hosts with different urls), but it mimics it as much as…
kikito
  • 51,734
  • 32
  • 149
  • 189
12
votes
1 answer

How do I only commit specific lines using SmartGit/Hg

I'm using SmartGit/Hg. I edited some files working on two separate new features. Now as I finished working on Feature A, I want to commit my work, but I can't just commit all my edited files, as they contain changes of Feature B, which I do not want…
Christian
  • 1,663
  • 19
  • 33
11
votes
2 answers

unicorn hangs saying Refreshing Gems

I have a strange problem in staging after i migrated to unicorn from passenger. I configured unicorn for both development and staging environment . its working in development but not in staging. In development its listening to 8080 where as in…
11
votes
2 answers

Different environments on Firebase web application

I am building a web application with Firebase. Currently I can say that I do have two stages - development, the firebase serve which runs the localhost and firebase deploy --only hosting which uploads the web application on Firebase hosting.…
10
votes
4 answers

How to 'git push' to a repo that was cloned as read-only onto my team's staging server

I cloned a repo using its GitHub read-only URL onto my team's staging server. I made some changes there to the config files. I'd like to change the repo clone on the server to be read-write, so that I can 'git push' the config file changes. How…
coffee-grinder
  • 26,940
  • 19
  • 56
  • 82
10
votes
6 answers

Using IIS virtual directories in Visual Studio Web Application projects

I have an ASP.NET project that has the following directories \ads \photos both these folders have thousands of files in them that get updated frequently. I currently have my IIS set up…
kenwarner
  • 28,650
  • 28
  • 130
  • 173
10
votes
3 answers

Password protecting a rails staging environment

I'm trying to work out what the best way to secure my staging environment would be. Currently I'm running both staging and production on the same server. The two options I can think of would be to: Use rails digest authentication I could put…
jonnii
  • 28,019
  • 8
  • 80
  • 108
9
votes
3 answers

Using ACS in Azure Staging slot

I am currently implementing a web application in Microsoft Azure. My concern is how to use the staging slot together with ACS. I want to push my application to the staging slot, verify that it is working and then do a VIP-swap to production. The…
Weikko
  • 91
  • 3
1 2
3
35 36