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
9
votes
5 answers

Rails asset pipeline on staging: correct fingerprint but 404ing

I'm running Rails 3.1.3, which includes Sprockets 2.0.3 as a dependency. I set up my staging environment to be configured the way the Rails guide suggests for production. config.serve_static_assets = false config.assets.compress =…
9
votes
3 answers

Ruby on Rails: Bundler & Capistrano: specify which groups (development, test) are to be excluded when deploying

The Bundler documentation says, that in order to install all necessary bundles when deploying via Capistrano, one need only insert require 'bundler/capistrano' # siehe http://gembundler.com/deploying.html in his deploy.rb. Then, upon deployment,…
Jens
  • 1,386
  • 14
  • 31
9
votes
3 answers

How can I specify an angular environment on ionic build?

The Ionic framework uses Angular. Angular 6 defines environments in ./src/environments/environment.stage.ts . When building an Angular app, I can select the environment with the parameter --env=stage or --configuration==stage in Angular 6. To build…
Martin M
  • 8,430
  • 2
  • 35
  • 53
9
votes
2 answers

Problem with modified files showing up in Git but not updating?

I've got some files/folders that just wont leave the Git staging area? # On branch master # Changed but not updated: # (use "git add ..." to update what will be committed) # (use "git checkout -- ..." to discard changes in working…
Integralist
  • 2,161
  • 1
  • 32
  • 50
8
votes
1 answer

What's the ideal way to set up multiple environments (eg. dev, stage and prod) for Google Cloud Run applications?

I've got a sample app up and running on Google Cloud Run, complete with CD from GitHub using Cloud Build et al. I would like to have different branches deploy to different environments (dev, stage prod, etc.), however the documentation doesn't hint…
8
votes
0 answers

Firebase Authentication Staging Environment

I find nowhere in the docs how to setup a separate development (pre-production, staging, etc.) environment when working with Firebase Authentication. I do not want to create and delete arbitrary user accounts and be sending emails using my live…
Sammy
  • 3,395
  • 7
  • 49
  • 95
8
votes
2 answers

Close and release artifact on maven central using gradle

I have this gradle script: def configureUploadArtifacts(groupId, repoUrl, _packaging) { def gpgKeyId = System.getenv('GPG_KEY_ID') def gpgPassword = System.getenv('GPG_KEY_PASSWORD') def gpgFile = System.getenv('PATH_TO_GPG_FILE') …
TacB0sS
  • 10,106
  • 12
  • 75
  • 118
7
votes
6 answers

Wordpress staging environment

I work for a company that does sites for the pharma industry and we often need to get legal approval before we push any changes live. So, I'd like to migrate a lot of our work to a CMS environment, specifically wordpress but we need the ability to…
Greg Thompson
  • 886
  • 4
  • 12
  • 31
7
votes
1 answer

GitKraken Staging too slow after upgrade

So, I've been using gitkraken for awhile and loving it, even considering getting a subscription especially now that they have another thing called Glo - soon to come. I have recently upgraded GitKraken to v3.3.4. I am not sure whether that was a…
Riza
  • 697
  • 2
  • 10
  • 17
7
votes
1 answer

git staging patches: with hunk smaller than a line

I am looking to make an interactive patch from a unique commit. I would like to use an output similar as git diff --word-diff=porcelain [file] for an interactive patching. The command git add --edit propose only hunk that are as least as one…
nebi
  • 722
  • 1
  • 8
  • 17
7
votes
4 answers

Rails & Capistrano 3 - staging server trying to user production database

I've setup a server for my staging environment using NGINX & Passenger. I've also setup a staging.rb file which is a duplicate of my production.rb file under environments. In my database.yml file I've put in a staging configuration: staging: …
fatfrog
  • 2,118
  • 1
  • 23
  • 46
6
votes
1 answer

Staging / AB Testing CDN Hosting Javascript

Let's assume that i have a single javascript file that I have handed out to a lot of my clients, similar to GA's *ga.js, and this file is getting loaded high enough number of times that I have to host it on a CDN. The problem I have with this setup…
daniyalzade
  • 981
  • 3
  • 8
  • 19
6
votes
1 answer

Separate apps in TestFlight for production and staging?

Our app has two targets, with separate Bundle Ids for the production and staging app: com.myCompany.production com.myCompany.staging We have used TestFlight to test our app internally, but only at the later stages - we were testing…
cannyboy
  • 24,180
  • 40
  • 146
  • 252
6
votes
5 answers

How to select repository for staging view in Eclipse Luna 4.4?

I'm not able to find a solution to a documented bug in Eclipse (Luna 4.4). I've cloned a git repository from Github into my eclipse workspace view and imported the associated Maven project into my project space. When I then display the staging view…
swingMan
  • 732
  • 1
  • 6
  • 17
6
votes
4 answers

zend framework auto switch production staging test .. etc

What do I change to switch from production to staging.. etc.. and where.. Bootstrap ? Also, Curious if anyone has configured their Zend Framework to automatically switch from production, staging, test.. etc based on Host information.. example.. if…
user284503
  • 368
  • 3
  • 11
  • 23