Questions tagged [octopus]

Octopus is a framework for database sharding with Ruby on Rails' ActiveRecord.

From the README:

Octopus is a better way to do Database Sharding in ActiveRecord. Sharding allows multiple databases in the same rails application. While there are several projects that implement Sharding (e.g. DbCharmer, DataFabric, MultiDb), each project has its own limitations. The main goal of octopus project is to provide a better way of doing Database Sharding.

Octopus supports:

  • Sharding (with multiple shards, and grouped shards).
  • Replication (Master/slave support, with multiple slaves).
  • Moving data between shards with migrations.

Source code for Octopus is on github.

143 questions
0
votes
1 answer

How can i read secrets from Azure key vault and place them into octopus deploy variables

I have projects in octopus which deploys various infrastructure including azure arm templates, some of the templates require passwords from Azure Key Vault, is there a way to automate this ?
itye1970
  • 1,654
  • 7
  • 31
  • 62
0
votes
1 answer

Error "Web Deploy cannot modify the file on the destination because it is locked by an external process" in Octopus deploy

We are deploying into azure using Octopus deploy. We are using it since more than a year, and suddenly we started (about 3 weeks ago) to get errors on few deployments. Microsoft.Web.Deployment.DeploymentDetailedClientServerException: Web Deploy…
0
votes
1 answer

Octopus Deploy multiple SQL scripts for specific database connections

I have automated my DevOps continuous deployment with octopus. I've create a package of my WebApp and migration sql script. This will successfully deploy on the SQL-server. But now I want to run specific .sql scripts, within my octopus package, on…
Wouter
  • 33
  • 1
  • 8
0
votes
1 answer

How in octopus deploy set the package version number and release that version automatically

As a new user of the Octopus Deploy needs to do many manual things, I am looking for a way to automate those things for my local windows server and clients. Give the details of what I am doing and what I need to get done manually. Following are the…
shamim
  • 6,640
  • 20
  • 85
  • 151
0
votes
1 answer

How do I run my automation scripts which include UI interaction on an Octopus tentacle using the Octopus Server?

I have a batch file which uses nunitconsole runner to run my tests. It's a combination of nunit framework and specflow. When I run the batch file on the Octopus tentacle it works as expected. However, if I create a step in the Octopus server to…
RKN
  • 3
  • 1
0
votes
0 answers

Versioning SOA platform Across DEV,UAT environment

We are trying to build a platform. There are approximately 30 services around(UI,WcF,Rest,Api,scheduler,etc). After a lot of development days finally we are going out of the house. But we want to control the versioning carefully. It is time to find…
0
votes
1 answer

Push package to Octopus Deploy fail from VSTS

My VSTS build is getting successful and artifact is also creating in .nupgk format. but when I create a release and hook it with my Octopus deploy cloud instance through service connection and using "Push package to Octopus" , it's throwing an…
0
votes
1 answer

Bamboo - Octopus integration for CI/CD

I'm new to Octopus and trying to deploy my Windows service. I'm trying to integrate Bamboo and Octopus. In Bamboo, as of now I have added few tasks which builds the application and runs the test cases. Now I have to add new tasks to deploy the code.…
CrazyCoder
  • 2,194
  • 10
  • 44
  • 91
0
votes
0 answers

Randomly getting 'System.BadImageFormatException: Index not found' error in Web API after certain deployments to an Azure App Service

I have an ASP.NET Web API application running on an Azure App Service which is, in turn, deployed via Octopus after a TFS build definition is completed. After certain successful deployments (no errors happen nor in TFS nor in Octopus), the whole API…
0
votes
1 answer

How to pass nested Stack outputs to another step in Octopus Deploy

In my Octopus project, the first step launches a bunch of nested stacks implemented with cloudformation. I need to share the outputs of the master stack launched from Octopus, how can I do that? Thanks.
Issa Dawaji
  • 183
  • 1
  • 12
0
votes
1 answer

Rails while iterating through all the shards, get the shard name using Octopus

The setup: I have multiple databases of the same schema. Each database represent the data for different sites. I want to iterate through each of the instances and print out the user count along with the shard name. How can I do that? This is the…
Suthan Bala
  • 3,209
  • 5
  • 34
  • 59
0
votes
1 answer

CI for hotswapping non-compiled files into VSO and Octopus pipeline

Context: Currently we manually get a git dev branch built into a package into VSO, and once that package is built it deploys to Octopus and takes down the site for a good amount of time as all the built packages are loaded into each server the site…
Jimmyt1988
  • 20,466
  • 41
  • 133
  • 233
0
votes
1 answer

Exclude schema from deploying with Octopus

It's there any way that i can specify a schema name that i don't want to be deployed with Octopus Deploy? I have a Visual Studio database project that has a schema generated automatically (with tables and stored procedures). I don't want this to be…
istuc
  • 1
  • 3
0
votes
1 answer

Octopus: Override /p:RunOctoPack=true in packages.config

We have a Mainline build versioned "x.0.0.r" where we publish a web service using octopus. Our branches are versioned "x.y.z.r" for specific releases. We DO NOT want to publish this web service when building from a branch. We are using TFS: 2013…
Tom
  • 162
  • 8
0
votes
1 answer

Want to have app (Server:Port) to have friendly alias - Understanding Host Alias / DNS / A Record / CNAME

I am trying to get my head around Windows, Networks and Domains. I currently have a server - svr. This is on my domain companyname.co.uk I can connect to server and ping both svr and svr.companyname.co.uk. On this server I have a number of…