Meeting time:   2015.August.11th 1:00~2:00

Chairperson:    Serg Melikyan, PTL from Mirantis

Meeting summary:

1.Migrating to yaql 1.0 status.

   PIC:       Stan Lagun

   Status:   New yaql engine should be fully functional at the moment.     

      The yaql rc2 will be released at once.

      In the requirements.txt of Murano, the community decide to pin yaql==1.0.0rc2.

      Let folks to test with rc2 and if everything work fine,

      we will make rc2 to be released and merged in Murano.

   Action:   Kirill Zaitsev will write an email to encourage murano team and murano users to test new yaql.

 Links:   https://review.openstack.org/#/c/211678

2.Glance Artifact Repository(glance v3) transition status.

PIC:       Alexander Tivelkov

 What's Glance Artifact Repository?

      Artifact Extend Glance's functionality to store not only the VM images but any other artifacts, i.e binary objects accompanied with composite metadata.

      Glance should become a catalog of such artifacts, providing capabilities to store, search and retrieve their artifacts, their metadata and associated binary objects.

      VM images are one example of artifacts, but artifacts could also be Murano Application Packages, Mistral Workbooks, Heat templates or Solum Plan Files.

      Each type of artifact corresponds to its own plug-in (module), which defines the artifact’s custom metadata fields, BLOB kinds, importing logic, and so on.

      Users will work with artifacts through a unified interface similar to the one used for Nova images.

      Each installed module will have a name correspondent with the REST API.

      For example, a Murano application catalog (apps) could be /v3/artifacts/apps.

Action: There is a bunch of bugs in glance reported related to Artifact filtering by version,

      Ativelkov is working on bugs , and plugin for Murano is published.

      The code in python-muranoclient has to wait till the fixes are in place.

      (till release an experimatal version of python-glanceclient with v3 support)

      The plan is to close the glance bugs later this week, so we may proceed.

      We'll have to add artifacts support to python-muranoclient afterwards.

 Link:   https://www.mirantis.com/blog/openstack-glances-artifacts/

3.Research Oslo.log library 1.8 

Status:  TRACE is a logging keyword that is understood by most logging tools.

      OpenStack has repurposed this in the past to not be TRACE logging

      but instead be used whenever a Stacktrace was dumped.

      Stack traces should be logged at ERROR level (they currently aren't).

      TRACE should be defined as log level 5 in python (which is lower than DEBUG),

      and LOG.trace support have already be added to Oslo.log library 1.8.

      LOG.trace can then be used for deep tracing of code.

      The log level is like this:

      Critical > Error > Warning > Info > Debug > Trace

 Link:   https://github.com/openstack/openstack-specs/blob/master/specs/log-guidelines.rst

Murano Weekly Meeting 2015.08.11的更多相关文章

  1. Murano Weekly Meeting 2015.08.04

    Meeting time: 2015.August.4th 1:00~2:00 Chairperson:  Serg Melikyan, PTL from Mirantis Meeting summa ...

  2. Murano Weekly Meeting 2015.08.25

    Meeting time: 2015.August.25th 1:00~2:00 Chairperson:  Serg Melikyan, PTL from Mirantis Meeting summ ...

  3. Murano Weekly Meeting 2015.08.18

    Meeting time: 2015.August.18th 1:00~2:00 Chairperson:  Nikolay Starodubtsev, from Mirantis Meeting s ...

  4. Murano Weekly Meeting 2015.11.11

    Meeting time: 2015.November.11th 1:00~2:00 Chairperson:  Serg Melikyan, PTL from Mirantis Meeting su ...

  5. Murano Weekly Meeting 2015.11.04

    Meeting time: 2015.November.4th 1:00~2:00 Chairperson:  Serg Melikyan, PTL from Mirantis Meeting sum ...

  6. Murano Weekly Meeting 2015.09.08

    Meeting time: 2015.September.8th 1:00~2:00 Chairperson:  Serg Melikyan, PTL from Mirantis Meeting su ...

  7. Murano Weekly Meeting 2015.09.22

    Meeting time: 2015.September.22th 1:00~2:00 Chairperson:  Serg Melikyan, PTL from Mirantis Meeting s ...

  8. Murano Weekly Meeting 2015.09.15

    Meeting time: 2015.September.15th 1:00~2:00 Chairperson:  Serg Melikyan, PTL from Mirantis Meeting s ...

  9. Murano Weekly Meeting 2015.09.01

    Meeting time: 2015.September.1st 1:00~2:00 Chairperson:  Nikolay Starodubtsev, from Mirantis Meeting ...

随机推荐

  1. JQuery UI Draggable插件使用说明文档

    JQuery UI Draggable插件用来使选中的元素可以通过鼠标拖动.Draggable的元素受css: ui-draggable影响, 拖动过程中的css: ui-draggable-drag ...

  2. DefaultHttpClient 在oppo A57手机上网络请求报错

    使用的库是xutils2.6.14,oppo A57 上调试的时候,请求接口时报错,但是其他手机都正常: com.lidroid.xutils.exception.HttpException: jav ...

  3. java24种设计模式

    一.设计模式定义 设计模式(Design Pattern)是一套被反复使用.多数人知晓的.经过分类编目的.代码设计经验的总结,使用设计模式是为了可重用代码.让代码更容易被他人理解并且保证代码可靠性. ...

  4. 图像特征提取之Haar特征

    1.Haar-like特征 Haar-like特征最早是由Papageorgiou等应用于人脸表示,Viola和Jones在此基础上,使用3种类型4种形式的特征. Haar特征分为三类:边缘特征.线性 ...

  5. MariaDB之SQL语句基础

    数据库组件: 数据库:database 表: table 索引:index 视图:view 用户:user 权限:privileges 存储过程:procedure 存储函数:function 触发器 ...

  6. asp遍历前端的所有控件

    //遍历ID为Panel1的panel里的所有label控件 foreach (Control ctl in this.Panel1.Controls) { //判断类型为Label的 if (ctl ...

  7. vue_cli下开发一个简单的模块权限系统之展现数据

    这个页面是用户列表:userList就是第二张截图中的data里面的userList vue中只要改变存放数据的载体就会实现页面改变,mounted的意思是页面加载时执行这里面的函数,我们需要在页面加 ...

  8. Python脚本开发练习

    打印乘法口诀表 #!/usr/bin/python #coding=utf-8 print("Hello,World....") print("你好,欢迎来到Python ...

  9. BFS【bzoj1667】: [Usaco2006 Oct]Cows on Skates滑旱冰的奶牛

    1667: [Usaco2006 Oct]Cows on Skates滑旱冰的奶牛 Description 经过跟Farmer John长达数年的谈判,奶牛们终于如愿以偿地得到了想要的旱冰鞋.农场上大 ...

  10. Leetcode 70. Climbing Stairs 爬楼梯 (递归,记忆化,动态规划)

    题目描述 要爬N阶楼梯,每次你可以走一阶或者两阶,问到N阶有多少种走法 测试样例 Input: 2 Output: 2 Explanation: 到第二阶有2种走法 1. 1 步 + 1 步 2. 2 ...