Thursday, 2013-12-05

*** openstack has joined #openstack-ceilometer02:17
*** openstackgerrit has joined #openstack-ceilometer02:24
*** llu_linux is now known as llu02:41
openstackgerritFengqian.gao proposed a change to openstack/ceilometer: Add pagination support for sqlalchemy database  https://review.openstack.org/3545405:32
openstackgerritFengqian.gao proposed a change to openstack/ceilometer: Change pagination related methods of mongodb and db2  https://review.openstack.org/4186905:32
openstackgerritJenkins proposed a change to openstack/ceilometer: Imported Translations from Transifex  https://review.openstack.org/6015406:04
*** SergeyLukjanov has joined #openstack-ceilometer07:12
*** SergeyLukjanov has quit IRC07:41
*** SergeyLukjanov has joined #openstack-ceilometer07:48
openstackgerritChangBo Guo proposed a change to openstack/ceilometer: Don't need session.flush in context managed by session  https://review.openstack.org/6016607:54
*** SergeyLukjanov has quit IRC08:36
*** eglynn-afk has joined #openstack-ceilometer09:03
openstackgerritMehdi Abaakouk proposed a change to openstack/ceilometer: [WIP] replace oslo.rpc by oslo.messaging  https://review.openstack.org/5745709:29
openstackgerritLianhao Lu proposed a change to openstack/ceilometer: Fixed various unit test cases for alarms  https://review.openstack.org/6018609:35
openstackgerritMehdi Abaakouk proposed a change to openstack/ceilometer: [WIP] replace oslo.rpc by oslo.messaging  https://review.openstack.org/5745709:49
*** eglynn-afk is now known as eglynn10:16
*** anteaya has joined #openstack-ceilometer10:59
*** yfujioka has quit IRC12:27
*** thomasem has joined #openstack-ceilometer12:37
*** nsaje has joined #openstack-ceilometer12:45
*** gordc has joined #openstack-ceilometer13:06
openstackgerritMehdi Abaakouk proposed a change to openstack/ceilometer: Replace oslo.rpc by oslo.messaging  https://review.openstack.org/5745713:09
silehtjd__, if you can take a look to the oslo.messaging stuffs13:13
jd__sure13:13
silehtjd__, https://review.openstack.org/#/c/57457/ and https://review.openstack.org/#/q/status:open+project:openstack/oslo.messaging+branch:master+topic:bp/notification-subscriber-server,n,z13:13
silehtthx :)13:14
*** SergeyLukjanov has joined #openstack-ceilometer13:26
*** gordc has quit IRC13:26
thomasemHey everyone!13:32
thomasemHey, jd__, eglynn: this patch set appears ready to go, could we get some eyes on it? Wanting to get this piece in soon for the dependent patch set that's about to be up for review. :) https://review.openstack.org/#/c/42713/?13:42
jd__thomasem: definitely on my too long todo list :(13:43
eglynnthomasem: I'll try to take a look at it before EoD13:43
jd__probably not today since I'm conferencing13:43
thomasemjd__, eglynn: Thanks! I appreciate the help.13:44
thomasemjd__, Understandable13:44
*** nprivalova has joined #openstack-ceilometer13:55
nprivalovajd__, hi! I have a question for you about several instances of collector in perf tests. ping me if you have a time13:56
jd__nprivalova: likely not today I think, but you can mail me if you want or we can try to chat tomorrow :)13:57
nprivalovajd__, ok. I'll try to ask someone else :) And if no result will mail13:58
jd__sure, I'm interested :)13:58
nprivalovaguys, I have the lab with 3 controllers  and 200 computes. There are HA-mysql installation in controllers. I installed ceilometer only on one controller and on all computes and I believe that if I install ceilometer on 2 controllers more performance will be better. As I understand I may start 3 instances of collector instead of 1. Am I right?14:04
thomasemCan you clarify this statement? "I installed ceilometer only on one controller and on all computes?"?14:12
thomasemAs long as the collectors are hitting the same queue (so it round-robins) I think that's the intended way for it to work.14:12
thomasemby hitting I mean consuming from14:12
nprivalovaso I have ceilometer-api, ceilometer-agent-central, ceilometer-collector and  ceilometer-agent-compute running on one collector and  ceilometer-agent-compute on all computes14:12
thomasemGotcha14:12
nprivalovalooks like if I run ceilometer-collector on 2 controllers more they start to process more messages from queue and DB will be loaded more14:12
thomasemYeah, the DB needs to be able to keep up14:12
thomasemwith multiple connections14:12
thomasemif you have 10 subsequent messages on the queue, and 3 collectors, this is the intended spread, I think:14:12
thomasemceilometer_01 - 1,4,7,1014:12
thomasemcollector_02 - 2,5,814:12
thomasemcollector_03 - 3,6,914:12
thomasemsorry that first ceilometer_01 should be collector_0114:12
nprivalovayep, I believe that db configured to work with multiple connections. Galera is used there14:12
thomasemCool. The addition of collectors (assuming there are always unconsumed messages in the queue) will likely increase the load on your DB, so you could shift the bottle-neck.14:12
thomasemif there is one14:12
thomasem:)14:12
thomasemBut at some point the MQ service can't go any faster too14:12
thomasemAnywho, to answer the question, I believe the collector is designed to share a queue with other collectors to process more messages faster.14:13
nprivalovaI just want to understand may I start to work on bp about "make getting the data from db faster". On the HK summit there was a lot of discussions about  MQ bottleneck. So I was confused about this fact. "Should I start improving "getting" performance before resolving this bottleneck" - that is my concern14:26
nprivalovanow I've made a test with 200 instances up and interval 5 sec polling. It worked ok, about 9 000 000 entries in db. Today I'm planning to run at least 1000 instances. But I didn't have alarms and events14:27
thomasemAh14:59
thomasemSo, nprivalova, you might want to have a look at some of the DB performance testing we're doing. We are looking to scale to 1,000,000 messages/day14:59
thomasemhttps://etherpad.openstack.org/p/ceilometer-data-store-scale-testing15:00
thomasemSo we're taking a look at the drivers against various data stores and seeing what we come up with. This goes directly to the DB layer, so it's not looking at the collector speed. Though, I am interested about bottlenecks further up the stack.15:00
thomasemThe speed of my driver won't mean squat without the MQ and the collector keeping up. :)15:02
thomasemcollector(s)15:02
nprivalovathomasem, I know about your investigations. My purpose is mostly MQ performance. DB performance is really interesting piece so I hope you will get interesting results :) btw, do you measure 'write-spead'? Because 'read-spead' depends on implementation very much15:05
thomasemAll we're testing right now is write-speed.15:06
thomasemWe're going to worry about read-speed after that (which is lesser priority than writes).15:06
thomasemSince writes HAVE to keep up with the flow of messages, queries can take a little more time.15:07
thomasemnprivalova, Cool. I wasn't sure you were. :)15:07
thomasemnprivalova, pretty much, I'm taking a look at various deployment configurations and backends and just hammering it with millions of generated events (from a pool, pseudo-random) and getting RAM, disk I/O, read speed, CPU utilization, etc.15:09
thomasemto find out what needs to be tuned15:09
openstackgerritAlexei Kornienko proposed a change to openstack/ceilometer: Added profiler notification plugin  https://review.openstack.org/6026215:14
openstackgerritAlexei Kornienko proposed a change to openstack/ceilometer: Added profiler notification plugin  https://review.openstack.org/6026215:38
*** gordc has joined #openstack-ceilometer15:44
*** SergeyLukjanov has quit IRC15:54
*** kwhitney has quit IRC16:08
openstackgerritJohn Herndon proposed a change to openstack/ceilometer: Event Storage Layer  https://review.openstack.org/5730416:12
*** gordc has quit IRC16:18
*** nprivalova has quit IRC16:22
*** jdob has joined #openstack-ceilometer16:28
*** SergeyLukjanov has joined #openstack-ceilometer16:30
*** SergeyLukjanov is now known as _SergeyLukjanov16:31
*** _SergeyLukjanov is now known as SergeyLukjanov16:31
*** SergeyLukjanov is now known as _SergeyLukjanov16:32
*** _SergeyLukjanov is now known as SergeyLukjanov16:33
*** gordc has joined #openstack-ceilometer16:33
*** litong has joined #openstack-ceilometer16:40
*** shadower has joined #openstack-ceilometer16:42
shadoweris there a documentation describing how to install ceilometer in a multi-node setup? I checked docs.openstack.org's architecture.html and install/manual.html but I'm still unclear where each service goes16:44
shadowere.g. if I have a bunch of nova compute nodes and a single node with keystone, scheduler, the databases, etc.16:44
*** litong has quit IRC16:44
shadowerI'd want to put the compute agent onto each compute node and the ceilometer-api on the controller node16:44
shadowerbut what about the notification agent, collector and all the other services?16:44
*** litong has joined #openstack-ceilometer16:46
*** kwhitney has joined #openstack-ceilometer17:02
*** herndon has joined #openstack-ceilometer17:11
openstackgerritlitong01 proposed a change to openstack/ceilometer: add more test cases to improve the test code coverage #5  https://review.openstack.org/4980218:06
openstackgerritlitong01 proposed a change to openstack/ceilometer: test code should be excluded from test coverage summary  https://review.openstack.org/6030918:32
*** thomasm_ has joined #openstack-ceilometer19:13
*** thomasem has quit IRC19:14
*** eglynn has quit IRC19:41
*** eglynn has joined #openstack-ceilometer20:20
openstackgerritMonsyne Dragon proposed a change to openstack/ceilometer: Add configuration-driven conversion to Events  https://review.openstack.org/4271320:41
dragondmgordc: Thanks for the review. I've uploaded a new patchset fixing your concerns. If you think we really need to add a new config group for those options I can add that too.20:44
*** eglynn has quit IRC20:45
herndongordc: not sure what the error is with trait types... gates didn't catch anything. Couldn't we just fix the problem instead of reverting the whole patch??21:11
*** eglynn has joined #openstack-ceilometer21:14
gordcwhoops. didn't see messages.21:51
gordcdragondm: i'm ok with not having config group... i'll +2 once jenkins pass21:51
gordcherndon: i'm not sure what error jd__ sees. i'm ok with your patch though... just want to see if there was a reason for revert.21:52
herndonthe event patch can't go in if trait types is there :/21:53
dragondmgordc: Cool. I had to recheck on jenkins (looks like tempest is failing with a spurious glance issue) Hopefully that will go through soon.21:53
herndonI commented on the review. I'm really surprised there is a problem as I tested the migrations with data in the db, and tested up->down->up migrations. This stuff is tricky :(.21:54
gordcherndon: i didn't see any issues either when i tested with data. (saw issues elsewhere but not related to your patch)21:55
gordcdragondm: yeah, i was going to recheck the patch. you beat me to it :)21:55
dragondmHeh. I'm quick. Perhaps a little too quick if the typos in my documentation are any indication.  ( brain.speed > finger.speed ) :P21:56
*** SergeyLukjanov has quit IRC21:58
gordcaside from typos the docs were really good though. i would've avoided your 2000 line patch if your docs weren't so damn clear.lol21:59
*** SergeyLukjanov has joined #openstack-ceilometer21:59
dragondmHeh. Thanks. Yah, since I'm basically defining a mini DSL, I figured folks would need to know what to do with it :>  I actually wrote much of the documentation when I wrote the blueprint for the feature.22:01
*** jdob has quit IRC22:14
*** prad has joined #openstack-ceilometer22:16
*** litong has quit IRC22:17
openstackgerritEoghan Glynn proposed a change to openstack/ceilometer: Correct subscriber reconnection logic on QPID broker restart  https://review.openstack.org/6037122:27
*** thomasm_ has quit IRC22:29
*** SergeyLukjanov has quit IRC22:37
*** SergeyLukjanov has joined #openstack-ceilometer22:38
*** SergeyLukjanov has quit IRC22:42
*** openstackgerrit has quit IRC22:48
*** openstackgerrit has joined #openstack-ceilometer22:48
*** eglynn has quit IRC22:54
*** robbybb111 has left #openstack-ceilometer22:55
*** SergeyLukjanov has joined #openstack-ceilometer23:11
*** SergeyLukjanov has quit IRC23:18
*** prad has quit IRC23:25
*** asalkeld has joined #openstack-ceilometer23:43
*** openstackgerrit has quit IRC23:47
*** openstackgerrit has joined #openstack-ceilometer23:47
*** herndon has quit IRC23:52

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!