bug# 1201494 Change-Id: Ie2bd28a1cb7e9f3408e44e2164d72de2c857fc6a
3.5 KiB
Architecture
double: architecture; brief
High Level Topology
Designate API
designate-api provides the standard OpenStack style REST api service,
accepting http requests, validating authentication tokens with Keystone
& passing them to the designate-central
service over AMQP. Multiple versions
of the api can be hosted, as well as api-extensions, allowing for
pluggable extensions to the core api.
Although designate-api is capable of handling https traffic, it's typical to terminate https elsewhere, e.g. by placing nginx infront of designate-api or by letting the the external facing load balancers terminate https.
Designate Central
designate-central is the service that handles RPC requests via the MQ, it coordinates the persistant storage of data & manipulating backend DNS servers via backends or agents. storage is provided via plugins, typically SQLAlchemy, although MongoDB or other storage drivers should be possible.
Designate Sink
designate-sink is an optional service which listens for event notifications, such as compute.instance.create.end, handlers are available for Nova and Neutron. Notification events can then be used to trigger record creation & deletion.
The current sink implementations generate simple forward lookup A
records, using a format specified in handler-nova
configuration. Any field in the event
notification can be used to generate a record.
DNS Backend
backends are drivers for a particular DNS server. Designate supports multiple backend implementations, PowerDNS, BIND, MySQL BIND and dnsmasq, you are also free to implement your own backend to fit your needs, as well as extensions to provide extra functionality to complement existing backends.
Designate Agent
designate-agents are optional components that interact with DNS
servers. Agents are alternatives to backend plugins in designate-central
. Agents
communicate with designate-central
via the message-queue
.
Message Queue
Designate uses oslo.rpc for messaging between components, therefore it inherits a requirement for a supported messaging bus (RabbitMQ, Qpid, ZeroMQ etc). Typically this means a RabbitMQ setup is dedicated to Designate, but as only a single virtualhost is required for a normal installation, you’re free to use other RabbitMQ instances as you see fit.
Database/Storage
storage drivers are drivers for a particular SQL/NoSQL server, designate needs a SQLAlchemy supported storage engine for the persistent storage of data, the recommended driver is MySQL.