horizon

Openstack Juno新版功能

旧街凉风 提交于 2019-12-02 04:51:31
openstack维持了六个月发布版本的周期。10月16日Openstack将发布Juno版本,包含几个新的项目以及大量新的特性。本文不做全面介绍,对新功能只是浅尝辄止。 Nova 作为Openstack的核心功能,Nova需要保持稳定。但这并不意味着更新缓慢,在Juno版本中有重大的变化。 NFV:Network Function Virtualization网络功能虚拟化是一个非常重要的概念,可以发现有很多个体开发者和大量公司在讨论NFV Live Upgrades:在线升级在Icehouse中首次介绍,但仍然有点麻烦。在Juno中将发现在线升级有重大提升。 Ceilometer Ceilometer是openstack的计量测量组件。 Speed:在过去的几个开发周期中,Ceilometer开发团队意识到该项目中几个拙劣的设计,而在本开发周期花费了大量时间去偿还技术债务以提升Ceilometer的性能。因此你将发现Ceilometer将变得更有效,更快。 Heat Heat是openstack的编排组件,用来自动创建或者拆卸基础设施以响应时间或者改编事件。 Rollback:在前面版本中,如果Heat部署失败,不会回退,并且需要手工删除。在Juno中很容易回退文件部署,保证所有的碎片都被清除。 Create resouces without being admin

laravel中Horizon简单介绍适合于redis操作队列

ぐ巨炮叔叔 提交于 2019-12-02 04:49:35
简单介绍 horizon为您的laravel驱动的redis队列提供了漂亮的仪表板和代码驱动配置。Horizon允许您轻松监视队列系统的关键度量,如作业吞吐量、运行时和作业失败。 您的所有工作机配置都存储在一个简单的配置文件中,允许您的配置保留在源代码管理中,以便整个团队可以进行协作。 注意:由于它使用异步进程信号,horizon需要php 7.1+ 您可以使用composer将horizon安装到您的laravel项目中: composer require laravel/horizon 安装Horizon后,使用“供应商:发布Artisan”命令发布其资源: php artisan vendor:publish --provider="Laravel\Horizon\HorizonServiceProvider" 配置 发布horizon的资产后,它的主配置文件将位于config/horizon.php。此配置文件允许您配置工作机选项,并且每个配置选项都包含其用途的描述,因此请确保彻底浏览此文件。 平衡期权 Horizon允许您从三种平衡策略中进行选择:简单( simple) 、自动( auto) 和错误 ( false) 。默认情况下,简单策略在进程之间均匀地分割传入的作业: 'balance' = > 'simple' ,

RethinkDB / Horizon: Integration with Express: Access Horizon data server-side?

孤者浪人 提交于 2019-12-01 06:32:16
There is an example of express integration on the Horizon.io Github as shown here: Horizon express server example I understand what this example is showing: if you have an existing Express server you can add a horizon server, which exposes a route client-side so they can connect to horizon server via websockets. However, is there is any way for the express part of the server to also access the collections in Horizon? For example, to do things like local authentication, CRON jobs, or have API endpoints that accept PUT/POST requests. From what I understand, a direct connection to the RethinkDB

RethinkDB / Horizon: Integration with Express: Access Horizon data server-side?

强颜欢笑 提交于 2019-12-01 04:38:36
问题 There is an example of express integration on the Horizon.io Github as shown here: Horizon express server example I understand what this example is showing: if you have an existing Express server you can add a horizon server, which exposes a route client-side so they can connect to horizon server via websockets. However, is there is any way for the express part of the server to also access the collections in Horizon? For example, to do things like local authentication, CRON jobs, or have API

horizon部署

萝らか妹 提交于 2019-11-27 10:59:28
第一步:下载dashboard服务 [root@zxw6 ~]# yum install openstack-dashboard -y 第二步:配置文件/etc/openstack-dashboard/local_settings [root@zxw6 ]# vim /etc/openstack-dashboard/local_settings OPENSTACK_HOST = " zxw6" OPENSTACK_KEYSTONE_URL = "http://%s:5000/ v3" % OPENSTACK_HOST OPENSTACK_KEYSTONE_DEFAULT_ROLE = "user " ALLOWED_HOSTS = ['horizon.example.com', 'localhost ','* '] SESSION_ENGINE = 'django.contrib.sessions.backends.cache' CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', 'LOCATION': 'zxw6:11211', }, } OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT = True OPENSTACK