Jump to: navigation, search

Difference between revisions of "Zaqar"

m (Etherpads)
(Status)
 
(136 intermediate revisions by 10 users not shown)
Line 1: Line 1:
 +
== Projects ==
  
== OpenStack Queuing and Notification Service ==
+
=== Zaqar ===
  
As OpenStack matures, it needs to support bigger, more complex web applications. Such applications require a robust, web-scale message queuing service to support the distributed nature of large web applications. Marconi is a new [[OpenStack]] project designed to fill this need. Our aim is to create an open alternative to SQS (producer-consumer) and SNS (pub-sub), for use in applications that run on OpenStack clouds. A message queueing service is vital component of big, complex web applications
+
{| border="1" cellpadding="2"
 +
| Official name
 +
| '''OpenStack Messaging'''
 +
|-
 +
| Source code
 +
| https://github.com/openstack/zaqar
 +
|-
 +
| Bug tracker
 +
| https://bugs.launchpad.net/zaqar
 +
|-
 +
| Feature tracker
 +
| https://blueprints.launchpad.net/zaqar
 +
|-
 +
| Contributor documentation
 +
| http://docs.openstack.org/developer/zaqar/
 +
|}
  
The project will define a clean, RESTful API, use a modular architecture, and will support unified pub-sub and job-queuing semantics. Users will be able to customize Marconi to achieve a wide range of performance, durability, availability, and efficiency goals.
+
=== Python Zaqar Client ===
 +
{| border="1" cellpadding="2"
 +
| Source code
 +
| https://github.com/openstack/python-zaqarclient
 +
|-
 +
| Bug tracker
 +
| https://bugs.launchpad.net/python-zaqarclient
 +
|-
 +
| Feature tracker
 +
| https://blueprints.launchpad.net/python-zaqarclient
 +
|}
 +
 
 +
== Overview ==
 +
 
 +
Zaqar is a multi-tenant cloud messaging service for web and mobile developers. It combines the ideas pioneered by Amazon's SQS product with additional semantics to support event broadcasting.
 +
 
 +
The service features a fully RESTful API, which developers can use to send messages between various components of their SaaS and mobile applications, by using a variety of communication patterns. Underlying this API is an efficient messaging engine designed with scalability and security in mind.  
  
Kurt Griffiths ([[User:Kgriffs|kgriffs]]) and Flavio Percoco ([[User:Flaper87|flaper87]]) are the acting technical leads on the project and are responsible for preparing it for incubation.
+
Other OpenStack components can integrate with Zaqar to surface events to end users and to communicate with guest agents that run in the "over-cloud" layer. Cloud operators can leverage Zaqar to provide equivalents of SQS and SNS to their customers.
  
== Design ==
+
==== Key features ====
  
Marconi aims to be pragmatic, building upon the real-world experiences of teams who have solid track records running and supporting web-scale message queueing systems. The project's overarching design philosophy is derived from Donald A. Norman:
+
Zaqar provides the following key features:
  
<blockquote>The value of a well-designed object is when it has such a rich set of affordances that the people who use it can do things with it that the designer never imagined.</blockquote>
+
* Choice between two communication transports. Both with Keystone support:
 +
** Firewall-friendly, HTTP-based RESTful API
 +
*** Many of today's developers prefer a more web-friendly HTTP API. They value the simplicity and transparency of the protocol, its firewall-friendly nature, and its huge ecosystem of tools, load balancers and proxies. In addition, cloud operators appreciate the scalability aspects of the REST architectural style.
 +
** Websocket-based API for persistent connections.
 +
*** Websocket protocol provides communication over persistent connections. Unlike HTTP, where new connections are opened for each request/response pair, Websocket can transfer multiple requests/responses over single TCP connection. It saves much network traffic and minimizes delays.
 +
* Multi-tenant queues based on Keystone project IDs
 +
* Support for several common patterns including event broadcasting, task distribution, and point-to-point messaging (See [[Zaqar/Use_Cases|Zaqar Use Cases]])
 +
* Component-based architecture with support for custom backends and message filters
 +
* Efficient reference implementation with an eye toward low latency and high throughput (dependent on backend)
 +
* Highly-available and horizontally scalable (See [[Server Architecture (Marconi)|Server Architecture]])
 +
* Support for subscriptions to queues. Several notification types are available:
 +
** Email notifications
 +
** Webhook notifications
 +
** Websocket notifications
  
Goals related to the above:
+
==== Project scope ====
  
# Emergent functionality, utility
+
The Zaqar API is data-oriented. That is, it does not provision message brokers and expose those directly to clients. Instead, the API acts as a bridge between the client and one or more backends. A provisioning service for message brokers—however useful—serves a somewhat different market from what Zaqar is targeting today. With that in mind, if users are interested in a broker provisioning service, the community should consider starting a new project to address that need.
# Modular, pluggable code base
 
# REST architectural style
 
  
Principles to live by:
+
==== Design principles ====
  
# DRY
+
Zaqar, as with all OpenStack projects, is designed with the following guidelines in mind:
# YAGNI
 
# KISS
 
  
== Use Cases ==
+
* '''Component-based architecture.''' Quickly add new behaviors
 +
* '''Highly available and scalable.''' Scale to very serious workloads
 +
* '''Fault tolerant.''' Isolated processes avoid cascading failures
 +
* '''Recoverable.''' Failures should be easy to diagnose, debug, and rectify
 +
* '''Open standards.''' Be a reference implementation for a community-driven
  
# Distribute tasks among multiple workers (transactional job queues)
+
==== Status ====
# Forward events to data collectors  (transactional event queues)
 
# Publish events to any number of subscribers (pub-sub)
 
# Send commands to one or more agents (point-to-point or pub-sub)
 
# Request an action or get information from an agent (RPC)
 
  
== Out of Scope ==
+
Zaqar is production-ready for small and medium-sized workloads. The project is in production at Rackspace and other companies are in the process of deploying it in their own clouds. Support for the v2 APIs is available for Python in [https://github.com/openstack/python-zaqarclient python-zaqarclient], and for other languages through [http://developer.rackspace.com/#home-sdks Rackspace-supported SDKs].
  
Marconi may be used as the foundation for other services to support the following use cases, but will not support them directly within its code base.
+
== Documentation ==
  
# Forwarding notifications to email, SMS, Twitter, etc.
+
Currently (during Mitaka release cycle) Zaqar team is reworking Zaqar documentation.
# Forwarding notifications to web hooks
 
# Forwarding notifications to APNS, GCM, etc.
 
# Scheduling-as-a-service
 
# Metering usage
 
  
== Etherpads ==
+
==== Zaqar Configuration Reference ====
  
* [https://etherpad.openstack.org/marconi-client Marconi Client Brainstorm #1]
+
[http://docs.openstack.org/newton/config-reference/message.html Message service Configuration Reference]
* [https://etherpad.openstack.org/apiclient-marconi Common Code Improvements]
+
 
* [https://etherpad.openstack.org/marconi-client-zmq ZMQ Brainstorm #1]
+
==== Zaqar Contributor Guide ====
* [https://etherpad.openstack.org/marconi-fifo FIFO Etc.]
+
 
 +
[http://docs.openstack.org/developer/zaqar/ Zaqar Contributor Guide]
 +
 
 +
==== Zaqar RESTful API Specs ====
 +
 
 +
* [[Zaqar/specs/api/v1|API v1.0]] ('''Released in 2014.1''', '''Deprecated''')
 +
* [[Zaqar/specs/api/v1.1|API v1.1]] ('''Released in 2014.2''', '''Deprecated''')
 +
* [http://developer.openstack.org/api-ref/messaging/ API v2.0] ('''Current API Version''')
 +
 
 +
==== Other documentation ====
 +
 
 +
"Getting Started Guide",  "Zaqar RESTful API v1.0 Guide and Reference" are currently not hosted anywhere, but you can generate these documents from Zaqar source code repository. Here's how to do it:
 +
# Ensure you have '''maven''' and '''git''' programs installed on your system.
 +
# Clone Zaqar repository in the preferred directory on your machine by executing '''git clone <nowiki>https://github.com/openstack/zaqar.git</nowiki>'''
 +
# Inside cloned repository in ''doc/user-guide'' directory execute '''mvn clean generate-sources''' to generate documentation html files from sources.
 +
# You can view documentation by opening generated html files in your browser:
 +
## Getting Started Guide: ''doc/user-guide/zaqar-get-started/target/docbkx/webhelp/zaqar-get-started/index.html''
 +
## Zaqar Configuration Reference: ''doc/user-guide/zaqar-config-ref/target/docbkx/webhelp/zaqar-config-ref/index.html''
 +
## Zaqar API v1.0 Guide and Reference: ''doc/user-guide/zaqar-api-ref/target/docbkx/webhelp/zaqar-api-ref/index.html''
  
 
== Resources ==
 
== Resources ==
  
{| border="1" cellpadding="2" cellspacing="0"
+
The Zaqar team hangs out in '''#openstack-zaqar''' on Freenode. Feel free to stop in anytime to chat with us; the crew is always happy to hear your ideas and answer questions. If you run into a bug, please report it using our [https://bugs.launchpad.net/zaqar issue tracker].
|  Meetings
+
 
| [[Meetings/Marconi]]  
+
==== FAQ ====
|-
+
 
|  IRC
+
* [[Zaqar/Frequently asked questions|Frequently asked questions]]
| #openstack-marconi on Freenode
+
 
|-
+
==== Releases ====
|  Trello
+
 
| https://trello.com/b/7NLODgbr
+
<!-- TODO(kgriffs): Add release notes -->
|-
+
* 2014.1 ([http://tarballs.openstack.org/marconi/marconi-2014.1.tar.gz download] | [[Marconi/releases/icehouse|notes]])
|  Havana Spec 
+
 
| [[Marconi/specs/havana]]
+
==== Talks ====
|-
+
 
|  API Blueprint 
+
* Alejandro Cabrera. Rackspace Atlanta. Introducing Openstack Marconi. July 17, 2013. [http://www.youtube.com/watch?v=b-IWDG7kKGQ Youtube] [https://speakerdeck.com/cabrera/introducing-openstack-marconi Speaker Deck]
| [[Marconi/specs/api/v1]]  
+
* Flavio Percoco. EuroPython 2013. Marconi: Queuing and Notification Service for Openstack. July 2, 2013. [http://www.youtube.com/watch?v=iNOd7-_TdDo YouTube]
[[Marconi/specs/zmq/api/v1]]
+
* Kurt Griffiths, Allan Metts. Openstack Summit April 2013. Project Overview: OpenStack Queuing and Notification Service ("Marconi"). April 2013. [http://www.youtube.com/watch?feature=player_embedded&v=henTTZWtt2k YouTube]
|-
+
* Kurt Griffiths, Flavio Percoco, Allan Metts. Openstack Summit November 2013. Openstack Queuing and Notification Service. November 2013. [http://www.youtube.com/watch?v=IgE3Jskqtek YouTube]
|  Other Blueprints   
+
* Yeela Kaplan. EuroPython 2014. OpenStack Queuing and Notification Service ("Marconi"). July 22, 2014. [https://www.youtube.com/watch?v=d65TtqGp-9Q YouTube]
| https://blueprints.launchpad.net/marconi
+
 
|-
+
==== Articles ====
| Milestones 
+
 
| https://launchpad.net/marconi/+milestones
+
* Oz Akan. Rackspace Devops Blog. July 25, 2013. [http://developer.rackspace.com/blog/openstack-marconi-api.html Openstack Zaqar API v1.0].
|-
+
* Flavio Percoco. Developer's Black Hole. March 2014. [http://blog.flaper87.com/post/531cd585d987d24e83f082a5 People don't like to queue up].
|  Developer Docs 
+
 
| [[Python_Marconi_Client|Python Client Bindings]]
+
== Community ==
|-
+
 
|  Incubation 
+
* [https://webchat.freenode.net/?channels=openstack-zaqar #openstack-zaqar] (IRC)
| [[Marconi/Incubation]]  
+
* [[Zaqar/Feedback|Feedback]]
|-
+
* [https://ask.openstack.org/en/questions/ Ask OpenStack (Community Q&A)]
| Source code 
+
 
| https://github.com/stackforge/marconi
+
== Information for Contributors ==
|-
+
 
| Client source code
+
[http://docs.openstack.org/developer/zaqar/ Zaqar Contributor Guide]
| https://github.com/stackforge/python-marconiclient
+
 
|-
+
''Note: If you can't find the information you are looking for, please drop us a line in IRC (#openstack-zaqar) and we'll be happy to help.''
| Code Reviews
+
 
| https://review.openstack.org/#/q/status:open+project:stackforge/marconi,n,z
+
==== Design ====
|-
+
 
| Bug tracker 
+
* [[Zaqar/Use_Cases|Zaqar Use Cases]]
| https://bugs.launchpad.net/marconi
+
* [[Server Architecture (Marconi)|Server Architecture]]
|}
+
* Reference Clients
 +
** [[Python Client Library (Marconi)|Python Library & CLI]]
 +
** [https://github.com/abettadapur/marconiclient C# Library]
 +
* Summit Notes
 +
** [[Juno/Notes/Marconi|Juno Easel Pad]]
 +
 
 +
==== Quality Engineering ====
 +
 
 +
* [[Application Security (Marconi)|Application Security]]
 +
* [[Performance Testing (Marconi)|Performance Testing]]
 +
* [[Functional Testing (Marconi)|Functional Testing]]
 +
* [[Integration Testing (Marconi)|Integration Testing]]
 +
<!-- TODO(kgriffs): What about user experience design/testing? -->
 +
 
 +
==== Community ====
 +
 
 +
* [https://webchat.freenode.net/?channels=openstack-zaqar #openstack-zaqar] (IRC)
 +
* [[Meetings/Zaqar|Meetings]]
 +
* [[Zaqar/Feedback|Feedback]]
 +
* [https://ask.openstack.org/en/questions/ Ask OpenStack (Community Q&A)]
 +
 
 +
==== Administrivia ====
  
----
+
* [[Roadmap (Marconi)|Roadmap (Juno)]]
[[Category:Homepage]]
+
* [https://etherpad.openstack.org/p/naav-graduation Incubation Status]
 +
* [[How to Release (Marconi)|How to Release]]
 +
* [[Security/Juno/Marconi|OSSG Q&A for Zaqar (Juno)]]

Latest revision as of 02:17, 7 November 2016

Projects

Zaqar

Official name OpenStack Messaging
Source code https://github.com/openstack/zaqar
Bug tracker https://bugs.launchpad.net/zaqar
Feature tracker https://blueprints.launchpad.net/zaqar
Contributor documentation http://docs.openstack.org/developer/zaqar/

Python Zaqar Client

Source code https://github.com/openstack/python-zaqarclient
Bug tracker https://bugs.launchpad.net/python-zaqarclient
Feature tracker https://blueprints.launchpad.net/python-zaqarclient

Overview

Zaqar is a multi-tenant cloud messaging service for web and mobile developers. It combines the ideas pioneered by Amazon's SQS product with additional semantics to support event broadcasting.

The service features a fully RESTful API, which developers can use to send messages between various components of their SaaS and mobile applications, by using a variety of communication patterns. Underlying this API is an efficient messaging engine designed with scalability and security in mind.

Other OpenStack components can integrate with Zaqar to surface events to end users and to communicate with guest agents that run in the "over-cloud" layer. Cloud operators can leverage Zaqar to provide equivalents of SQS and SNS to their customers.

Key features

Zaqar provides the following key features:

  • Choice between two communication transports. Both with Keystone support:
    • Firewall-friendly, HTTP-based RESTful API
      • Many of today's developers prefer a more web-friendly HTTP API. They value the simplicity and transparency of the protocol, its firewall-friendly nature, and its huge ecosystem of tools, load balancers and proxies. In addition, cloud operators appreciate the scalability aspects of the REST architectural style.
    • Websocket-based API for persistent connections.
      • Websocket protocol provides communication over persistent connections. Unlike HTTP, where new connections are opened for each request/response pair, Websocket can transfer multiple requests/responses over single TCP connection. It saves much network traffic and minimizes delays.
  • Multi-tenant queues based on Keystone project IDs
  • Support for several common patterns including event broadcasting, task distribution, and point-to-point messaging (See Zaqar Use Cases)
  • Component-based architecture with support for custom backends and message filters
  • Efficient reference implementation with an eye toward low latency and high throughput (dependent on backend)
  • Highly-available and horizontally scalable (See Server Architecture)
  • Support for subscriptions to queues. Several notification types are available:
    • Email notifications
    • Webhook notifications
    • Websocket notifications

Project scope

The Zaqar API is data-oriented. That is, it does not provision message brokers and expose those directly to clients. Instead, the API acts as a bridge between the client and one or more backends. A provisioning service for message brokers—however useful—serves a somewhat different market from what Zaqar is targeting today. With that in mind, if users are interested in a broker provisioning service, the community should consider starting a new project to address that need.

Design principles

Zaqar, as with all OpenStack projects, is designed with the following guidelines in mind:

  • Component-based architecture. Quickly add new behaviors
  • Highly available and scalable. Scale to very serious workloads
  • Fault tolerant. Isolated processes avoid cascading failures
  • Recoverable. Failures should be easy to diagnose, debug, and rectify
  • Open standards. Be a reference implementation for a community-driven

Status

Zaqar is production-ready for small and medium-sized workloads. The project is in production at Rackspace and other companies are in the process of deploying it in their own clouds. Support for the v2 APIs is available for Python in python-zaqarclient, and for other languages through Rackspace-supported SDKs.

Documentation

Currently (during Mitaka release cycle) Zaqar team is reworking Zaqar documentation.

Zaqar Configuration Reference

Message service Configuration Reference

Zaqar Contributor Guide

Zaqar Contributor Guide

Zaqar RESTful API Specs

Other documentation

"Getting Started Guide", "Zaqar RESTful API v1.0 Guide and Reference" are currently not hosted anywhere, but you can generate these documents from Zaqar source code repository. Here's how to do it:

  1. Ensure you have maven and git programs installed on your system.
  2. Clone Zaqar repository in the preferred directory on your machine by executing git clone https://github.com/openstack/zaqar.git
  3. Inside cloned repository in doc/user-guide directory execute mvn clean generate-sources to generate documentation html files from sources.
  4. You can view documentation by opening generated html files in your browser:
    1. Getting Started Guide: doc/user-guide/zaqar-get-started/target/docbkx/webhelp/zaqar-get-started/index.html
    2. Zaqar Configuration Reference: doc/user-guide/zaqar-config-ref/target/docbkx/webhelp/zaqar-config-ref/index.html
    3. Zaqar API v1.0 Guide and Reference: doc/user-guide/zaqar-api-ref/target/docbkx/webhelp/zaqar-api-ref/index.html

Resources

The Zaqar team hangs out in #openstack-zaqar on Freenode. Feel free to stop in anytime to chat with us; the crew is always happy to hear your ideas and answer questions. If you run into a bug, please report it using our issue tracker.

FAQ

Releases

Talks

  • Alejandro Cabrera. Rackspace Atlanta. Introducing Openstack Marconi. July 17, 2013. Youtube Speaker Deck
  • Flavio Percoco. EuroPython 2013. Marconi: Queuing and Notification Service for Openstack. July 2, 2013. YouTube
  • Kurt Griffiths, Allan Metts. Openstack Summit April 2013. Project Overview: OpenStack Queuing and Notification Service ("Marconi"). April 2013. YouTube
  • Kurt Griffiths, Flavio Percoco, Allan Metts. Openstack Summit November 2013. Openstack Queuing and Notification Service. November 2013. YouTube
  • Yeela Kaplan. EuroPython 2014. OpenStack Queuing and Notification Service ("Marconi"). July 22, 2014. YouTube

Articles

Community

Information for Contributors

Zaqar Contributor Guide

Note: If you can't find the information you are looking for, please drop us a line in IRC (#openstack-zaqar) and we'll be happy to help.

Design

Quality Engineering

Community

Administrivia