cluster-computing

Where can i find akka.cloud package?

这一生的挚爱 提交于 2019-12-06 09:32:54
Can someone point me to the Akka version that has the package akka.cloud.cluster? I am currently using Akka 1.2-RC6. google searches on this topic result in broken links about Cloudy Akka... Cloudy Akka was described here as a suite of commercial add-on modules for Akka. The original company developing Akka have since merged with Typesafe . The latest seems to be this topic from the akka user mailing list, specifically: "the Cloudy Akka project is split up: the stuff interesting for developers (like distribution etc) is going to be free and part of Akka 2.0 the stuff interesting for operations

Socket.io 'Handshake' failing with cluster and sticky-session

≯℡__Kan透↙ 提交于 2019-12-06 08:53:33
I am having problems getting the sticky-sessions socket.io module to work properly with even a simple example. Following the very minimal example given in the readme ( https://github.com/indutny/sticky-session ), I am just trying to get this example to work: var cluster = require('cluster'); var sticky = require('sticky-session'); var http = require('http'); if (cluster.isMaster) { for (var i = 0; i < 4; i++) { cluster.fork(); } Object.keys(cluster.workers).forEach(function(id) { console.log("Worker running with ID : " + cluster.workers[id].process.pid); }); } if (cluster.isWorker) { var

Is there a useDirtyFlag option for Tomcat 6 cluster configuration?

梦想与她 提交于 2019-12-06 08:25:32
问题 In Tomcat 5.0.x you had the ability to set useDirtyFlag="false" to force replication of the session after every request rather than checking for set/removeAttribute calls. <Cluster className="org.apache.catalina.cluster.tcp.SimpleTcpCluster" managerClassName="org.apache.catalina.cluster.session.SimpleTcpReplicationManager" expireSessionsOnShutdown="false" **useDirtyFlag="false"** doClusterLog="true" clusterLogName="clusterLog"> ... The comments in the server.xml stated this may be used to

Setting up RabbitMQ cluster on Windows servers

此生再无相见时 提交于 2019-12-06 07:40:58
问题 I am trying to set up a RabbitMQ cluster on Windows servers, and this requires using shared Erlang cookie file. According to the documentation, all I need to do is to ensure that the root directories on different machines contain the same .erlang.cookie file. So what I did is found these files on both machines and overwrote them with the same shared version. After that all rabbitmqctl commands failed on the machine with new file version with "unable to connect to node..." error message. I

what is the minimum number of computers for a slurm cluster

▼魔方 西西 提交于 2019-12-06 07:37:56
I would like to setup a SLURM cluster . How many machines do I need at minimum? Can I start with 2 machines (one being only client, and one being both client and server)? You can start using only one machine, but 2 machines will be the most standard configuration, being one machine the controller and the other the "worker" node. With this model you can add as many machines to the cluster being "worker" nodes. This way the server will not execute jobs, and will be not suffering jobs interference. As @Carles wrote, you can use only one computer if you want, running both the controller (

File can't be found in a small fraction of submitted jobs

。_饼干妹妹 提交于 2019-12-06 07:20:26
I'm trying to run a very large set of batch jobs on a RHEL5 cluster which uses a Lustre file system. I was getting a strange error with roughly 1% of the jobs: they could't find a text file they are all using for steering. A script that reproduces the error looks like this: #!/usr/bin/env bash #PBS -t 1-18792 #PBS -l mem=4gb,walltime=30:00 #PBS -l nodes=1:ppn=1 #PBS -q hep #PBS -o output/fit/out.txt #PBS -e output/fit/error.txt cd $PBS_O_WORKDIR mkdir -p output/fit echo 'submitted from: ' $PBS_O_WORKDIR files=($(ls ./*.txt | sort)) # <-- NOTE THIS LINE cat batch/fits/fit-paths.txt For some

Creating a private MSMQ queue in a Microsoft Cluster via a script

安稳与你 提交于 2019-12-06 05:45:43
问题 We are migrating to Windows 2008 R2 Standard and will be using a Microsoft Clustering (active-passive) configuration. Our application is heavily dependent on MSMQ private queues and our install creates well over 100 private queues using the following C# code. MessageQueue.Create(".\private$\myqueue", false); Since the install is not running inside the context of the cluster, the queues are created on the local node and not in the cluster. We then tried changing the code to: MessageQueue

How does a JMS Topic Subscriber in a clustered application server recieve messages?

流过昼夜 提交于 2019-12-06 05:08:22
Suppose I created a JMS Topic (PropertiesTopic) with one subscriber (PropertiesSubscriber). PropertiesSubscriber is running in a load balanced application server cluster as shown in the picture below. alt text http://www.freeimagehosting.net/uploads/be28c03781.png When a message is delivered to PropertiesTopic, do all the instances of PropertiesSubscriber running on different app servers get that message or does the message get delivered to only one PropertiesSubscriber instance running on an app server determined by the load balancer? JMS 2.0 introduces shared subscriptions . These allow

Clustered WildFly 10 domain messaging

為{幸葍}努か 提交于 2019-12-06 04:50:19
I have three machines located in different networks: as-master as-node-1 as-node-2 In as-master I have WildFly as domain host-master and the two nodes have WildFly as domain host-slave each starting an instance in the full-ha server group. From the as-master web console I can see the two nodes in the full-ha profile runtime and if I deploy a WAR it gets correctly started on both nodes. Now, what I'm trying to achieve is messaging between the two instances of the WAR, i.e. sending a message from a producer instance in as-node-1, consumers in all the nodes should receive the message. This is

Session replication in Glassfish Cluster on EC2

不打扰是莪最后的温柔 提交于 2019-12-06 04:45:21
I've built a cluster on Glassfish administred via SSH, where there are 2 instances. I deployed an application that shows the "Session id". This application has in the web.config: <distributable/> And in the sun-web.xml: <session-config> <cookie-properties> <property name="cookieDomain" value="compute.amazonaws.com"/> </cookie-properties> </session-config> I enabled "Availability" in Edit Application. But when I access the 2 web app versions I see different session ids. Can anyone help me? EDIT: As some users noticed, in EC2 is not supported multicast. A solution comes with Glassfish v3.1.2,