Tagged Questions
1
vote
0answers
94 views
Spring Batch - Clustered Environment - Failover mechanism
Question: What is the failover strategy that spring batch supports best? Resource usage, failover mechanism have to be focussed on. Any suggestions?
Usecase - Spring batch has to be run to read a ...
0
votes
2answers
65 views
How to migrate on Object from one JVM to other JVM
can anyone help me in implementing how to migrate the objects from one JVM to other if my application (running on two machines ) is crashed and the other one can take hold from it.
0
votes
3answers
148 views
Distributed failsafe jobqeues for JVM
I need to implement a job queue for a distributed JVM application.
The queue(s) must hold a group of jobs (i.e. Java runnables) that have to be executed in sequential order. There will be hundreds of ...
14
votes
2answers
329 views
Leader election and Failover detection java library
I am looking for a library that provides the most basic clustering requirements.
This library should hopefully come detached from a full blown state replication solution (ZooKeeper), since the state ...
0
votes
1answer
152 views
JDBC MySQL conect to fail over node very slow
My environment have 2 MySQL server (INS1 and INS2) and when I tested failover mode with down INS1 and driver creat connection to INS2 it has very very slow to connected (It has occur on Glassfish ...
2
votes
1answer
116 views
Failover an in-memory Java object
I am looking to get some ideas on how I can solve my failover problem in my Java service.
At a high level, my service receives 3 separate object streams of data from another service, performs some ...
2
votes
1answer
199 views
How can I achive application failover?
We have one application(server) running on multiple machines, and each server serves different client. We have a requirement to make the application to be able to failover. That's when one of the ...
1
vote
1answer
433 views
Java fail-over framework/library
Is there any framework/library that takes care of active/passive failover? Ideally it should be fast, lightweight and embeddable. I've found a few but they don't quite fit the criteria...
...
0
votes
0answers
93 views
JBoss clustered JMS queue silently fails
I have 2 Jboss's running in a cluster. I am using MDBs to forward incoming objects (SMS messages) to other MDBs that persist the data (via queues). Sometimes this process silently fails on one of the ...
0
votes
2answers
905 views
How to make J2EE weblogic application resilient to database problems
I have a Web application running on Oracle Weblogic Server 11g.
It uses a datasource defined in the application server to connect to the Oracle Database (11g too), its class is
...
0
votes
0answers
201 views
is there a way to fail over to another database using c3p0?
I did see a few examples but all relied on custom connection strings, recognized by the underlying Db driver and in all cases, the driver required the databases to be in some custom configuration ...
4
votes
3answers
130 views
Is it possible to have replicated JVMs so that i can simply flip over from primary jvm to secondry in case primary jvm goes down
Is it possible to replicated a complete JVM and in case of failover simply flip the load to the replicated JVM?
If yes then how can we do it?
0
votes
1answer
1k views
using activemq failover URI for reconnecting, while timeout on first connection
I am currently using activemq failover uir for client reconnecting to the broker, and I also don't
want "send" operation to be blocked when it disconnect, so I am using URI ...
0
votes
1answer
924 views
java connection string to support oracle TAF feature
We are currently using Spring JDBC with connection pool implementation from DBCP to connect to TAF supportred ORACLE 11g2 server.
connection string used is
jdbc:oracle:thin:@(DESCRIPTION ...
1
vote
1answer
177 views
How to replicate a Java web app onto a 2nd computer for “high availability” and failure tolerance, or “failover”?
I want to be able to upgrade my hardware at any time without interruption in my web app i.e. switch off one of the computers at any time, swap/upgrade it, plug it back in, and set it up so it gets ...
1
vote
1answer
620 views
Best way to implement Failover Pattern for Java Clients
We are designing a Java client (will be deployed on Tomcat, Windows 2008 R2) which needs to subscriber for some JMS topics on Sonic MQ.
Client wants to have to redundancy for this Java client and at ...
2
votes
1answer
307 views
Mysql-Proxy Doesn't Failover (?)
This is the first time I am using mysql-proxy and I am experiencing the weird behavior I was wondering if the community has tackled it before.
I have mysql-proxy (0.8.2) running on amazon linux (in ...
0
votes
1answer
2k views
How should I write JDBC url for Oracle with LDAP and two LDAP servers?
I have an Oracle database with LDAP, and can connect by writing smth like:
jdbc:oracle:thin:@ldap://oid0.wow.com:666/chost,cn=OracleContext,dc=wow,dc=com
But this is not failover (we have another ...
0
votes
2answers
759 views
JDBC statement fails to delete row in specific MySql table
I have a table, say example1 and I'm using a jdbc statement to delete one of its rows. I have tried various methods, from delete from example1 where id = 1 to statement.addbatch(sql) but it does not ...
3
votes
1answer
572 views
Java outgoing TCP connection failover based on multiple DNS results
If I make a connection using new Socket("unit.domain.com", 100) and the unit.domain.com DNS record has multiple IP addresses in the A record.. In the event of a failed connection, Does Java ...
2
votes
2answers
180 views
Block outgoing connections to an IP for fail testing?
We are using Coldfusion 9 on Windows Server 2003. We are testing a "failover" on some code that interacts with LDAP through CFLDAP and LDAPS through Java (for password changes).
Essentially we ...
2
votes
0answers
445 views
RabbitMQ loadbalancing and failover with ipvsadm LVS
We have a plateform that uses 2 rabbitmq nodes loadbalanced by a linux LVS (ipvsadm) in front. We have ipvsadm configured with persistent connections and clients with heartbeat. So far so good.
After ...
1
vote
1answer
109 views
JBoss Clustered Service that sends emails from txt file
I need a little push in the right direction. Here's my problem: I have to create an ultra-reliable service that sends email messages to clients whose addresses are stored in txt file on FTP server. ...
2
votes
1answer
2k views
Oracle Thin Driver and Transparent Failover of RAC DB
I know the oci driver can perform transparent failover of the database, but does the thin driver have the same capability?
2
votes
3answers
1k views
How to set a queue producer timeout?
I am testing WebLogic 10.3.1 JMS, but there has a problem.
My Testing step:
Start WebLogic Server
Start JMS Client
Client send a object to WebLogic JMS and server received the object.
Stop WebLogic ...
2
votes
2answers
318 views
OpenID in a load-balanced situation
I'm looking at implementing an OpenID provider ('OP') using Java + Tomcat/JBoss.
Now one of the key things about OpenID is that
The user communicates with both the OP and the RP and has a session ...
9
votes
3answers
931 views
How does Terracotta work in this situation?
So lets say I have an N sized server array set up like so:
I have a simple JavaBean/POJO:
package example;
public class Person {
private OtherObject obj;
public void setObj(OtherObject ...