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

How to release only a part of the artifacts in Nexus Staging repository

Is there a way to release only some artifacts from a Nexus staging repository? I'm using Maven release plugin to push the artifacts to a Nexus pro staging repository. Then the QA team takes over, and I release the staging repository from the web…
Eyal Azran
  • 379
  • 1
  • 3
  • 14
0
votes
2 answers

Environment dependend properties in GWT

We have a GWT Application that has to link another Application. This link is different in all stages of my application (local, test, staging, prod). What options are there to configure a GWT app? Currently we're using properties files for every…
0
votes
3 answers

SQL Query on transformed table in SSIS

I have joined 5 tables and done transformation on these tables. Now I got a single table at the end. Now I want to perform sql query on this single table to filter records. But I don't know how to perform simple sql query on this table. I have…
user1772390
  • 53
  • 2
  • 10
0
votes
2 answers

Limit Azure staging application to selected IPs

I'm testing an application in the staging slot within a given web role. I don't want the staging application to be accessible to the public and I was wondering if there was anything I could add to the .cscfg file to lock down the application to just…
QFDev
  • 8,668
  • 14
  • 58
  • 85
0
votes
0 answers

.htaccess to add subdomain to permalinks (dev server to staging)

I have developed a static site that works great when on my local server: mysite.dev However, in my staging server, I have it going into a subdirectory: sites.domainname.com/mysite While it works on my local server (MAMP Pro), when I FTP the files to…
0
votes
1 answer

How do I view an app running in Heroku's staging environment?

When I push my app to the staging environment do I get a different main URL? I inherited an app someone else built and deployed on Heroku. I'd like to test some drastic changes that current users won't run into. It looks fine on my local…
Eric
  • 2,115
  • 2
  • 20
  • 29
0
votes
0 answers

Compare response of http backends on live traffic

I'd like to compare the response to live customer requests from production with staging servers. The only thing I can think of is a minimal node.js application doing the proxing, but I would feel much more comfortable with using an existing…
John M
  • 1
0
votes
2 answers

How to stage deployment of an app on same server as production?

I've just inherited a CF app from a customer who uses a shared CF hosting provider. I'd like to introduce better processes including the ability to stage app changes that I make for their review. (In the past, they would upload changes and cross…
DaveBurns
  • 2,036
  • 2
  • 27
  • 37
0
votes
1 answer

Setting up a staging server web workflow with GIT

I'd like to set up a web design & development workflow with the following features: Local working directory which can be sync'd between my laptop and my desktop. I'll then commit this to a staging server and when I'm happy with it, copy that to the…
0
votes
1 answer

Is it possible to set up multiple developers to edit the same Liferay Portal remotely?

I am new to Liferay Portal and am using 6.1 CE. I am trying to find a way to allow multiple developers to make changes to a single Liferay Portal simultaneously. I know that I can set up a Staging environment and allow all developers to log into…
jwest
  • 100
  • 1
  • 1
  • 9
0
votes
1 answer

Heroku / Rake overwriting RAILS_ENV

Possible Duplicate: Heroku automatically changing RAILS_ENV and RACK_ENV variables to “production” on every deploy I am currently trying to write a Rake script that will run the commands I need to do a deployment to my staging app, that will use…
0
votes
1 answer

Making local Drupal installation accessible through Virtual Host

I am trying to introduce a staging step in my company's code-production process. We currently have ~10 eng clients who commit code individually, update local codebase - debug/check locally, then we deploy the code to production environment and have…
0
votes
2 answers

Padrino - changing heroku's RACK_ENV to staging crashes app

I've got a staging app on heroku. The app works if I leave the RACK_ENV set as production, but if I set it to staging the app crashes (Error H10 (App crashed)) - that's all the info I get... My app is a Padrino app, and I'm using RACK_ENV to set…
Louis Sayers
  • 2,162
  • 3
  • 30
  • 53
0
votes
1 answer

Rebuild Sitecore Search index and link database in a background process

We have a staged environment with 1 CMS and 3 Slave servers I want to create a page on the slave server, which will be called by the staging module on a successful publish, that will rebuild all indexes and the links database. I know I can…
marto
  • 4,170
  • 1
  • 28
  • 39
0
votes
1 answer

How to deploy stage server in Rails and Heroku

My Rails app is hosted on Heroku. I would like to have another server for staging (i.e., showing and testing new features) before updating my main app. I have no idea how to do this in general, and in Rails. How should I go about it? Do I need to…
AdamNYC
  • 19,887
  • 29
  • 98
  • 154