Re: Storm -- Standby Datacenter for Failover

2015-08-29 Thread rick
Sounds like a good plan. > On Aug 29, 2015, at 1:20 AM, Kishore Senji wrote: > > http://zookeeper.apache.org/doc/trunk/zookeeperObservers.html > > We can have a DC of observers as stand by and then have a DC of Storm on > stand by configured to the local DC. > > Once the primary DC fails t

Re: Storm -- Standby Datacenter for Failover

2015-08-28 Thread Kishore Senji
http://zookeeper.apache.org/doc/trunk/zookeeperObservers.html We can have a DC of observers as stand by and then have a DC of Storm on stand by configured to the local DC. Once the primary DC fails then the Observers in another DC can be changed as Participants and the stand by Storm cluster can

Re: Storm -- Standby Datacenter for Failover

2015-08-28 Thread Rick Mangi
You can, but that could potentially cause a major bottleneck and you would need at least 6 nodes to handle 1/2 of them dying at once. With zookeeper, adding more nodes can cause slow performance. I’d love to hear someone tell me I’m wrong and how to better manage it :) I’ve actually been workin

Re: Storm -- Standby Datacenter for Failover

2015-08-28 Thread Susheel Kumar Gadalay
Can't you have zookeeper spawning data centers if there is connectivity. Enlarge zookeeper to more than 3 nodes and extra nodes from other data centers and also minimum replication to be set. On 8/28/15, Rick Mangi wrote: > As long as you are replicating kafka and your offset checkpoints in the

Re: Storm -- Standby Datacenter for Failover

2015-08-28 Thread Rick Mangi
As long as you are replicating kafka and your offset checkpoints in the secondary datacenter you should be able to do this. The offsets into kafka from your spout tell you where you are in your processing (as long as your topology is acking). That said, if those offsets are in zookeeper you wil

Re: Storm -- Standby Datacenter for Failover

2015-08-27 Thread nitin sharma
hi Andrew, our setup includes Kafka --> Storm --> Cassandra .. we want to have a backup cluster for Storm, so that in case of any outage the backup server (topology) picks up from where Active server topology stopped and process the events and sends them to Cassandra. Regards, Nitin Kumar Sharm

Re: Storm -- Standby Datacenter for Failover

2015-08-27 Thread Andrew Xor
I can try and give you some ideas, but start by first telling us how you've setup your infrastructure a bit so we can better help you... Kindly yours, Andrew Grammenos -- PGP PKey -- ​ https://www.dropbox.com/s/yxvycjvlsc111bh/pgpsig.txt

Storm -- Standby Datacenter for Failover

2015-08-27 Thread nitin sharma
Hi All, I have been asked how can we setup a failover datacenter for Storm, so that if by any chance (lets say due to power outages) the complete Active datacenter becomes offline then Standby Datacenter can become alive and process the real time feeds. Does anyone have faced this kind of scenari