ActiveMQ KahaDB всегда запирает и ждет
Я пытаюсь использовать ActiveMQ в относительно простом случае использования рабочей очереди. У меня одна очередь, и есть простой производитель и потребитель. Мой вопрос в том, что я делаю неправильно, что постоянно делает блокировку DB? вот сообщение, которое я получаю непрерывно:
14/04/05 18:14:13 INFO store.SharedFileLocker: Database activemq-datalocalhostKahaDBlock is locked... waiting 10 seconds for the database to be unlocked. Reason: java.io.IOException: File 'activemq-datalocalhostKahaDBlock' could not be locked.
Я одновременно запускаю производителя и потребителя в отдельных потоках. Первоначально у меня было соединение на уровне класса, поэтому я думал, что это проблема, но даже создание соединения с нуля каждый вызов put и get still вызывает блокировку.
Я провел исследование, но не смог найти решение. Я запускаю ActiveMQ 5.9.0 в windows 7.
вот что печатает, когда я запускаю его через подсказку cmd:
C:activemqapache-activemq-5.9.0bin>activemq
Java Runtime: Oracle Corporation 1.7.0_40 C:Program FilesJavajre7
Heap sizes: current=1005568k free=995061k max=1005568k
JVM args: -Dcom.sun.management.jmxremote -Xms1G -Xmx1G -Djava.util.logging.config.file=logging.properties -Dhawtio.realm=activemq -Dhawtio.role=admins -Dhawtio.rolePrincipalCla
vemq.jaas.GroupPrincipal -Djava.security.auth.login.config=C:activemqapache-activemq-5.9.0bin..conflogin.config -Dactivemq.classpath=C:activemqapache-activemq-5.9.0bin..
che-activemq-5.9.0bin../conf;C:activemqapache-activemq-5.9.0bin../conf; -Dactivemq.home=C:activemqapache-activemq-5.9.0bin.. -Dactivemq.base=C:activemqapache-activemq-5
mq.conf=C:activemqapache-activemq-5.9.0bin..conf -Dactivemq.data=C:activemqapache-activemq-5.9.0bin..data -Djava.io.tmpdir=C:activemqapache-activemq-5.9.0bin..datat
Extensions classpath:
[C:activemqapache-activemq-5.9.0bin..lib,C:activemqapache-activemq-5.9.0bin..libcamel,C:activemqapache-activemq-5.9.0bin..liboptional,C:activemqapache-activemq
b,C:activemqapache-activemq-5.9.0bin..libextra]
ACTIVEMQ_HOME: C:activemqapache-activemq-5.9.0bin..
ACTIVEMQ_BASE: C:activemqapache-activemq-5.9.0bin..
ACTIVEMQ_CONF: C:activemqapache-activemq-5.9.0bin..conf
ACTIVEMQ_DATA: C:activemqapache-activemq-5.9.0bin..data
Loading message broker from: xbean:activemq.xml
INFO | Refreshing org.apache.activemq.xbean.XBeanBrokerFactory@5bf2a8f5: startup date [Sat Apr 05 17:42:42 EDT 2014]; root of context hierarchy
INFO | PListStore:[C:activemqapache-activemq-5.9.0bin..datalocalhosttmp_storage] started
INFO | Using Persistence Adapter: KahaDBPersistenceAdapter[C:activemqapache-activemq-5.9.0bin..datakahadb]
INFO | KahaDB is version 5
INFO | Recovering from the journal ...
INFO | Recovery replayed 6935 operations from the journal in 0.416 seconds.
INFO | Apache ActiveMQ 5.9.0 (localhost, ID:Owner-PC-49614-1396734165637-0:1) is starting
INFO | Listening for connections at: tcp://Owner-PC:61616?maximumConnections=1000&wireFormat.maxFrameSize=104857600
INFO | Connector openwire started
INFO | Listening for connections at: amqp://Owner-PC:5673?maximumConnections=1000&wireFormat.maxFrameSize=104857600
INFO | Connector amqp started
INFO | Listening for connections at: stomp://Owner-PC:61613?maximumConnections=1000&wireFormat.maxFrameSize=104857600
INFO | Connector stomp started
INFO | Listening for connections at: mqtt://Owner-PC:1883?maximumConnections=1000&wireFormat.maxFrameSize=104857600
INFO | Connector mqtt started
INFO | Listening for connections at ws://Owner-PC:61614?maximumConnections=1000&wireFormat.maxFrameSize=104857600
INFO | Connector ws started
INFO | Apache ActiveMQ 5.9.0 (localhost, ID:Owner-PC-49614-1396734165637-0:1) started
INFO | For help or more information please see: http://activemq.apache.org
INFO | Welcome to hawtio 1.2-M23 : http://hawt.io/ : Don't cha wish your console was hawt like me? ;-)
INFO | Starting hawtio authentication filter, JAAS realm: "activemq" authorized role: "admins" role principal classes: "org.apache.activemq.jaas.GroupPrincipal"
INFO | Using file upload directory: C:activemqapache-activemq-5.9.0bin..datatmpuploads
INFO | jolokia-agent: Using access restrictor classpath:/jolokia-access.xml
INFO | ActiveMQ WebConsole available at http://localhost:8161/
INFO | Initializing Spring FrameworkServlet 'dispatcher'
вот моя java для реализации очереди как ActiveMQ (у меня есть интерфейс очереди, и это Impl)
import com.google.gson.Gson;
import java.util.Set;
import javax.jms.Connection;
import javax.jms.DeliveryMode;
import javax.jms.Destination;
import javax.jms.ExceptionListener;
import javax.jms.JMSException;
import javax.jms.MessageConsumer;
import javax.jms.MessageProducer;
import javax.jms.Session;
import javax.jms.TextMessage;
import org.apache.activemq.ActiveMQConnectionFactory;
public class ActiveMQImpl implements Queue, ExceptionListener {
private String host;
private String user;
private String pw;
public void init() {
}
public void close() {
}
public Message get() {
Message outMessage = null;
ActiveMQConnectionFactory connectionFactory = null;
Connection connection = null;
try {
if (connection == null) {
connectionFactory = new ActiveMQConnectionFactory("vm://localhost");
// Create a Connection
connection = connectionFactory.createConnection();
}
connection.start();
// Create a Session
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
// Create the destination (Topic or Queue)
Destination destination = session.createQueue("work");
// Create a MessageConsumer from the Session to the Topic or Queue
MessageConsumer consumer = session.createConsumer(destination);
// Wait for a message
javax.jms.Message message = consumer.receive(1000);
if (message instanceof TextMessage) {
TextMessage textMessage = (TextMessage) message;
String text = textMessage.getText();
outMessage = new Gson().fromJson(text, Message.class);
// System.out.println("Received: " + text);
} else {
// System.out.println("Received: " + message);
}
consumer.close();
// session.commit();
session.close();
//connection.close();
} catch (Exception e) {
System.out.println("Caught: " + e);
e.printStackTrace();
}
return outMessage;
}
public void put(Message inMessage) {
try {
ActiveMQConnectionFactory connectionFactory = null;
Connection prodConnection = null;
connectionFactory = new ActiveMQConnectionFactory("vm://localhost");
prodConnection = connectionFactory.createConnection();
prodConnection.start();
Session session = prodConnection.createSession(false, Session.AUTO_ACKNOWLEDGE);
Destination destination = session.createQueue("work");
MessageProducer producer = session.createProducer(destination);
producer.setDeliveryMode(DeliveryMode.PERSISTENT);
producer.setTimeToLive(60000);
// Create a messages
String text = inMessage.toString();
TextMessage message = session.createTextMessage(text);
// Tell the producer to send the message
System.out.println("Sent message: " + text);
producer.send(message);
producer.close();
// session.commit();
session.close();
prodConnection.close();
} catch (Exception e) {
System.out.println("Caught: " + e);
onException(null);
e.printStackTrace();
}
}
public void onException(JMSException jmse) {
//send this to the error channel object...
System.out.println(jmse);
}
public void put(Set<Message> messages) {
try {
ActiveMQConnectionFactory connectionFactory=null;
Connection connection=null;
Connection prodConnection=null;
if (connection == null) {
connectionFactory = new ActiveMQConnectionFactory("vm://localhost?jms.useAsyncSend=true");
// Create a Connection
connection = connectionFactory.createConnection("admin", "admin");
}
connection.start();
// Create a Session
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
// Create the destination (Topic or Queue)
Destination destination = session.createQueue("work");
// Create a MessageProducer from the Session to the Topic or Queue
MessageProducer producer = session.createProducer(destination);
producer.setDeliveryMode(DeliveryMode.PERSISTENT);
// Create a messages
for (Message inMessage : messages) {
String text = inMessage.toString();
TextMessage message = session.createTextMessage(text);
// Tell the producer to send the message
System.out.println("Sent message: " + text);
producer.send(message);
}
producer.close();
// session.commit();
session.close();
//connection.close();
} catch (Exception e) {
System.out.println("Caught: " + e);
onException(null);
e.printStackTrace();
}
}
}
вот производители и потребители (простые классы отладки)
public class Producer {
public static void main(String[] args) {
Queue q = QueueFactory.create(QueueType.ACTIVEMQ);
try {
for (int i = 0; i < 10; i++) {
q.put(new Message("testimpl" + i, "whatever", i));
Thread.sleep(1000);
}
} catch (InterruptedException ex) {
Logger.getLogger(Producer.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
public class Consumer {
public static void main(String[] args) {
Queue q = QueueFactory.create(QueueType.ACTIVEMQ);
try {
while (true) {
Message get = q.get();
System.out.println(get);
Thread.sleep(1000);
}
} catch (InterruptedException ex) {
Logger.getLogger(Consumer.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
любая помощь оцененный.
4 ответов
сделать следующее
убить процесс java для активного mq,open task manager -> go to process -> check for java -> and right click and say end process
затем перейдите к <activemq_install_directory>/data/kahadb
и удалить файл блокировки, который генерируется
попробуйте снова запустить activemq
для меня это работает каждый раз, когда я сталкиваются с этой проблемой
единственное решение, с которым я столкнулся, чтобы освободить этот замок-
- Goto услуги.msc
- остановить ActiveMQ навсегда (пусть Тип запуска будет автоматическим)
- вы увидите, что файл блокировки исчезает
- удалить сам datafolder
- перезапустить Apache-в частности, ActiveMQ-5.10.0-Бен\ "Апач",-в частности, ActiveMQ-5.10.0\бин\х64\в частности, ActiveMQ.bat (не услуги.msc)
- вы хорошо идти
была такая же проблема. не было никаких других java-сервисов / брокеров. проблема была довольно глупой -
убедитесь, что пользователь, которого вы используете, имеет разрешение на запись в путь к файлу блокировки.