cluster-computing

Can MySQL Cluster handle a terabyte database

隐身守侯 提交于 2019-11-30 04:49:50
问题 I have to look into solutions for providing a MySQL database that can handle data volumes in the terabyte range and be highly available (five nines). Each database row is likely to have a timestamp and up to 30 float values. The expected workload is up to 2500 inserts/sec. Queries are likely to be less frequent but could be large (maybe involving 100Gb of data) though probably only involving single tables. I have been looking at MySQL Cluster given that is their HA offering. Due to the volume

Starting remote processes in a Windows network

六眼飞鱼酱① 提交于 2019-11-30 04:31:47
问题 I have several slave machines and a master machine which together run a distributed application. Processes on each slave machine have to have a GUI and network access (I think it would be called an interactive process then). For ease of use it would be nice if the master machine could start/stop the processes on those slave machines. My first idea was to use WMI and the Win32_Process class to start a remote process but upon further investigation it was reveiled that processes started this way

Starting Zookeeper Cluster. Error: Could not find or load main class org.apache.zookeeper.server.quorum.QuorumPeerMain

风格不统一 提交于 2019-11-30 03:38:47
问题 (I'm running on CentOS 5.8). I've been following the direction for a Clustered (Multiserver) Zookeeper Set-up, but getting an error when I try to start up my server. When I run the command as described in the documentation: java -cp zookeeper-3.4.6.jar:lib/log4j-1.2.16.jar:conf \ org.apache.zookeeper.server.quorum.QuorumPeerMain conf/zoo.cfg I get the error: Error: Could not find or load main class org.apache.zookeeper.server.quorum.QuorumPeerMain I have my files location as such and am

Hadoop on windows server

断了今生、忘了曾经 提交于 2019-11-30 01:16:19
I'm thinking about using hadoop to process large text files on my existing windows 2003 servers (about 10 quad core machines with 16gb of RAM) The questions are: Is there any good tutorial on how to configure an hadoop cluster on windows? What are the requirements? java + cygwin + sshd ? Anything else? HDFS, does it play nice on windows? I'd like to use hadoop in streaming mode. Any advice, tool or trick to develop my own mapper / reducers in c#? What do you use for submitting and monitoring the jobs? Thanks From the Hadoop documentation : Win32 is supported as a development platform .

Is there a way to add nodes to a running Hadoop cluster?

余生长醉 提交于 2019-11-29 23:14:46
I have been playing with Cloudera and I define the number of clusters before I start my job then use the cloudera manager to make sure everything is running. I’m working on a new project that instead of using hadoop is using message queues to distribute the work but the results of the work are stored in HBase. I might launch 10 servers to process the job and store to Hbase but I’m wondering if I later decided to add a few more worker nodes can I easily (read: programmable) make them automatically connect to the running cluster so they can locally add to clusters HBase/HDFS? Is this possible

How does weblogic clustering work?

六月ゝ 毕业季﹏ 提交于 2019-11-29 21:04:10
I'm new to weblogic. I've read http://download.oracle.com/docs/cd/E11035_01/wls100/cluster/overview.html and searched this topic on the internet but still had a hard time understanding some of weblogic's clustering concepts. Can anybody confirm/correct my understandings below? a cluster contains one or more logical servers which can reside on one or many physical servers when deploying a j2ee app to a cluster, it is tied to one server in that cluster external users of the deployed app aren't aware of clustering the log file of that app is located on the server it's deployed if the server

Slave nodes not in Yarn ResourceManager

牧云@^-^@ 提交于 2019-11-29 20:16:20
问题 I've set up a 3 node Apache Hadoop cluster. On master node, I can see [hadoop-conf]$ jps 16856 DataNode 17051 SecondaryNameNode 16701 NameNode 21601 ResourceManager 21742 NodeManager 18335 JobHistoryServer and on slave nodes, I see [fedora20-template dfs]$ jps 28677 Jps 28510 NodeManager 27449 DataNode I can see three live nodes from master:50070. However, in the ResourceManager Web UI (http://master:8088/cluster/nodes), I can see only master node. Why are the two slave nodes not in the

Spread vs MPI vs zeromq?

血红的双手。 提交于 2019-11-29 20:15:14
In one of the answers to Broadcast like UDP with the Reliability of TCP , a user mentions the Spread messaging API. I've also run across one called ØMQ . I also have some familiarity with MPI . So, my main question is: why would I choose one over the other? More specifically, why would I choose to use Spread or ØMQ when there are mature implementations of MPI to be had? MPI was deisgned tightly-coupled compute clusters with fast, reliable networks. Spread and ØMQ are designed for large distributed systems. If you're designing a parallel scientific application, go with MPI, but if you are

How do I use Node.js clusters with my simple Express app?

百般思念 提交于 2019-11-29 19:34:11
— I built a simple app that pulls in data (50 items) from a Redis DB and throws it up at localhost. I did an ApacheBench (c = 100, n = 50000) and I'm getting a semi-decent 150 requests/sec on a dual-core T2080 @ 1.73GHz (my 6 y.o laptop), but the proc usage is very disappointing as shown: Only one core is used, which is as per design in Node, but I think I can nearly double my requests/sec to ~300, maybe even more, if I can use Node.js clusters. I fiddled around quite a bit but I haven't been able to figure out how to put the code given here for use with my app which is listed below: var

Quartz Scheduler: Trigger some jobs on every cluster node and some only once per cluster

旧城冷巷雨未停 提交于 2019-11-29 19:22:23
问题 I am using Quartz Scheduler as a Spring bean in a clustered environment. I have some jobs annotated with @NotConcurrent and they are running once per cluster (i.e. only in one node, only in one thread). Now I need to run one job on every node of the cluster. I removed the @NotConcurrent annotation, but it only run on every thread on one machine. It does not get fired on other nodes. What should I annotate the job with? Example: Job1 NotConcurrent annotated is scheduled at midnight => It fires