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
5
votes
1 answer

staging and live app with capistrano

I thought I'd do a simple yet potentially very useful thing, and create another symlink called live, that points to an arbitrary release, and leave current at the head where it usually is: 20120519235508 20120521004833 20120521024312 <--…
pixelearth
  • 13,674
  • 10
  • 62
  • 110
5
votes
1 answer

heroku staging or new app in heroku for staging?

What are thoughts around creating a staging environment for my app or should i create a second app on heroku for staging? Which one is better, or preferred? Thanks.
noob
  • 1,807
  • 2
  • 18
  • 34
4
votes
1 answer

Heroku SSL on subdomain for staging server

I have a production instance on Heroku where users go to https://secure.myapp.com for checkout. I used hostname-based SSL because $100 / month just isn't feasible for my client. Now, I'm in a situation where I need a staging environment…
manafire
  • 5,984
  • 4
  • 43
  • 53
4
votes
2 answers

What are some strategies to stage commits with TFS?

I'm using TFS 2010 as a Source Control System and have the problem that I want to do multiple commits, but cannot check them in because of a policy that requires a review. I want to do more commits (pretty much every few minutes) than reviews.…
Michael Stum
  • 177,530
  • 117
  • 400
  • 535
4
votes
0 answers

ENOTDIR: not a directory node_modules/.staging/@types/node-16824c86/package.json

It error When I run docker exec -t [image] npm run production. npm WARN ws@8.2.3 requires a peer of utf-8-validate@^5.0.2 but none was installed. npm ERR! Linux 4.10.0-35-generic npm ERR! argv "/usr/bin/node" "/usr/bin/npm" "install" "--save" npm…
4
votes
1 answer

Windows Azure Multiple Sites under single role - Staging Issue with host header

I have a "web" and "mobile" site that I'm launching within Azure of the same domain. Originally I was going to run each as a separate hosted service but this doubles the cost though it would allow me to scale each independently. Then I learned that…
4
votes
6 answers

How much should the staging environment equal the live one?

Management has decided to go for Windows 2008 64 bit with IIS7 to service our main website. They want to have it staged on a Windows 2003 server with IIS6. [Edit] Yes 32 bit is what they are planning for staging [End Edit] I want to know what…
Ric Tokyo
  • 6,577
  • 3
  • 30
  • 48
4
votes
4 answers

Are staging tables / staging databases an anti-pattern?

Are staging tables an anti-pattern that is used when rpc (such as Java RMI or some kind of Web Service call) or messaging queue (such as JMS) would be a better solution, or are there problems better served by staging tables? To clarify: By staging…
sal
  • 23,373
  • 15
  • 66
  • 85
4
votes
3 answers

Trying to set up a heroku staging site - "Resource not found "

I'm working on an existing rails project which is deployed on heroku. I'm trying to set up a staging server which deploys from the staging branch. (currently master deploys to production). I'm following this page…
Max Williams
  • 32,435
  • 31
  • 130
  • 197
4
votes
2 answers

Are there any reasons not to use RAILS_ENV=staging on Heroku?

The Heroku documentation at https://devcenter.heroku.com/articles/deploying-to-a-custom-rails-environment says I shouldn't use a staging.rb file to define my staging environment. It may be tempting to create another custom environment such as…
Kevin Lawrence
  • 698
  • 7
  • 23
4
votes
3 answers

Set up staging and production environmets and minimizing downtime on simple hosting

I have an ASP.NET MVC 3 application, WouldBeBetter.com, currently hosted on Windows Azure. I have an Introductory Special subscription package that was free for several months but was surprised at how expensive it has turned out to be (€150 p/m on…
Sergi Papaseit
  • 15,999
  • 16
  • 67
  • 101
4
votes
1 answer

Setting up a staging environment with an external hosting site?

I've been working for a few years on a project for a friend of mine, and it has slowly grown into a large website. In the early stages, I just did development on my local machine with a local database, then deployed any site and database changes to…
Steven
  • 18,761
  • 70
  • 194
  • 296
4
votes
1 answer

Run script before removing job in Jenkins Pipelines

I'm setting up a development environment where I have Jenkins as CI server (using pipelines), and the last build step in Jenkinsfile is a deployment to staging. The idea is to have a staging environment for each branch that is pushed. Whenever…
mathop
  • 71
  • 6
4
votes
4 answers

copy production database to staging capistrano

I am using rails and capistrano with a staging and production server. I need to be able to copy the production database to the staging database when I deploy to staging. Is there an easy way to accomplish this? I thought about doing this with…
Toby Joiner
  • 4,306
  • 7
  • 32
  • 47
4
votes
4 answers

How to restrict access to a staging environment

Our workflow currently has developers working on locally hosted copies of our web application with SVN for source control. We have post-commit hooks that deploy each new revision to a designated staging environment running on a subdomain. My…
jthompson
  • 843
  • 1
  • 11
  • 20