deployment

How to write Kafka consumers - single threaded vs multi threaded

我是研究僧i 提交于 2019-12-30 05:59:04
问题 I have written a single Kafka consumer (using Spring Kafka), that reads from a single topic and is a part of a consumer group. Once a message is consumed, it will perform all downstream operations and move on to the next message offset. I have packaged this as a WAR file and my deployment pipeline pushes this out to a single instance. Using my deployment pipeline, I could potentially deploy this artifact to multiple instances in my deployment pool. However, I am not able to understand the

How can i do zero down time deployment on cluster environment?

蓝咒 提交于 2019-12-30 05:31:09
问题 I need to deploy a major deployment on my system (more that 15 ear file ) , my system is high available system , So how can I do this deployment with zero downtime ? my application server is IBM-WAS 回答1: After updating the applications, you can utilize the "Rollout Update" feature. Rather than saving and synchronizing the nodes after updating, you can use this feature which automatically performs the following tasks to enable the changes to propagate to all deployment targets while

svn deployment strategies for multiple groups of developers (not co-located) working on different components of the same project

笑着哭i 提交于 2019-12-30 05:01:09
问题 Our project is a content management system supporting several dozen of our websites. The development group started off small and in one location, and we dealt with a fairly standard coding/deployment strategy. We coded off of trunk and insisted on a clean trunk. Every few days we would tag trunk and deploy to the test server. If all worked out, we'd deploy to Production and move on. That worked well for a while until the team grew. We frequently faced situations where the revision that was

Does Web Platform Installer support automation?

拥有回忆 提交于 2019-12-30 01:33:31
问题 I wonder if I can automate WPI actions to setup a dev box in unattended mode, either with command line options or a configuration file. It looks like WPI takes a "URL" as a command line parameter but I have no idea what format the response should be in, and what it allows in general. EDIT: Thanks folks for the huge effort to come up with ways to automate setups. As @fra mentioned now there is a command line tool for WPI. 回答1: WebPi Command Line was just released: http://blogs.iis.net/satishl

Distributing (and updating) an enterprise Android application that is to be used in-house only [closed]

只愿长相守 提交于 2019-12-30 00:50:31
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I'm building an Android application for an enterprise customer that will be used in-house (and not sold). Though we have additional

macdeployqt and third party libraries

久未见 提交于 2019-12-29 14:58:26
问题 I've got an application project that depends on a couple of shared libraries that I have created myself. According to the Qt 4.6 documentation "Deploying an Application on Mac OSX": Note: If you want a 3rd party library to be included in your application bundle, then you must add an excplicit lib entry for that library to your application's .pro file. Otherwise, the macdeployqt tool will not copy the 3rd party .dylib into the bundle. I have added lib entries to my application's .pro file but

Deploying assembly package with maven-release-plugin

不羁岁月 提交于 2019-12-29 14:15:33
问题 We use Hudson and the maven-release-plugin to do the release builds. Now I have a project which contains an assembly that puts together all needed components and then packages them into a .tar.gz package with the desired directory structure. Now I'm trying to get the release-plugin to deploy this package to our Maven repository during the release:perform goal, but only the standard stuff (sources, javadoc, POM) are deployed. I've already bound the assembly goal to the maven package phase, and

git clone from local to remote

北城以北 提交于 2019-12-29 11:34:31
问题 We're in the process of migrating from Mercurial to Git for our workflow and I have two minor issues. First, is it possible to "clone" a local repository directly into an empty remote (ssh) dir? Currently when we create a new website we basically clone our CMS locally, configure it and then we clone it on the central repo and on the webserver ( hg clone . ssh://account@server/www ). That way we have instant access to push/pull goodness. This brings me to the second issue, remote deployment.

Is there benefit to using Monit instead of a basic Upstart setup?

柔情痞子 提交于 2019-12-29 10:07:31
问题 I'm configuring my server to run node.js as a daemon. I've setup Upstart to handle startup and shutdown of node, which works wonderfully. The next step is to make sure that node.js is restarted if it dies. A few of the guides have suggested using Monit (or Fugue) to monitor the process (in Monit's case by doing an HTTP request to the server and waiting for a response). I'm happy to use something like Monit or Fugue, but I'm not sure why one wouldn't (or couldn't) just use Upstart's respawn

A simple Python deployment problem - a whole world of pain

匆匆过客 提交于 2019-12-29 10:06:14
问题 We have several Python 2.6 applications running on Linux. Some of them are Pylons web applications, others are simply long-running processes that we run from the command line using nohup . We're also using virtualenv , both in development and in production. What is the best way to deploy these applications to a production server? In development we simply get the source tree into any directory, set up a virtualenv and run - easy enough. We could do the same in production and perhaps that