All Projects → apache → Activemq Artemis

apache / Activemq Artemis

Licence: apache-2.0
Mirror of Apache ActiveMQ Artemis

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Activemq Artemis

Enmasse
EnMasse - Self-service messaging on Kubernetes and OpenShift
Stars: ✭ 185 (-72.99%)
Mutual labels:  mqtt, messaging, amqp, broker
Rabbitmq Server
Open source RabbitMQ: core server and tier 1 (built-in) plugins
Stars: ✭ 9,064 (+1223.21%)
Mutual labels:  mqtt, messaging, amqp, stomp
qpid-proton-j
Mirror of Apache Qpid Proton-J
Stars: ✭ 28 (-95.91%)
Mutual labels:  amqp, messaging, apache
Crossbar
Crossbar.io - WAMP application router
Stars: ✭ 1,957 (+185.69%)
Mutual labels:  mqtt, messaging, broker
qpid-jms
Mirror of Apache Qpid JMS
Stars: ✭ 60 (-91.24%)
Mutual labels:  amqp, messaging, apache
qpid-dispatch
Mirror of Apache Qpid Dispatch
Stars: ✭ 62 (-90.95%)
Mutual labels:  amqp, messaging, apache
Emqx
An Open-Source, Cloud-Native, Distributed MQTT Message Broker for IoT.
Stars: ✭ 8,951 (+1206.72%)
Mutual labels:  mqtt, messaging, broker
Spec
The AsyncAPI specification allows you to create machine-readable definitions of your asynchronous APIs.
Stars: ✭ 1,860 (+171.53%)
Mutual labels:  mqtt, amqp, stomp
qpid-cpp
Mirror of Apache Qpid C++
Stars: ✭ 77 (-88.76%)
Mutual labels:  amqp, messaging, apache
qpid-broker-j
Mirror of Apache Qpid Broker-J
Stars: ✭ 52 (-92.41%)
Mutual labels:  amqp, messaging, apache
qpid-python
Mirror of Apache Qpid Python
Stars: ✭ 15 (-97.81%)
Mutual labels:  amqp, messaging, apache
Azure Event Hubs
☁️ Cloud-scale telemetry ingestion from any stream of data with Azure Event Hubs
Stars: ✭ 233 (-65.99%)
Mutual labels:  messaging, amqp, apache
Qpid Proton
Mirror of Apache Qpid Proton
Stars: ✭ 164 (-76.06%)
Mutual labels:  messaging, amqp, apache
Ejabberd
Robust, Ubiquitous and Massively Scalable Messaging Platform (XMPP, MQTT, SIP Server)
Stars: ✭ 5,077 (+641.17%)
Mutual labels:  mqtt, messaging, broker
Laravel Queue
Laravel Enqueue message queue extension. Supports AMQP, Amazon SQS, Kafka, Google PubSub, Redis, STOMP, Gearman, Beanstalk and others
Stars: ✭ 155 (-77.37%)
Mutual labels:  messaging, amqp, stomp
Vernemq
A distributed MQTT message broker based on Erlang/OTP. Built for high quality & Industrial use cases.
Stars: ✭ 2,628 (+283.65%)
Mutual labels:  mqtt, messaging, broker
rx-stomp
STOMP adaptor for RxJS
Stars: ✭ 76 (-88.91%)
Mutual labels:  messaging, activemq, stomp
Hivemq Community Edition
HiveMQ CE is a Java-based open source MQTT broker that fully supports MQTT 3.x and MQTT 5. It is the foundation of the HiveMQ Enterprise Connectivity and Messaging Platform
Stars: ✭ 562 (-17.96%)
Mutual labels:  mqtt, messaging, broker
Weevent
Event-Driven Architecture Based on Blockchain.基于区块链的事件驱动架构
Stars: ✭ 608 (-11.24%)
Mutual labels:  mqtt, stomp
aedes-cli
Run Aedes MQTT Broker from the CLI
Stars: ✭ 29 (-95.77%)
Mutual labels:  mqtt, broker

ActiveMQ Artemis

This file describes some minimum 'stuff one needs to know' to get started coding in this project.

Source

For details about the modifying the code, building the project, running tests, IDE integration, etc. see our Hacking Guide.

Build Status

Build Status: Build Status

Building the ASYNC IO library

ActiveMQ Artemis provides two journal persistence types, NIO (which uses the Java NIO libraries), and ASYNCIO which interacts with the linux kernel libaio library. The ASYNCIO journal type should be used where possible as it is far superior in terms of performance.

ActiveMQ Artemis does not ship with the Artemis Native ASYNCIO library in the source distribution. These need to be built prior to running "mvn install", to ensure that the ASYNCIO journal type is available in the resulting build. Don't worry if you don't want to use ASYNCIO or your system does not support libaio, ActiveMQ Artemis will check at runtime to see if the required libraries and system dependencies are available, if not it will default to using NIO.

To build the ActiveMQ Artemis ASYNCIO native libraries, please follow the instructions in the artemis-native/README.

Documentation

Our documentation is always in sync with our releases at the Apache ActiveMQ Artemis website.

Or you can also look at the current master version on github.

Examples

To run an example firstly make sure you have run

$ mvn -Prelease install

If the project version has already been released then this is unnecessary.

Each individual example can be run using this command from its corresponding directory:

$ mvn verify

If you wish to run groups of examples then use this command from a parent directory (e.g. examples/features/standard):

$ mvn -Pexamples verify

Recreating the examples

If you are trying to copy the examples somewhere else and modifying them. Consider asking Maven to explicitly list all the dependencies:

# if trying to modify the 'topic' example:
cd examples/jms/topic && mvn dependency:list

Open Web Application Security Project (OWASP) Report

If you wish to generate the report for CCV dependencies, you may run it with the -Powasp profile

$ mvn -Powasp verify

The output will be under ./target/dependency-check-report.html for each sub-module.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].