SlideShare uma empresa Scribd logo
1 de 62
Baixar para ler offline
OPENSTACK COMPUTE 101
OpenStack Compute 101
Stephen Gordon (@xsgordon)
Sr. Technical Product Manager,
Red Hat
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Agenda
● Overview
● Instance Lifecycle
● Compute Drivers
● Scaling Compute
● Segregating Compute
● New in Kilo
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
OVERVIEW
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
What is OpenStack?
● A group of related projects that when combined form an
Open Source cloud infrastructure platform for providing
Infrastructure-as-a-Service.
● Intended to be “massively scalable”, scales horizontally
not vertically, on commodity hardware.
● Modular architecture allows consumers of the platform
to deploy only what they need.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
OpenStack Components
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
What is OpenStack Compute (Nova)?
● One of the two original OpenStack projects, along with
Object Storage (Swift).
● Exposes a rich API for defining compute instances and
managing their lifecycle.
● Pluggable support for multiple common hypervisor
platforms, relatively solution agnostic.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Compute Components
● RESTful nova-api
interface exposed on TCP
port 8774.
● AMQP message queue
used for RPC
communications.
● nova-scheduler handles
hypervisor selection for
instance placement.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Components (cont.)
● nova-compute acts as the
Compute agent, interacting
with the relevant
hypervisor APIs to
launch/manage guests.
● nova-conductor handles
database access (no-db-
compute)
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Other Components
● Metadata service - nova-metadata-api
● Traditional networking model - nova-network
● L2 agent - e.g.:
○ neutron-openvswitch-agent
○ neutron-linuxbridge-agent
● Ceilometer agent:
○ openstack-ceilometer-compute
● EC2 API: nova-ec2, nova-cert
● Console Auth and Proxies: noVNC, SPICE, etc.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
INSTANCE LIFECYCLE
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Authentication$ cat keystonerc_demo
export OS_USERNAME=demo
export OS_TENANT_NAME=demo
export OS_PASSWORD=c8500b92ed7f4ed0
export OS_AUTH_URL=http://93.184.216.34:5000/v2.0/
export PS1='[u@h W(keystone_demo)]$ '
$ source keystonerc_demo
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Instance Creation
● Instance creation achieved using nova boot command.
● Minimal set of arguments include selecting a flavor and
image:
$ nova boot --flavor <flavor> --image <image> 
[--nic net-id=<net-id>] <name>
● Flavor determines the “size” of an instance.
● Image determines the disk image used to boot the
instance.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Image Selection
$ glance image-list
+--------------------------------------+-------------------------------+-------------+------------------+...
| ID | Name | Disk Format | Container Format |...
+--------------------------------------+-------------------------------+-------------+------------------+...
| 834c3cbd-8be0-4d4a-b9e8-48ba61d6a999 | cirros | qcow2 | bare |...
| 3a752292-4484-469c-a716-de2542b5742f | rhel-guest-image-7.1-20150224 | qcow2 | bare |...
+--------------------------------------+-------------------------------+-------------+------------------+...
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Image Selection
$ glance image-show rhel-7.1-server
+------------------+--------------------------------------+
| Property | Value |
+------------------+--------------------------------------+
| checksum | b068d0e9531699516174a436bf2c300c |
| container_format | bare |
| created_at | 2015-04-01T16:13:47 |
| deleted | False |
| disk_format | qcow2 |
| id | 3a752292-4484-469c-a716-de2542b5742f |
| is_public | True |
| min_disk | 10 |
| min_ram | 0 |
| ... | ... |
+------------------+--------------------------------------+
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Flavor Selection
● Simplify process of packing
instances onto physical hosts.
● Largest flavor is typically twice
the size (CPU, RAM, Disk) of
next largest flavor and so on.
● Admin may want to customize
depending on workload
patterns.
http://bit.ly/1QPNVaZ
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Flavor Selection
$ nova flavor-list
+--------------------------------------+------------------+-----------+------+-----------+------+-------+
| ID | Name | Memory_MB | Disk | Ephemeral | Swap | VCPUs |
+--------------------------------------+------------------+-----------+------+-----------+------+-------+
| 1 | m1.tiny | 512 | 1 | 0 | | 1 |
| 2 | m1.small | 2048 | 20 | 0 | | 1 |
| 3 | m1.medium | 4096 | 40 | 0 | | 2 |
| 4 | m1.large | 8192 | 80 | 0 | | 4 |
| 5 | m1.xlarge | 16384 | 160 | 0 | | 8 |
+--------------------------------------+------------------+-----------+------+-----------+------+-------+
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Flavor Selection
$ nova flavor-show m1.small
+----------------------------+----------+
| Property | Value |
+----------------------------+----------+
| ... | ... |
| extra_specs | {} |
| id | 2 |
| name | m1.small |
| os-flavor-access:is_public | True |
| ram | 2048 |
| rxtx_factor | 1.0 |
| swap | |
| vcpus | 1 |
+----------------------------+----------+
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Network Selection
$ neutron net-list
+--------------------------------------+---------+------------------------------------------------------+
| id | name | subnets |
+--------------------------------------+---------+------------------------------------------------------+
| 605b65dd-dd7a-4f82-91f3-7c10d8e2e448 | public | 59358224-3090-4970-b07e-330b867a4411 172.24.4.224/28 |
| 7a9a376d-88cc-41ae-a08f-e3ca274f88cd | private | d68302bf-6397-480d-a61a-1eaa45e9edb9 10.0.0.0/24 |
+--------------------------------------+---------+------------------------------------------------------+
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Instance Request
$ nova boot --flavor m1.small --image rhel-7.1-server "test-instance" 
--nic net-id=7a9a376d-88cc-41ae-a08f-e3ca274f88cd
+--------------------------------------+--------------------------------------------------------+
| Property | Value |
+--------------------------------------+--------------------------------------------------------+
| OS-DCF:diskConfig | MANUAL |
| OS-EXT-AZ:availability_zone | nova |
| OS-EXT-STS:power_state | 0 |
| OS-EXT-STS:task_state |scheduling |
| OS-EXT-STS:vm_state |building |
| ... | ... |
| status |BUILD |
| ... | ... |
+--------------------------------------+--------------------------------------------------------+
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
What just happened?
● Retrieved token and endpoints from Keystone API
○ Compute end-point of the form: http[s]://<ip>:8774/v2/%(tenant_id)s
● Confirm image identifier:
○ Retrieved list of available images from Nova API
■ http://93.184.216.34:8774/v2/fc50f6843ba644baaae2af0398e7f04e/images
○ Retrieved specific image detail from Nova API
■ .../v2/fc50f6843ba644baaae2af0398e7f04e/images/3a752292-4484-469c-a716-de2542b5742f
● Confirm flavor identifier:
○ Retrieved list of available flavors from Nova API
■ ../v2/fc50f6843ba644baaae2af0398e7f04e/flavors
○ Retrieved specific flavor detail from Nova API
■ ../v2/fc50f6843ba644baaae2af0398e7f04e/flavors/2
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
What just happened? (cont.)
● User request was sent to the compute endpoint in
JSON format:
{"server":
{"name": "test-instance",
"imageRef": "3a752292-4484-469c-a716-de2542b5742f",
"flavorRef": "2", "max_count": 1, "min_count": 1,
"networks": [{"uuid": "7a9a376d-88cc-41ae-a08f-e3ca274f88cd"}]
}
}
● Request is picked up by nova-api service.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
What just happened? (cont.)
● nova-api:
○ Extracts parameters for basic validation.
○ Retrieves a reference to the selected flavor.
○ Retrieves a reference to selected boot media:
■ Image using Glance client (in this example); OR
■ Volume using Cinder client (boot from volume)
○ Saves initial instance state to database.
○ Puts a message on the message queue for the conductor.
● API call returns at this point, with instance status of
BUILD, task state SCHEDULING.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Scheduling
● Conductor asks the schedule where to build the
instance
● Default implementation is a filter scheduler
● Applies filters and weights based on configuration
○ Filter examples:
■ ComputeFilter - is this host on?
■ CoreFilter - is this host exposing enough free vCPUs?
■ RamFilter - is this host exposing enough free vRAM?
■ ImagePropertiesFilter - does this host conform to selected image properties
(architecture, hypervisor type, etc.).
○ Weight examples:
■ RAM Weigher - give preference to hosts with more or less RAM free.
● Can also take user provided hints
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Filter Scheduler Example
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Filter Scheduler Example (cont.)
● Running with debug=True:
[req-... None] Starting with 3 host(s)
[req-... None] Filter RetryFilter returned 3 host(s)
[req-... None] Filter AvailabilityZoneFilter returned 3 host(s)
[req-... None] Filter RamFilter returned 2 host(s)
...
[req-... None] Filtered [(localhost.localdomain, localhost.localdomain)
ram:3208 disk:7168 io_ops:0 instances:1] _schedule ...
[req-... None] Weighed [ WeighedHost [host: (localhost.localdomain,
localhost.localdomain) ram:3208 disk:7168 io_ops:0 instances:1, weight:
1.0]] ...
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Scheduling (cont.)
● Updates instance state in database.
● Returns to conductor, conductor places message on the
queue for openstack-nova-compute (the compute
agent) on the selected compute node.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Compute Agent
● Prepares for instance launch:
○ Calls Glance and/or Cinder to retrieve boot media info (image or
volume).
○ Calls Neutron or nova-network to get network and security group
information and “plug” virtual interfaces.
○ Calls Cinder to attach volume if necessary.
○ Sets up configuration drive if necessary.
● Uses hypervisor APIs to create virtual machine!
● Updates virtual machine state in DB (using conductor).
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
COMPUTE DRIVERS
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Driver Selection
● Two tools to help guide operators:
○ Driver testing status
■ “Is this driver tested using unit and/or functional tests in the gate?”
○ Hypervisor support matrix
■ “Does this driver support actions x, y, and z?”
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Driver Testing Status
● Multi-tiered:
○ Group A - Fully supported.
■ Coverage includes unit and functional tests in the gate.
○ Group B - Middle ground.
■ Test coverage includes unit tests that gate commits, functional testing by an external
system that does not gate but does comment on patches.
○ Group C - Drivers that have limited testing, use at own risk.
■ Test coverage includes (potentially) unit tests that gate commits and no public
functional testing.
● https://wiki.openstack.
org/wiki/HypervisorSupportMatrix#Driver_Testing_Statu
s
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Hypervisor Support Matrix
● Lists mandatory and optional driver capabilities:
○ http://docs.openstack.org/developer/nova/support-matrix.html
● Examples of capabilities:
○ Launch instance (mandatory)
○ Attach block volume to instance (optional)
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Hypervisor Support Matrix
● 11+ in-tree drivers:
○ Hyper-V
○ Ironic
○ Libvirt/
■ KVM (x86)
■ KVM (ppc64)
■ KVM (s390)
■ QEMU (x86)
■ LXC
■ Xen
■ Parallels CT
■ Parallels VM
○ VMware vCenter
○ XenServer
● Out of tree (stackforge):
○ Docker
○ PowerVM
○ zVM
● Others may exist!
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
SCALING COMPUTE
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Scaling Compute
● Compute services scale
horizontally (simply add
more).
● Scheduler needs to be
scaled a little more
carefully.
● Message queue and
database can be
clustered.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Cells
● Divide multiple compute
installations into “cells”.
● API cell handles incoming
requests, schedules to a compute
cell.
● Each cell has an instance of
nova-cells, its own message
queue and database.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Cells
● Pros:
○ Maintain a single compute endpoint.
○ Relieve pressure on queues/database at
scale.
○ Introduce additional layer of scheduling.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Cells
● Cons:
○ Lack of “cell awareness” in other projects
(e.g. Neutron).
○ Minimal test coverage in the gate.
○ Some standard functionality remains
broken with cells (Security Groups, Host
Aggregates).
● CellsV2, currently under
development, offers more promise
for the future.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
SEGREGATING COMPUTE
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Why Segregate Compute Resources?
● Expose logical groupings:
○ Geographical region, data center, rack, power source, network, etc.
● Expose special capabilities:
○ Faster NICs, storage, special devices, etc.
● The divisions mean whatever you want them to mean!
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Regions
● Complete OpenStack deployments
○ Share as many or as few services as
needed.
○ Implement their own targetable API
endpoints, networks, and compute.
● By default all services in one region:
$ keystone endpoint-create --region
“RegionTwo” ...
● Target actions at a regions endpoint:
$ nova --os-region-name “RegionTwo” boot ...
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Host Aggregates
● Logical groupings of hosts based on metadata.
● Typically metadata describes capabilities hosts expose:
○ SSD hard disks for ephemeral data storage.
○ PCI devices for passthrough.
○ Etc.
● Hosts can be in multiple host aggregates:
○ “Hosts that have SSD storage and 40G interfaces”.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Host Aggregates (cont.)
● Implicitly user targetable:
○ Admin defines host aggregate with metadata and flavor to match:
■ $ nova aggregate-create hypervisors-with-SSD
■ $ nova aggregate-set-metadata 1 SSDs=true
■ $ nova aggregate-add-host 1 hypervisor-1
■ $ nova flavor-key 1 set 
aggregate_instance_extra_specs:SSDs=true
○ User selects flavor when requesting instance.
○ Scheduler places on host aggregate with metadata matching flavor
extra specifications using AggregateInstanceExtraSpecsFilter
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Availability Zones
● Logical groupings of hosts based on arbitrary factors
like:
○ Location (country, data center, rack, etc.)
○ Network layout
○ Power source
● Explicitly user targetable:
$ nova boot --availability-zone “rack-1”
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Availability Zones
● Host aggregates are made explicitly user targetable by
creating them as an AZ:
○ $ nova aggregate-create tier-1 us-east-tier-1
○ tier-1 is the aggregate name, us-east-tier-1 is the AZ name.
● The host aggregate is the availability zone!
○ Unlike aggregates hosts can not be in multiple availability zones.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
SEGREGATION EXAMPLE
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
NEW IN KILO
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
API Microversions
● Compute API V2 has been in place for some time, was
to be superseded by V3.
● Determined that implementing new major version of API
would be too difficult:
○ User impact.
○ Developer overhead.
● V2 is extended by adding “extensions”, lots of them.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
API Microversions
● Microversions aim to:
○ Make it possible to evolve the API incrementally.
○ Provide backwards compatibility for REST API users.
○ Improve code cleanliness to make doing the “right thing” easier.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
API Microversions
● Use a single monotonic counter of the form X.Y where:
○ X will only be changed due to a significant backwards incompatible
API change is made. Expected to be rarely never incremented.
○ Y will be changed when making any change to the API. Whether such
a change is backwards compatible or not will be reflected via
documentation.
● Client will specify the version it supports, e.g.:
○ X-OpenStack-Nova-API-Version: 2.114
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
API Microversions
● Initial implementation in Kilo:
○ v2.0 API code still used to serve v2.0 API requests.
■ Plan is in Liberty v2.1 API code will serve both v2.0 and v2.1.
○ v2.0 API is frozen:
■ All new features will be added to v2.1 using microversions.
○ python-novaclient does not yet support v2.1.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
vCPU Pinning
● Allows assignment of vCPU cores, and the associated
emulator threads, to dedicated pCPU cores.
● Administrator defines host(s) that accept dedicated
resourcing requests, scheduler places guests on them.
○ Reserve cores for guests using kernel isolcpus and nova
vcpu_pin_set
○ Create flavor and matching host aggregates.
● Scheduler and agent work together to assign
appropriate CPU cores for vCPUs.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Huge Pages
● Huge pages allow the use of larger page sizes (2M, 1
GB) increasing CPU TLB cache efficiency.
○ Backing guest memory with huge pages allows predictable memory
access, at the expense of the ability to over-commit.
○ Different workloads extract different performance characteristics from
different page sizes - bigger is not always better!
● Administrator reserves large pages during compute
node setup and creates flavors to match:
○ hw:mem_page_size=large|small|any|2048|1048576
● User requests using flavor or image properties.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
I/O (PCIe) based NUMA Scheduling
● Extends Libvirt driver to capture NUMA locality of PCI
devices on the host.
● Extends NUMATopologyFilter to take into account
locality of any PCI devices being passed to the guest.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Standalone EC2 API
● Aims to:
○ Implement AWS Virtual Private Cloud API.
○ Provide the EC2 API as a standalone service.
○ Ultimately replace/supersede current Nova EC2 implementation.
● Current state:
○ Recent 0.1.0 release:
■ https://launchpad.net/ec2-api/trunk/0.1.0
○ In addition to Nova EC2 API coverage includes:
■ VPC API
■ Filtering
■ Tags
■ Paging
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
Storage Enhancements
● Consistent snapshots using qemu-guest-agent
● Libvirt driver support for KVM/QEMU built-in iSCSI
initiator - allow direct attachment of volumes to guests.
● vCenter driver support for vSAN datastores.
● vCenter driver support for ephemeral disks.
● Libvirt and Hyper-V driver support for SMB based
volumes.
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
New In-tree Driver Support
● Libvirt driver support for IBM System Z (KVM)
● Libvirt driver support for Parallels Cloud Server
OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101
THANK YOU
@xsgordon
http://www.slideshare.net/sgordon2/

Mais conteĂșdo relacionado

Mais procurados

Hyperconverged Cloud, Not just a toy anymore - Andrew Hatfield, Red Hat
Hyperconverged Cloud, Not just a toy anymore - Andrew Hatfield, Red HatHyperconverged Cloud, Not just a toy anymore - Andrew Hatfield, Red Hat
Hyperconverged Cloud, Not just a toy anymore - Andrew Hatfield, Red HatOpenStack
 
[였픈소슀컚섀팅] ìż ëČ„ë„€í‹°ìŠ€ì™€ ìż ëČ„ë„€í‹°ìŠ€ on 였픈슀택 ëč„ꔐ 및 ê”Źì¶• ë°©ëȕ
[였픈소슀컚섀팅] ìż ëČ„ë„€í‹°ìŠ€ì™€ ìż ëČ„ë„€í‹°ìŠ€ on 였픈슀택 ëč„ꔐ  및 ê”Źì¶• ë°©ëȕ[였픈소슀컚섀팅] ìż ëČ„ë„€í‹°ìŠ€ì™€ ìż ëČ„ë„€í‹°ìŠ€ on 였픈슀택 ëč„ꔐ  및 ê”Źì¶• ë°©ëȕ
[였픈소슀컚섀팅] ìż ëČ„ë„€í‹°ìŠ€ì™€ ìż ëČ„ë„€í‹°ìŠ€ on 였픈슀택 ëč„ꔐ 및 ê”Źì¶• ë°©ëȕOpen Source Consulting
 
OpenNebulaConf 2016 - Measuring and tuning VM performance by Boyan Krosnov, S...
OpenNebulaConf 2016 - Measuring and tuning VM performance by Boyan Krosnov, S...OpenNebulaConf 2016 - Measuring and tuning VM performance by Boyan Krosnov, S...
OpenNebulaConf 2016 - Measuring and tuning VM performance by Boyan Krosnov, S...OpenNebula Project
 
OpenStack Korea 2015 상반Ʞ슀터디(devops) ìŠ€íŹëŠœíŠžëĄœ 였픈슀택 ì„€ìč˜í•˜êž° 20150728
OpenStack Korea 2015 상반Ʞ슀터디(devops) ìŠ€íŹëŠœíŠžëĄœ 였픈슀택 ì„€ìč˜í•˜êž° 20150728OpenStack Korea 2015 상반Ʞ슀터디(devops) ìŠ€íŹëŠœíŠžëĄœ 였픈슀택 ì„€ìč˜í•˜êž° 20150728
OpenStack Korea 2015 상반Ʞ슀터디(devops) ìŠ€íŹëŠœíŠžëĄœ 였픈슀택 ì„€ìč˜í•˜êž° 20150728jieun kim
 
Cinder Live Migration and Replication - OpenStack Summit Austin
Cinder Live Migration and Replication - OpenStack Summit AustinCinder Live Migration and Replication - OpenStack Summit Austin
Cinder Live Migration and Replication - OpenStack Summit AustinEd Balduf
 
Networking, QoS, Liberty, Mitaka and Newton - Livnat Peer - OpenStack Day Isr...
Networking, QoS, Liberty, Mitaka and Newton - Livnat Peer - OpenStack Day Isr...Networking, QoS, Liberty, Mitaka and Newton - Livnat Peer - OpenStack Day Isr...
Networking, QoS, Liberty, Mitaka and Newton - Livnat Peer - OpenStack Day Isr...Cloud Native Day Tel Aviv
 
TechDay - Toronto 2016 - Hyperconvergence and OpenNebula
TechDay - Toronto 2016 - Hyperconvergence and OpenNebulaTechDay - Toronto 2016 - Hyperconvergence and OpenNebula
TechDay - Toronto 2016 - Hyperconvergence and OpenNebulaOpenNebula Project
 
OpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph Galuschka
OpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph GaluschkaOpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph Galuschka
OpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph GaluschkaNETWAYS
 
High Performance Linux Virtual Machine on Microsoft Azure: SR-IOV Networking ...
High Performance Linux Virtual Machine on Microsoft Azure: SR-IOV Networking ...High Performance Linux Virtual Machine on Microsoft Azure: SR-IOV Networking ...
High Performance Linux Virtual Machine on Microsoft Azure: SR-IOV Networking ...LinuxCon ContainerCon CloudOpen China
 
Couch to OpenStack: Cinder - August 6, 2013
Couch to OpenStack: Cinder - August 6, 2013Couch to OpenStack: Cinder - August 6, 2013
Couch to OpenStack: Cinder - August 6, 2013Trevor Roberts Jr.
 
OpenNebulaConf 2016 - Budgeting: the Ugly Duckling of Cloud computing? by Mat...
OpenNebulaConf 2016 - Budgeting: the Ugly Duckling of Cloud computing? by Mat...OpenNebulaConf 2016 - Budgeting: the Ugly Duckling of Cloud computing? by Mat...
OpenNebulaConf 2016 - Budgeting: the Ugly Duckling of Cloud computing? by Mat...OpenNebula Project
 
Automated Deployment & Benchmarking with Chef, Cobbler and Rally for OpenStack
Automated Deployment & Benchmarking with Chef, Cobbler and Rally for OpenStackAutomated Deployment & Benchmarking with Chef, Cobbler and Rally for OpenStack
Automated Deployment & Benchmarking with Chef, Cobbler and Rally for OpenStackNTT Communications Technology Development
 
[2015-11월 ì •êž° ì„žëŻžë‚˜]K8s on openstack
[2015-11월 ì •êž° ì„žëŻžë‚˜]K8s on openstack[2015-11월 ì •êž° ì„žëŻžë‚˜]K8s on openstack
[2015-11월 ì •êž° ì„žëŻžë‚˜]K8s on openstackOpenStack Korea Community
 
Open vSwitch Introduction
Open vSwitch IntroductionOpen vSwitch Introduction
Open vSwitch IntroductionHungWei Chiu
 
OpenNebulaConf 2016 - The DRBD SDS for OpenNebula by Philipp Reisner, LINBIT
OpenNebulaConf 2016 - The DRBD SDS for OpenNebula by Philipp Reisner, LINBITOpenNebulaConf 2016 - The DRBD SDS for OpenNebula by Philipp Reisner, LINBIT
OpenNebulaConf 2016 - The DRBD SDS for OpenNebula by Philipp Reisner, LINBITOpenNebula Project
 
Accelerating Neutron with Intel DPDK
Accelerating Neutron with Intel DPDKAccelerating Neutron with Intel DPDK
Accelerating Neutron with Intel DPDKAlexander Shalimov
 
Cobbler - Fast and reliable multi-OS provisioning
Cobbler - Fast and reliable multi-OS provisioningCobbler - Fast and reliable multi-OS provisioning
Cobbler - Fast and reliable multi-OS provisioningRUDDER
 

Mais procurados (20)

Hyperconverged Cloud, Not just a toy anymore - Andrew Hatfield, Red Hat
Hyperconverged Cloud, Not just a toy anymore - Andrew Hatfield, Red HatHyperconverged Cloud, Not just a toy anymore - Andrew Hatfield, Red Hat
Hyperconverged Cloud, Not just a toy anymore - Andrew Hatfield, Red Hat
 
[였픈소슀컚섀팅] ìż ëČ„ë„€í‹°ìŠ€ì™€ ìż ëČ„ë„€í‹°ìŠ€ on 였픈슀택 ëč„ꔐ 및 ê”Źì¶• ë°©ëȕ
[였픈소슀컚섀팅] ìż ëČ„ë„€í‹°ìŠ€ì™€ ìż ëČ„ë„€í‹°ìŠ€ on 였픈슀택 ëč„ꔐ  및 ê”Źì¶• ë°©ëȕ[였픈소슀컚섀팅] ìż ëČ„ë„€í‹°ìŠ€ì™€ ìż ëČ„ë„€í‹°ìŠ€ on 였픈슀택 ëč„ꔐ  및 ê”Źì¶• ë°©ëȕ
[였픈소슀컚섀팅] ìż ëČ„ë„€í‹°ìŠ€ì™€ ìż ëČ„ë„€í‹°ìŠ€ on 였픈슀택 ëč„ꔐ 및 ê”Źì¶• ë°©ëȕ
 
64-bit ARM Unikernels on uKVM
64-bit ARM Unikernels on uKVM64-bit ARM Unikernels on uKVM
64-bit ARM Unikernels on uKVM
 
OpenNebulaConf 2016 - Measuring and tuning VM performance by Boyan Krosnov, S...
OpenNebulaConf 2016 - Measuring and tuning VM performance by Boyan Krosnov, S...OpenNebulaConf 2016 - Measuring and tuning VM performance by Boyan Krosnov, S...
OpenNebulaConf 2016 - Measuring and tuning VM performance by Boyan Krosnov, S...
 
OpenStack Korea 2015 상반Ʞ슀터디(devops) ìŠ€íŹëŠœíŠžëĄœ 였픈슀택 ì„€ìč˜í•˜êž° 20150728
OpenStack Korea 2015 상반Ʞ슀터디(devops) ìŠ€íŹëŠœíŠžëĄœ 였픈슀택 ì„€ìč˜í•˜êž° 20150728OpenStack Korea 2015 상반Ʞ슀터디(devops) ìŠ€íŹëŠœíŠžëĄœ 였픈슀택 ì„€ìč˜í•˜êž° 20150728
OpenStack Korea 2015 상반Ʞ슀터디(devops) ìŠ€íŹëŠœíŠžëĄœ 였픈슀택 ì„€ìč˜í•˜êž° 20150728
 
OpenStack on AArch64
OpenStack on AArch64OpenStack on AArch64
OpenStack on AArch64
 
Cinder Live Migration and Replication - OpenStack Summit Austin
Cinder Live Migration and Replication - OpenStack Summit AustinCinder Live Migration and Replication - OpenStack Summit Austin
Cinder Live Migration and Replication - OpenStack Summit Austin
 
Networking, QoS, Liberty, Mitaka and Newton - Livnat Peer - OpenStack Day Isr...
Networking, QoS, Liberty, Mitaka and Newton - Livnat Peer - OpenStack Day Isr...Networking, QoS, Liberty, Mitaka and Newton - Livnat Peer - OpenStack Day Isr...
Networking, QoS, Liberty, Mitaka and Newton - Livnat Peer - OpenStack Day Isr...
 
TechDay - Toronto 2016 - Hyperconvergence and OpenNebula
TechDay - Toronto 2016 - Hyperconvergence and OpenNebulaTechDay - Toronto 2016 - Hyperconvergence and OpenNebula
TechDay - Toronto 2016 - Hyperconvergence and OpenNebula
 
OpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph Galuschka
OpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph GaluschkaOpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph Galuschka
OpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph Galuschka
 
High Performance Linux Virtual Machine on Microsoft Azure: SR-IOV Networking ...
High Performance Linux Virtual Machine on Microsoft Azure: SR-IOV Networking ...High Performance Linux Virtual Machine on Microsoft Azure: SR-IOV Networking ...
High Performance Linux Virtual Machine on Microsoft Azure: SR-IOV Networking ...
 
Couch to OpenStack: Cinder - August 6, 2013
Couch to OpenStack: Cinder - August 6, 2013Couch to OpenStack: Cinder - August 6, 2013
Couch to OpenStack: Cinder - August 6, 2013
 
OpenNebulaConf 2016 - Budgeting: the Ugly Duckling of Cloud computing? by Mat...
OpenNebulaConf 2016 - Budgeting: the Ugly Duckling of Cloud computing? by Mat...OpenNebulaConf 2016 - Budgeting: the Ugly Duckling of Cloud computing? by Mat...
OpenNebulaConf 2016 - Budgeting: the Ugly Duckling of Cloud computing? by Mat...
 
Automated Deployment & Benchmarking with Chef, Cobbler and Rally for OpenStack
Automated Deployment & Benchmarking with Chef, Cobbler and Rally for OpenStackAutomated Deployment & Benchmarking with Chef, Cobbler and Rally for OpenStack
Automated Deployment & Benchmarking with Chef, Cobbler and Rally for OpenStack
 
[2015-11월 ì •êž° ì„žëŻžë‚˜]K8s on openstack
[2015-11월 ì •êž° ì„žëŻžë‚˜]K8s on openstack[2015-11월 ì •êž° ì„žëŻžë‚˜]K8s on openstack
[2015-11월 ì •êž° ì„žëŻžë‚˜]K8s on openstack
 
Open vSwitch Introduction
Open vSwitch IntroductionOpen vSwitch Introduction
Open vSwitch Introduction
 
OpenNebulaConf 2016 - The DRBD SDS for OpenNebula by Philipp Reisner, LINBIT
OpenNebulaConf 2016 - The DRBD SDS for OpenNebula by Philipp Reisner, LINBITOpenNebulaConf 2016 - The DRBD SDS for OpenNebula by Philipp Reisner, LINBIT
OpenNebulaConf 2016 - The DRBD SDS for OpenNebula by Philipp Reisner, LINBIT
 
Accelerating Neutron with Intel DPDK
Accelerating Neutron with Intel DPDKAccelerating Neutron with Intel DPDK
Accelerating Neutron with Intel DPDK
 
Cobbler - Fast and reliable multi-OS provisioning
Cobbler - Fast and reliable multi-OS provisioningCobbler - Fast and reliable multi-OS provisioning
Cobbler - Fast and reliable multi-OS provisioning
 
Rethinking the OS
Rethinking the OSRethinking the OS
Rethinking the OS
 

Destaque

Deltacloud - Abstracting for Freedom
Deltacloud - Abstracting for FreedomDeltacloud - Abstracting for Freedom
Deltacloud - Abstracting for FreedomStephen Gordon
 
OpenStack Toronto: Juno Community Update
OpenStack Toronto: Juno Community UpdateOpenStack Toronto: Juno Community Update
OpenStack Toronto: Juno Community UpdateStephen Gordon
 
Deep Dive: OpenStack Summit (Red Hat Summit 2014)
Deep Dive: OpenStack Summit (Red Hat Summit 2014)Deep Dive: OpenStack Summit (Red Hat Summit 2014)
Deep Dive: OpenStack Summit (Red Hat Summit 2014)Stephen Gordon
 
dodaić‹‰ćŒ·äŒš#5 nova-scheduler
dodaić‹‰ćŒ·äŒš#5 nova-schedulerdodaić‹‰ćŒ·äŒš#5 nova-scheduler
dodaić‹‰ćŒ·äŒš#5 nova-schedulerShingo Nakagawa
 
Divide and conquer: resource segregation in the OpenStack cloud
Divide and conquer: resource segregation in the OpenStack cloudDivide and conquer: resource segregation in the OpenStack cloud
Divide and conquer: resource segregation in the OpenStack cloudStephen Gordon
 
The Programmable Telecom Network, Doug Tait, Oracle, Enzo Amorino, Telecom It...
The Programmable Telecom Network, Doug Tait, Oracle, Enzo Amorino, Telecom It...The Programmable Telecom Network, Doug Tait, Oracle, Enzo Amorino, Telecom It...
The Programmable Telecom Network, Doug Tait, Oracle, Enzo Amorino, Telecom It...Alan Quayle
 
Openstack study-nova-02
Openstack study-nova-02Openstack study-nova-02
Openstack study-nova-02Jinho Shin
 
Cisco Data Center Orchestration Solution
Cisco Data Center Orchestration SolutionCisco Data Center Orchestration Solution
Cisco Data Center Orchestration SolutionCisco Canada
 
Orchestration Ownage - RSAC 2017
Orchestration Ownage - RSAC 2017Orchestration Ownage - RSAC 2017
Orchestration Ownage - RSAC 2017Bryce Kunz
 
Rundeck + Nexus (from Nexus Live on June 5, 2014)
Rundeck + Nexus (from Nexus Live on June 5, 2014)Rundeck + Nexus (from Nexus Live on June 5, 2014)
Rundeck + Nexus (from Nexus Live on June 5, 2014)dev2ops
 
Red Hat Certified engineer course
  Red Hat Certified engineer course   Red Hat Certified engineer course
Red Hat Certified engineer course Ali Abdo
 
OpenDaylight Integration with OpenStack Neutron: A Tutorial
OpenDaylight Integration with OpenStack Neutron: A TutorialOpenDaylight Integration with OpenStack Neutron: A Tutorial
OpenDaylight Integration with OpenStack Neutron: A Tutorialmestery
 
Deep dive into highly available open stack architecture openstack summit va...
Deep dive into highly available open stack architecture   openstack summit va...Deep dive into highly available open stack architecture   openstack summit va...
Deep dive into highly available open stack architecture openstack summit va...Arthur Berezin
 
OpenStack Best Practices and Considerations - terasky tech day
OpenStack Best Practices and Considerations  - terasky tech dayOpenStack Best Practices and Considerations  - terasky tech day
OpenStack Best Practices and Considerations - terasky tech dayArthur Berezin
 
Mastering DevOps With Oracle
Mastering DevOps With OracleMastering DevOps With Oracle
Mastering DevOps With OracleKelly Goetsch
 
Mastering DevOps with Oracle
Mastering DevOps with Oracle Mastering DevOps with Oracle
Mastering DevOps with Oracle jeckels
 
[였픈소슀컚섀팅]였픈슀택에 ëŒ€í•˜ì—Ź
[였픈소슀컚섀팅]였픈슀택에 ëŒ€í•˜ì—Ź[였픈소슀컚섀팅]였픈슀택에 ëŒ€í•˜ì—Ź
[였픈소슀컚섀팅]였픈슀택에 ëŒ€í•˜ì—ŹJi-Woong Choi
 
Compute node HA - current upstream development
Compute node HA - current upstream developmentCompute node HA - current upstream development
Compute node HA - current upstream developmentAdam Spiers
 
Docker introduction
Docker introductionDocker introduction
Docker introductiondotCloud
 

Destaque (20)

Deltacloud - Abstracting for Freedom
Deltacloud - Abstracting for FreedomDeltacloud - Abstracting for Freedom
Deltacloud - Abstracting for Freedom
 
OpenStack Toronto: Juno Community Update
OpenStack Toronto: Juno Community UpdateOpenStack Toronto: Juno Community Update
OpenStack Toronto: Juno Community Update
 
Deep Dive: OpenStack Summit (Red Hat Summit 2014)
Deep Dive: OpenStack Summit (Red Hat Summit 2014)Deep Dive: OpenStack Summit (Red Hat Summit 2014)
Deep Dive: OpenStack Summit (Red Hat Summit 2014)
 
dodaić‹‰ćŒ·äŒš#5 nova-scheduler
dodaić‹‰ćŒ·äŒš#5 nova-schedulerdodaić‹‰ćŒ·äŒš#5 nova-scheduler
dodaić‹‰ćŒ·äŒš#5 nova-scheduler
 
Publican
PublicanPublican
Publican
 
Divide and conquer: resource segregation in the OpenStack cloud
Divide and conquer: resource segregation in the OpenStack cloudDivide and conquer: resource segregation in the OpenStack cloud
Divide and conquer: resource segregation in the OpenStack cloud
 
The Programmable Telecom Network, Doug Tait, Oracle, Enzo Amorino, Telecom It...
The Programmable Telecom Network, Doug Tait, Oracle, Enzo Amorino, Telecom It...The Programmable Telecom Network, Doug Tait, Oracle, Enzo Amorino, Telecom It...
The Programmable Telecom Network, Doug Tait, Oracle, Enzo Amorino, Telecom It...
 
Openstack study-nova-02
Openstack study-nova-02Openstack study-nova-02
Openstack study-nova-02
 
Cisco Data Center Orchestration Solution
Cisco Data Center Orchestration SolutionCisco Data Center Orchestration Solution
Cisco Data Center Orchestration Solution
 
Orchestration Ownage - RSAC 2017
Orchestration Ownage - RSAC 2017Orchestration Ownage - RSAC 2017
Orchestration Ownage - RSAC 2017
 
Rundeck + Nexus (from Nexus Live on June 5, 2014)
Rundeck + Nexus (from Nexus Live on June 5, 2014)Rundeck + Nexus (from Nexus Live on June 5, 2014)
Rundeck + Nexus (from Nexus Live on June 5, 2014)
 
Red Hat Certified engineer course
  Red Hat Certified engineer course   Red Hat Certified engineer course
Red Hat Certified engineer course
 
OpenDaylight Integration with OpenStack Neutron: A Tutorial
OpenDaylight Integration with OpenStack Neutron: A TutorialOpenDaylight Integration with OpenStack Neutron: A Tutorial
OpenDaylight Integration with OpenStack Neutron: A Tutorial
 
Deep dive into highly available open stack architecture openstack summit va...
Deep dive into highly available open stack architecture   openstack summit va...Deep dive into highly available open stack architecture   openstack summit va...
Deep dive into highly available open stack architecture openstack summit va...
 
OpenStack Best Practices and Considerations - terasky tech day
OpenStack Best Practices and Considerations  - terasky tech dayOpenStack Best Practices and Considerations  - terasky tech day
OpenStack Best Practices and Considerations - terasky tech day
 
Mastering DevOps With Oracle
Mastering DevOps With OracleMastering DevOps With Oracle
Mastering DevOps With Oracle
 
Mastering DevOps with Oracle
Mastering DevOps with Oracle Mastering DevOps with Oracle
Mastering DevOps with Oracle
 
[였픈소슀컚섀팅]였픈슀택에 ëŒ€í•˜ì—Ź
[였픈소슀컚섀팅]였픈슀택에 ëŒ€í•˜ì—Ź[였픈소슀컚섀팅]였픈슀택에 ëŒ€í•˜ì—Ź
[였픈소슀컚섀팅]였픈슀택에 ëŒ€í•˜ì—Ź
 
Compute node HA - current upstream development
Compute node HA - current upstream developmentCompute node HA - current upstream development
Compute node HA - current upstream development
 
Docker introduction
Docker introductionDocker introduction
Docker introduction
 

Semelhante a Compute 101 - OpenStack Summit Vancouver 2015

Vagrant, Ansible, and OpenStack on your laptop
Vagrant, Ansible, and OpenStack on your laptopVagrant, Ansible, and OpenStack on your laptop
Vagrant, Ansible, and OpenStack on your laptopLorin Hochstein
 
Couch to OpenStack: Neutron (Quantum) - August 13, 2013 Featuring Sean Winn
Couch to OpenStack: Neutron (Quantum) - August 13, 2013 Featuring Sean WinnCouch to OpenStack: Neutron (Quantum) - August 13, 2013 Featuring Sean Winn
Couch to OpenStack: Neutron (Quantum) - August 13, 2013 Featuring Sean WinnTrevor Roberts Jr.
 
Troubleshooting Complex Performance issues - Oracle SEG$ contention
Troubleshooting Complex Performance issues - Oracle SEG$ contentionTroubleshooting Complex Performance issues - Oracle SEG$ contention
Troubleshooting Complex Performance issues - Oracle SEG$ contentionTanel Poder
 
What’s new in 9.6, by PostgreSQL contributor
What’s new in 9.6, by PostgreSQL contributorWhat’s new in 9.6, by PostgreSQL contributor
What’s new in 9.6, by PostgreSQL contributorMasahiko Sawada
 
Oracle Basics and Architecture
Oracle Basics and ArchitectureOracle Basics and Architecture
Oracle Basics and ArchitectureSidney Chen
 
Understanding Query Optimization with ‘regular’ and ‘Exadata’ Oracle
Understanding Query Optimization with ‘regular’ and ‘Exadata’ OracleUnderstanding Query Optimization with ‘regular’ and ‘Exadata’ Oracle
Understanding Query Optimization with ‘regular’ and ‘Exadata’ OracleGuatemala User Group
 
My First 100 days with an Exadata (PPT)
My First 100 days with an Exadata (PPT)My First 100 days with an Exadata (PPT)
My First 100 days with an Exadata (PPT)Gustavo Rene Antunez
 
IO_Analysis_with_SAR.ppt
IO_Analysis_with_SAR.pptIO_Analysis_with_SAR.ppt
IO_Analysis_with_SAR.pptcookie1969
 
Introduction about Kubernates Cluster
Introduction about Kubernates ClusterIntroduction about Kubernates Cluster
Introduction about Kubernates Cluster♛Kumar Aneesh♛
 
16 MySQL Optimization #burningkeyboards
16 MySQL Optimization #burningkeyboards16 MySQL Optimization #burningkeyboards
16 MySQL Optimization #burningkeyboardsDenis Ristic
 
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...Amazon Web Services
 
Presto best practices for Cluster admins, data engineers and analysts
Presto best practices for Cluster admins, data engineers and analystsPresto best practices for Cluster admins, data engineers and analysts
Presto best practices for Cluster admins, data engineers and analystsShubham Tagra
 
AWS re:Invent 2016: [JK REPEAT] Deep Dive on Amazon EC2 Instances, Featuring ...
AWS re:Invent 2016: [JK REPEAT] Deep Dive on Amazon EC2 Instances, Featuring ...AWS re:Invent 2016: [JK REPEAT] Deep Dive on Amazon EC2 Instances, Featuring ...
AWS re:Invent 2016: [JK REPEAT] Deep Dive on Amazon EC2 Instances, Featuring ...Amazon Web Services
 
(NET301) New Capabilities for Amazon Virtual Private Cloud
(NET301) New Capabilities for Amazon Virtual Private Cloud(NET301) New Capabilities for Amazon Virtual Private Cloud
(NET301) New Capabilities for Amazon Virtual Private CloudAmazon Web Services
 
AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...
AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...
AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...Amazon Web Services
 
Intel's Out of the Box Network Developers Ireland Meetup on March 29 2017 - ...
Intel's Out of the Box Network Developers Ireland Meetup on March 29 2017  - ...Intel's Out of the Box Network Developers Ireland Meetup on March 29 2017  - ...
Intel's Out of the Box Network Developers Ireland Meetup on March 29 2017 - ...Haidee McMahon
 
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...Amazon Web Services
 

Semelhante a Compute 101 - OpenStack Summit Vancouver 2015 (20)

Vagrant, Ansible, and OpenStack on your laptop
Vagrant, Ansible, and OpenStack on your laptopVagrant, Ansible, and OpenStack on your laptop
Vagrant, Ansible, and OpenStack on your laptop
 
Couch to OpenStack: Neutron (Quantum) - August 13, 2013 Featuring Sean Winn
Couch to OpenStack: Neutron (Quantum) - August 13, 2013 Featuring Sean WinnCouch to OpenStack: Neutron (Quantum) - August 13, 2013 Featuring Sean Winn
Couch to OpenStack: Neutron (Quantum) - August 13, 2013 Featuring Sean Winn
 
Troubleshooting Complex Performance issues - Oracle SEG$ contention
Troubleshooting Complex Performance issues - Oracle SEG$ contentionTroubleshooting Complex Performance issues - Oracle SEG$ contention
Troubleshooting Complex Performance issues - Oracle SEG$ contention
 
What’s new in 9.6, by PostgreSQL contributor
What’s new in 9.6, by PostgreSQL contributorWhat’s new in 9.6, by PostgreSQL contributor
What’s new in 9.6, by PostgreSQL contributor
 
Oracle Basics and Architecture
Oracle Basics and ArchitectureOracle Basics and Architecture
Oracle Basics and Architecture
 
Understanding Query Optimization with ‘regular’ and ‘Exadata’ Oracle
Understanding Query Optimization with ‘regular’ and ‘Exadata’ OracleUnderstanding Query Optimization with ‘regular’ and ‘Exadata’ Oracle
Understanding Query Optimization with ‘regular’ and ‘Exadata’ Oracle
 
My First 100 days with an Exadata (PPT)
My First 100 days with an Exadata (PPT)My First 100 days with an Exadata (PPT)
My First 100 days with an Exadata (PPT)
 
PoC Oracle Exadata - Retour d'expérience
PoC Oracle Exadata - Retour d'expériencePoC Oracle Exadata - Retour d'expérience
PoC Oracle Exadata - Retour d'expérience
 
IO_Analysis_with_SAR.ppt
IO_Analysis_with_SAR.pptIO_Analysis_with_SAR.ppt
IO_Analysis_with_SAR.ppt
 
MySQLinsanity
MySQLinsanityMySQLinsanity
MySQLinsanity
 
Introduction about Kubernates Cluster
Introduction about Kubernates ClusterIntroduction about Kubernates Cluster
Introduction about Kubernates Cluster
 
16 MySQL Optimization #burningkeyboards
16 MySQL Optimization #burningkeyboards16 MySQL Optimization #burningkeyboards
16 MySQL Optimization #burningkeyboards
 
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
 
Presto best practices for Cluster admins, data engineers and analysts
Presto best practices for Cluster admins, data engineers and analystsPresto best practices for Cluster admins, data engineers and analysts
Presto best practices for Cluster admins, data engineers and analysts
 
AWS re:Invent 2016: [JK REPEAT] Deep Dive on Amazon EC2 Instances, Featuring ...
AWS re:Invent 2016: [JK REPEAT] Deep Dive on Amazon EC2 Instances, Featuring ...AWS re:Invent 2016: [JK REPEAT] Deep Dive on Amazon EC2 Instances, Featuring ...
AWS re:Invent 2016: [JK REPEAT] Deep Dive on Amazon EC2 Instances, Featuring ...
 
(NET301) New Capabilities for Amazon Virtual Private Cloud
(NET301) New Capabilities for Amazon Virtual Private Cloud(NET301) New Capabilities for Amazon Virtual Private Cloud
(NET301) New Capabilities for Amazon Virtual Private Cloud
 
AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...
AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...
AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...
 
Intel's Out of the Box Network Developers Ireland Meetup on March 29 2017 - ...
Intel's Out of the Box Network Developers Ireland Meetup on March 29 2017  - ...Intel's Out of the Box Network Developers Ireland Meetup on March 29 2017  - ...
Intel's Out of the Box Network Developers Ireland Meetup on March 29 2017 - ...
 
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
 
Complex stories about Sqooping PostgreSQL data
Complex stories about Sqooping PostgreSQL dataComplex stories about Sqooping PostgreSQL data
Complex stories about Sqooping PostgreSQL data
 

Mais de Stephen Gordon

Toronto RHUG: Container-native virtualization
Toronto RHUG: Container-native virtualizationToronto RHUG: Container-native virtualization
Toronto RHUG: Container-native virtualizationStephen Gordon
 
KubeVirt (Kubernetes and Cloud Native Toronto)
KubeVirt (Kubernetes and Cloud Native Toronto)KubeVirt (Kubernetes and Cloud Native Toronto)
KubeVirt (Kubernetes and Cloud Native Toronto)Stephen Gordon
 
OpenStackTO: Friendly coexistence of Virtual Machines and Containers on Kuber...
OpenStackTO: Friendly coexistence of Virtual Machines and Containers on Kuber...OpenStackTO: Friendly coexistence of Virtual Machines and Containers on Kuber...
OpenStackTO: Friendly coexistence of Virtual Machines and Containers on Kuber...Stephen Gordon
 
Kubernetes and OpenStack at Scale
Kubernetes and OpenStack at ScaleKubernetes and OpenStack at Scale
Kubernetes and OpenStack at ScaleStephen Gordon
 
What's new in OpenStack Liberty
What's new in OpenStack LibertyWhat's new in OpenStack Liberty
What's new in OpenStack LibertyStephen Gordon
 

Mais de Stephen Gordon (6)

Toronto RHUG: Container-native virtualization
Toronto RHUG: Container-native virtualizationToronto RHUG: Container-native virtualization
Toronto RHUG: Container-native virtualization
 
KubeVirt (Kubernetes and Cloud Native Toronto)
KubeVirt (Kubernetes and Cloud Native Toronto)KubeVirt (Kubernetes and Cloud Native Toronto)
KubeVirt (Kubernetes and Cloud Native Toronto)
 
OpenStackTO: Friendly coexistence of Virtual Machines and Containers on Kuber...
OpenStackTO: Friendly coexistence of Virtual Machines and Containers on Kuber...OpenStackTO: Friendly coexistence of Virtual Machines and Containers on Kuber...
OpenStackTO: Friendly coexistence of Virtual Machines and Containers on Kuber...
 
KubeWHAT!?
KubeWHAT!?KubeWHAT!?
KubeWHAT!?
 
Kubernetes and OpenStack at Scale
Kubernetes and OpenStack at ScaleKubernetes and OpenStack at Scale
Kubernetes and OpenStack at Scale
 
What's new in OpenStack Liberty
What's new in OpenStack LibertyWhat's new in OpenStack Liberty
What's new in OpenStack Liberty
 

Último

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Mcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 

Último (20)

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Mcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 

Compute 101 - OpenStack Summit Vancouver 2015

  • 1. OPENSTACK COMPUTE 101 OpenStack Compute 101 Stephen Gordon (@xsgordon) Sr. Technical Product Manager, Red Hat
  • 2. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Agenda ● Overview ● Instance Lifecycle ● Compute Drivers ● Scaling Compute ● Segregating Compute ● New in Kilo
  • 3. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 OVERVIEW
  • 4. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 What is OpenStack? ● A group of related projects that when combined form an Open Source cloud infrastructure platform for providing Infrastructure-as-a-Service. ● Intended to be “massively scalable”, scales horizontally not vertically, on commodity hardware. ● Modular architecture allows consumers of the platform to deploy only what they need.
  • 5. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 OpenStack Components
  • 6. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 What is OpenStack Compute (Nova)? ● One of the two original OpenStack projects, along with Object Storage (Swift). ● Exposes a rich API for defining compute instances and managing their lifecycle. ● Pluggable support for multiple common hypervisor platforms, relatively solution agnostic.
  • 7. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Compute Components ● RESTful nova-api interface exposed on TCP port 8774. ● AMQP message queue used for RPC communications. ● nova-scheduler handles hypervisor selection for instance placement.
  • 8. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Components (cont.) ● nova-compute acts as the Compute agent, interacting with the relevant hypervisor APIs to launch/manage guests. ● nova-conductor handles database access (no-db- compute)
  • 9. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Other Components ● Metadata service - nova-metadata-api ● Traditional networking model - nova-network ● L2 agent - e.g.: ○ neutron-openvswitch-agent ○ neutron-linuxbridge-agent ● Ceilometer agent: ○ openstack-ceilometer-compute ● EC2 API: nova-ec2, nova-cert ● Console Auth and Proxies: noVNC, SPICE, etc.
  • 10. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 INSTANCE LIFECYCLE
  • 11. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Authentication$ cat keystonerc_demo export OS_USERNAME=demo export OS_TENANT_NAME=demo export OS_PASSWORD=c8500b92ed7f4ed0 export OS_AUTH_URL=http://93.184.216.34:5000/v2.0/ export PS1='[u@h W(keystone_demo)]$ ' $ source keystonerc_demo
  • 12. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Instance Creation ● Instance creation achieved using nova boot command. ● Minimal set of arguments include selecting a flavor and image: $ nova boot --flavor <flavor> --image <image> [--nic net-id=<net-id>] <name> ● Flavor determines the “size” of an instance. ● Image determines the disk image used to boot the instance.
  • 13. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Image Selection $ glance image-list +--------------------------------------+-------------------------------+-------------+------------------+... | ID | Name | Disk Format | Container Format |... +--------------------------------------+-------------------------------+-------------+------------------+... | 834c3cbd-8be0-4d4a-b9e8-48ba61d6a999 | cirros | qcow2 | bare |... | 3a752292-4484-469c-a716-de2542b5742f | rhel-guest-image-7.1-20150224 | qcow2 | bare |... +--------------------------------------+-------------------------------+-------------+------------------+...
  • 14. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Image Selection $ glance image-show rhel-7.1-server +------------------+--------------------------------------+ | Property | Value | +------------------+--------------------------------------+ | checksum | b068d0e9531699516174a436bf2c300c | | container_format | bare | | created_at | 2015-04-01T16:13:47 | | deleted | False | | disk_format | qcow2 | | id | 3a752292-4484-469c-a716-de2542b5742f | | is_public | True | | min_disk | 10 | | min_ram | 0 | | ... | ... | +------------------+--------------------------------------+
  • 15. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Flavor Selection ● Simplify process of packing instances onto physical hosts. ● Largest flavor is typically twice the size (CPU, RAM, Disk) of next largest flavor and so on. ● Admin may want to customize depending on workload patterns. http://bit.ly/1QPNVaZ
  • 16. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Flavor Selection $ nova flavor-list +--------------------------------------+------------------+-----------+------+-----------+------+-------+ | ID | Name | Memory_MB | Disk | Ephemeral | Swap | VCPUs | +--------------------------------------+------------------+-----------+------+-----------+------+-------+ | 1 | m1.tiny | 512 | 1 | 0 | | 1 | | 2 | m1.small | 2048 | 20 | 0 | | 1 | | 3 | m1.medium | 4096 | 40 | 0 | | 2 | | 4 | m1.large | 8192 | 80 | 0 | | 4 | | 5 | m1.xlarge | 16384 | 160 | 0 | | 8 | +--------------------------------------+------------------+-----------+------+-----------+------+-------+
  • 17. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Flavor Selection $ nova flavor-show m1.small +----------------------------+----------+ | Property | Value | +----------------------------+----------+ | ... | ... | | extra_specs | {} | | id | 2 | | name | m1.small | | os-flavor-access:is_public | True | | ram | 2048 | | rxtx_factor | 1.0 | | swap | | | vcpus | 1 | +----------------------------+----------+
  • 18. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Network Selection $ neutron net-list +--------------------------------------+---------+------------------------------------------------------+ | id | name | subnets | +--------------------------------------+---------+------------------------------------------------------+ | 605b65dd-dd7a-4f82-91f3-7c10d8e2e448 | public | 59358224-3090-4970-b07e-330b867a4411 172.24.4.224/28 | | 7a9a376d-88cc-41ae-a08f-e3ca274f88cd | private | d68302bf-6397-480d-a61a-1eaa45e9edb9 10.0.0.0/24 | +--------------------------------------+---------+------------------------------------------------------+
  • 19. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Instance Request $ nova boot --flavor m1.small --image rhel-7.1-server "test-instance" --nic net-id=7a9a376d-88cc-41ae-a08f-e3ca274f88cd +--------------------------------------+--------------------------------------------------------+ | Property | Value | +--------------------------------------+--------------------------------------------------------+ | OS-DCF:diskConfig | MANUAL | | OS-EXT-AZ:availability_zone | nova | | OS-EXT-STS:power_state | 0 | | OS-EXT-STS:task_state |scheduling | | OS-EXT-STS:vm_state |building | | ... | ... | | status |BUILD | | ... | ... | +--------------------------------------+--------------------------------------------------------+
  • 20. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 What just happened? ● Retrieved token and endpoints from Keystone API ○ Compute end-point of the form: http[s]://<ip>:8774/v2/%(tenant_id)s ● Confirm image identifier: ○ Retrieved list of available images from Nova API ■ http://93.184.216.34:8774/v2/fc50f6843ba644baaae2af0398e7f04e/images ○ Retrieved specific image detail from Nova API ■ .../v2/fc50f6843ba644baaae2af0398e7f04e/images/3a752292-4484-469c-a716-de2542b5742f ● Confirm flavor identifier: ○ Retrieved list of available flavors from Nova API ■ ../v2/fc50f6843ba644baaae2af0398e7f04e/flavors ○ Retrieved specific flavor detail from Nova API ■ ../v2/fc50f6843ba644baaae2af0398e7f04e/flavors/2
  • 21. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 What just happened? (cont.) ● User request was sent to the compute endpoint in JSON format: {"server": {"name": "test-instance", "imageRef": "3a752292-4484-469c-a716-de2542b5742f", "flavorRef": "2", "max_count": 1, "min_count": 1, "networks": [{"uuid": "7a9a376d-88cc-41ae-a08f-e3ca274f88cd"}] } } ● Request is picked up by nova-api service.
  • 22. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 What just happened? (cont.) ● nova-api: ○ Extracts parameters for basic validation. ○ Retrieves a reference to the selected flavor. ○ Retrieves a reference to selected boot media: ■ Image using Glance client (in this example); OR ■ Volume using Cinder client (boot from volume) ○ Saves initial instance state to database. ○ Puts a message on the message queue for the conductor. ● API call returns at this point, with instance status of BUILD, task state SCHEDULING.
  • 23. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Scheduling ● Conductor asks the schedule where to build the instance ● Default implementation is a filter scheduler ● Applies filters and weights based on configuration ○ Filter examples: ■ ComputeFilter - is this host on? ■ CoreFilter - is this host exposing enough free vCPUs? ■ RamFilter - is this host exposing enough free vRAM? ■ ImagePropertiesFilter - does this host conform to selected image properties (architecture, hypervisor type, etc.). ○ Weight examples: ■ RAM Weigher - give preference to hosts with more or less RAM free. ● Can also take user provided hints
  • 24. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Filter Scheduler Example
  • 25. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Filter Scheduler Example (cont.) ● Running with debug=True: [req-... None] Starting with 3 host(s) [req-... None] Filter RetryFilter returned 3 host(s) [req-... None] Filter AvailabilityZoneFilter returned 3 host(s) [req-... None] Filter RamFilter returned 2 host(s) ... [req-... None] Filtered [(localhost.localdomain, localhost.localdomain) ram:3208 disk:7168 io_ops:0 instances:1] _schedule ... [req-... None] Weighed [ WeighedHost [host: (localhost.localdomain, localhost.localdomain) ram:3208 disk:7168 io_ops:0 instances:1, weight: 1.0]] ...
  • 26. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Scheduling (cont.) ● Updates instance state in database. ● Returns to conductor, conductor places message on the queue for openstack-nova-compute (the compute agent) on the selected compute node.
  • 27. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Compute Agent ● Prepares for instance launch: ○ Calls Glance and/or Cinder to retrieve boot media info (image or volume). ○ Calls Neutron or nova-network to get network and security group information and “plug” virtual interfaces. ○ Calls Cinder to attach volume if necessary. ○ Sets up configuration drive if necessary. ● Uses hypervisor APIs to create virtual machine! ● Updates virtual machine state in DB (using conductor).
  • 28. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 COMPUTE DRIVERS
  • 29. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Driver Selection ● Two tools to help guide operators: ○ Driver testing status ■ “Is this driver tested using unit and/or functional tests in the gate?” ○ Hypervisor support matrix ■ “Does this driver support actions x, y, and z?”
  • 30. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Driver Testing Status ● Multi-tiered: ○ Group A - Fully supported. ■ Coverage includes unit and functional tests in the gate. ○ Group B - Middle ground. ■ Test coverage includes unit tests that gate commits, functional testing by an external system that does not gate but does comment on patches. ○ Group C - Drivers that have limited testing, use at own risk. ■ Test coverage includes (potentially) unit tests that gate commits and no public functional testing. ● https://wiki.openstack. org/wiki/HypervisorSupportMatrix#Driver_Testing_Statu s
  • 31. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Hypervisor Support Matrix ● Lists mandatory and optional driver capabilities: ○ http://docs.openstack.org/developer/nova/support-matrix.html ● Examples of capabilities: ○ Launch instance (mandatory) ○ Attach block volume to instance (optional)
  • 32. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Hypervisor Support Matrix ● 11+ in-tree drivers: ○ Hyper-V ○ Ironic ○ Libvirt/ ■ KVM (x86) ■ KVM (ppc64) ■ KVM (s390) ■ QEMU (x86) ■ LXC ■ Xen ■ Parallels CT ■ Parallels VM ○ VMware vCenter ○ XenServer ● Out of tree (stackforge): ○ Docker ○ PowerVM ○ zVM ● Others may exist!
  • 33. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 SCALING COMPUTE
  • 34. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Scaling Compute ● Compute services scale horizontally (simply add more). ● Scheduler needs to be scaled a little more carefully. ● Message queue and database can be clustered.
  • 35. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Cells ● Divide multiple compute installations into “cells”. ● API cell handles incoming requests, schedules to a compute cell. ● Each cell has an instance of nova-cells, its own message queue and database.
  • 36. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Cells ● Pros: ○ Maintain a single compute endpoint. ○ Relieve pressure on queues/database at scale. ○ Introduce additional layer of scheduling.
  • 37. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Cells ● Cons: ○ Lack of “cell awareness” in other projects (e.g. Neutron). ○ Minimal test coverage in the gate. ○ Some standard functionality remains broken with cells (Security Groups, Host Aggregates). ● CellsV2, currently under development, offers more promise for the future.
  • 38. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 SEGREGATING COMPUTE
  • 39. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Why Segregate Compute Resources? ● Expose logical groupings: ○ Geographical region, data center, rack, power source, network, etc. ● Expose special capabilities: ○ Faster NICs, storage, special devices, etc. ● The divisions mean whatever you want them to mean!
  • 40. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Regions ● Complete OpenStack deployments ○ Share as many or as few services as needed. ○ Implement their own targetable API endpoints, networks, and compute. ● By default all services in one region: $ keystone endpoint-create --region “RegionTwo” ... ● Target actions at a regions endpoint: $ nova --os-region-name “RegionTwo” boot ...
  • 41. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Host Aggregates ● Logical groupings of hosts based on metadata. ● Typically metadata describes capabilities hosts expose: ○ SSD hard disks for ephemeral data storage. ○ PCI devices for passthrough. ○ Etc. ● Hosts can be in multiple host aggregates: ○ “Hosts that have SSD storage and 40G interfaces”.
  • 42. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Host Aggregates (cont.) ● Implicitly user targetable: ○ Admin defines host aggregate with metadata and flavor to match: ■ $ nova aggregate-create hypervisors-with-SSD ■ $ nova aggregate-set-metadata 1 SSDs=true ■ $ nova aggregate-add-host 1 hypervisor-1 ■ $ nova flavor-key 1 set aggregate_instance_extra_specs:SSDs=true ○ User selects flavor when requesting instance. ○ Scheduler places on host aggregate with metadata matching flavor extra specifications using AggregateInstanceExtraSpecsFilter
  • 43. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Availability Zones ● Logical groupings of hosts based on arbitrary factors like: ○ Location (country, data center, rack, etc.) ○ Network layout ○ Power source ● Explicitly user targetable: $ nova boot --availability-zone “rack-1”
  • 44. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Availability Zones ● Host aggregates are made explicitly user targetable by creating them as an AZ: ○ $ nova aggregate-create tier-1 us-east-tier-1 ○ tier-1 is the aggregate name, us-east-tier-1 is the AZ name. ● The host aggregate is the availability zone! ○ Unlike aggregates hosts can not be in multiple availability zones.
  • 45. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 SEGREGATION EXAMPLE
  • 51. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 NEW IN KILO
  • 52. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 API Microversions ● Compute API V2 has been in place for some time, was to be superseded by V3. ● Determined that implementing new major version of API would be too difficult: ○ User impact. ○ Developer overhead. ● V2 is extended by adding “extensions”, lots of them.
  • 53. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 API Microversions ● Microversions aim to: ○ Make it possible to evolve the API incrementally. ○ Provide backwards compatibility for REST API users. ○ Improve code cleanliness to make doing the “right thing” easier.
  • 54. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 API Microversions ● Use a single monotonic counter of the form X.Y where: ○ X will only be changed due to a significant backwards incompatible API change is made. Expected to be rarely never incremented. ○ Y will be changed when making any change to the API. Whether such a change is backwards compatible or not will be reflected via documentation. ● Client will specify the version it supports, e.g.: ○ X-OpenStack-Nova-API-Version: 2.114
  • 55. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 API Microversions ● Initial implementation in Kilo: ○ v2.0 API code still used to serve v2.0 API requests. ■ Plan is in Liberty v2.1 API code will serve both v2.0 and v2.1. ○ v2.0 API is frozen: ■ All new features will be added to v2.1 using microversions. ○ python-novaclient does not yet support v2.1.
  • 56. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 vCPU Pinning ● Allows assignment of vCPU cores, and the associated emulator threads, to dedicated pCPU cores. ● Administrator defines host(s) that accept dedicated resourcing requests, scheduler places guests on them. ○ Reserve cores for guests using kernel isolcpus and nova vcpu_pin_set ○ Create flavor and matching host aggregates. ● Scheduler and agent work together to assign appropriate CPU cores for vCPUs.
  • 57. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Huge Pages ● Huge pages allow the use of larger page sizes (2M, 1 GB) increasing CPU TLB cache efficiency. ○ Backing guest memory with huge pages allows predictable memory access, at the expense of the ability to over-commit. ○ Different workloads extract different performance characteristics from different page sizes - bigger is not always better! ● Administrator reserves large pages during compute node setup and creates flavors to match: ○ hw:mem_page_size=large|small|any|2048|1048576 ● User requests using flavor or image properties.
  • 58. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 I/O (PCIe) based NUMA Scheduling ● Extends Libvirt driver to capture NUMA locality of PCI devices on the host. ● Extends NUMATopologyFilter to take into account locality of any PCI devices being passed to the guest.
  • 59. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Standalone EC2 API ● Aims to: ○ Implement AWS Virtual Private Cloud API. ○ Provide the EC2 API as a standalone service. ○ Ultimately replace/supersede current Nova EC2 implementation. ● Current state: ○ Recent 0.1.0 release: ■ https://launchpad.net/ec2-api/trunk/0.1.0 ○ In addition to Nova EC2 API coverage includes: ■ VPC API ■ Filtering ■ Tags ■ Paging
  • 60. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 Storage Enhancements ● Consistent snapshots using qemu-guest-agent ● Libvirt driver support for KVM/QEMU built-in iSCSI initiator - allow direct attachment of volumes to guests. ● vCenter driver support for vSAN datastores. ● vCenter driver support for ephemeral disks. ● Libvirt and Hyper-V driver support for SMB based volumes.
  • 61. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 New In-tree Driver Support ● Libvirt driver support for IBM System Z (KVM) ● Libvirt driver support for Parallels Cloud Server
  • 62. OPENSTACK COMPUTE 101OPENSTACK COMPUTE 101 THANK YOU @xsgordon http://www.slideshare.net/sgordon2/