Questions tagged [network-partitioning]

7 questions
3
votes
1 answer

Blocking traffic to one of the docker service tasks (containers)

There are 3 distinct vms where RabbitMQ service is deployed in global mode. My goal is to block traffic to one of the RabbitMQ service containers. Tried using iptables to Reproduce RabbitMQ network partition scenario by adding iptables…
rok
  • 9,403
  • 17
  • 70
  • 126
1
vote
1 answer

CAP Theorem - Partition Tolerance means Nodes down or Network down?

Reading the Brewer's conjecture, it says Partition Tolerance means nodes are not able to pass messages to other nodes in a cluster, and not that a few nodes are down. This idea seems to be strengthened by the definition of Availability which refers…
Gadam
  • 2,674
  • 8
  • 37
  • 56
1
vote
0 answers

Writes on Cassandra Network Partitioned Nodes

Setup: A Single Cassandra Cluster with many many nodes. There are many tokens and many nodes. These tokens are partitioned onto these nodes. Let us take a token which is partitioned on 5 nodes. There are 5 nodes for a token. Now among these 5…
0
votes
1 answer

Read Pajek partitions file (.clu format) using Networkx

I'm trying to read a pajek partition file (In other words, it is a .clu file) with NetworkX python library and I can't figure out how can I do that. I can read a pajek network (.net format) using the read_pajek method, but I did't find a way to read…
0
votes
1 answer

MongoDB nodes (AWS EC2 Instances) are still responsive even after network partitioning done using Security Groups

I have created a MongoDB replica set using 5 EC2 instances on AWS. I added the nodes using rs.add("[IP_Address]") command. I want to perform network partition in the replica set. In order to that, I have specified 2 kinds of security groups. 'SG1'…
0
votes
1 answer

partitioning large signed networks

I have a large signed network. The signed network is a weighted graph whose edges can be +1 or _1. I need to partition this graph so that most positive edges are placed inside the clusters and the negative edges are placed outside the cluster. this…
0
votes
1 answer

Exactly-once guarantee in Storm Trident in network partitioning and/or failure scenarios

So, Apache Storm + Trident provide the exactly-once semantics. Imagine I have the following topology: TridentSpout -> SumMoneyBolt -> SaveMoneyBolt -> Persistent Storage. CalculateMoneyBolt sums monetary values in memory, then passes the result to…
esengineer
  • 9,514
  • 7
  • 45
  • 69