Re: [Ceph-qa] Bug #13191 CentOS 7 multipath test fail because libdevmapper version must be >= 1.02.89

2015-12-15 Thread Loic Dachary
[redirecting to ceph-devel]. Hi, On 14/12/2015 21:20, Abe Asraoui wrote: > Hi All, > > Does anyone know if this bug # 13191 has been resolved ?? http://tracker.ceph.com/issues/13191 has not been resolved. Could you please comment on it ? A short explanation about why you need it resolved will

Re: Compiling for FreeBSD, Clang refuses to compile a test

2015-12-08 Thread Willem Jan Withagen
dumped) FAIL: unittest_on_exit PASS: unittest_readahead PASS: unittest_tableformatter PASS: unittest_bit_vector FAIL: ceph-detect-init/run-tox.sh FAIL: test/erasure-code/test-erasure-code.sh FAIL: test/erasure-code/test-erasure-eio.sh -- To unsubscribe from this list: send the line "unsubscribe

Re: Compiling for FreeBSD, Clang refuses to compile a test

2015-12-07 Thread Willem Jan Withagen
On 5-12-2015 14:02, Xinze Chi (信泽) wrote: I think "const int k = 12; const int m = 4" would pass the compile? Are these sizes big enough?? --WjW 2015-12-05 20:56 GMT+08:00 Willem Jan Withagen <w...@digiware.nl>: src/test/erasure-code/TestErasureCodeIsa.cc contains sn

Re: Compiling for FreeBSD, Clang refuses to compile a test

2015-12-07 Thread Michal Jarzabek
Xinze Chi (信泽) wrote: >> >> I think "const int k = 12; const int m = 4" would pass the compile? > > > > Are these sizes big enough?? > > --WjW > >> 2015-12-05 20:56 GMT+08:00 Willem Jan Withagen <w...@digiware.nl>: >>> >>&g

Re: Compiling for FreeBSD, Clang refuses to compile a test

2015-12-07 Thread Willem Jan Withagen
On 7-12-2015 23:19, Michal Jarzabek wrote: Hi Willem, If you look at line 411 and 412 you will have variables k and m defined. They are not changed anywhere(I think), so the sizes must be big enough. As Xinze mentioned just add const in front of it: const int k = 12 const int m = 4 and it

Re: Compiling for FreeBSD, Clang refuses to compile a test

2015-12-05 Thread Willem Jan Withagen
src/test/erasure-code/TestErasureCodeIsa.cc contains snippets, function definition like: buffer::ptr enc[k + m]; // create buffers with a copy of the original data to be able to compare it after decoding { for (int i = 0; i < (k + m); i++) { Clang refuses because the [k+m] s

Re: Compiling for FreeBSD, Clang refuses to compile a test

2015-12-05 Thread 信泽
I think "const int k = 12; const int m = 4" would pass the compile? 2015-12-05 20:56 GMT+08:00 Willem Jan Withagen <w...@digiware.nl>: > src/test/erasure-code/TestErasureCodeIsa.cc > > contains snippets, function definition like: > > buffer::ptr enc[k + m]; &g

test

2015-11-11 Thread Somnath Roy
Sorry for the spam , having some issues with devl -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: test

2015-11-11 Thread Mark Nelson
whatever you did, it appears to work. :) On 11/11/2015 05:44 PM, Somnath Roy wrote: Sorry for the spam , having some issues with devl -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: RE: [performance] why rbd_aio_write latency increase from 4ms to 7.3ms after the same test

2015-11-02 Thread hzwulibin
Hi, Thank you, that make sense for testing, but i'm afraid not in my case. Even i test on the volume that already test many times, the IOPS will not growing up again. Yeah, i mean, this VM is broken, IOPS of the VM will never growing up.. Thanks

Re: RE: [performance] why rbd_aio_write latency increase from 4ms to 7.3ms after the same test

2015-11-02 Thread hzwulibin
Hi, Thank you, that make sense for testing, but i'm afraid not in my case. Even i test on the volume that already test many times, the IOPS will not growing up again. Yeah, i mean, this VM is broken, IOPS of the VM will never growing up.. Thanks

aarch64 test builds for trusty now available

2015-09-24 Thread Sage Weil
We now have a gitbuilder up and running building test packages for arm64 (aarch64). The hardware for these builds has been graciously provided by Cavium (thank you!). Trusty aarch64 users can now install packages with ceph-deploy install --dev BRANCH HOST and build results are visible

test

2015-09-22 Thread wangsongbo
test -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH 00/39] drop null test before destroy functions

2015-09-14 Thread SF Markus Elfring
tend an other SmPL script? Related topic: scripts/coccinelle/free: Delete NULL test before freeing functions https://systeme.lip6.fr/pipermail/cocci/2015-May/001960.html https://www.mail-archive.com/cocci@systeme.lip6.fr/msg01855.html > If these changes are OK, I will address the remainder later

Re: [PATCH 33/39] rbd: drop null test before destroy functions

2015-09-14 Thread Ilya Dryomov
On Sun, Sep 13, 2015 at 3:15 PM, Julia Lawall <julia.law...@lip6.fr> wrote: > Remove unneeded NULL test. > > The semantic patch that makes this change is as follows: > (http://coccinelle.lip6.fr/) > > // > @@ expression x; @@ > -if (x != NULL) { > \(km

[PATCH 33/39] rbd: drop null test before destroy functions

2015-09-13 Thread Julia Lawall
Remove unneeded NULL test. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ expression x; @@ -if (x != NULL) { \(kmem_cache_destroy\|mempool_destroy\|dma_pool_destroy\)(x); x = NULL; -} // Signed-off-by: Julia Lawall <julia.law...@lip6

[PATCH 00/39] drop null test before destroy functions

2015-09-13 Thread Julia Lawall
that I found easy to compile test. If these changes are OK, I will address the remainder later. --- arch/x86/kvm/mmu.c |6 -- block/bio-integrity.c |7 -- block/bio.c|7 -- block/blk

Re: How to save log when test met bugs

2015-09-09 Thread Loic Dachary
[adding ceph-devel as this may also be an inconvenient to others] On 09/09/2015 10:23, Ma, Jianpeng wrote:> Hi Loic: > Today, I run test/cephtool-test-mds.sh, because my code has bug cause osd > down. I only from the screen saw "osd o down " and so on. But I don't >

Test

2015-09-07 Thread Wukongming
Test - 本邮件及其附件含有杭州华三通信技术有限公司的保密信息,仅限于发送给上面地址中列出 的个人或群组。禁止任何其他人以任何形式使用(包括但不限于全部或部分地泄露、复制、 或散发)本邮件中的信息。如果您错收了本邮件,请您立即电话或邮件通知发件人并删除本 邮件! This e-mail and its attachments

test

2015-09-06 Thread changtao381
test -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: My test on newstore show much poorer performance than filestore

2015-08-27 Thread Sage Weil
On Thu, 27 Aug 2015, wenjunh wrote: Hi I have a try of the newstore to explore its performance, which shows its performance is much poorer than filestore. I test my cluster using fio, Here is the comparison of the two store with randread randwrite scenario: rw=randread, bs=4K, numjobs

My test on newstore show much poorer performance than filestore

2015-08-27 Thread wenjunh
Hi I have a try of the newstore to explore its performance, which shows its performance is much poorer than filestore. I test my cluster using fio, Here is the comparison of the two store with randread randwrite scenario: rw=randread, bs=4K, numjobs=1: newstore: bw=2280.7KB/s, iops=570

Re: test/run-rbd-unit-tests.sh : pure virtual method called

2015-08-05 Thread Loic Dachary
] TestLibRBD.ObjectMapConsistentSnap using new format! test/librbd/test_librbd.cc:2790: Failure Value of: passed Actual: false Expected: true [ FAILED ] TestLibRBD.ObjectMapConsistentSnap (396 ms) [--] Global test environment tear-down [==] 98 tests from 6 test cases ran. (10554 ms total) [ PASSED ] 97

Re: Odd QA Test Running

2015-08-03 Thread Haomai Wang
-qa-suite/pull/518) and hope fix this point. On Fri, Jul 31, 2015 at 5:50 PM, Haomai Wang haomaiw...@gmail.com wrote: Hi all, I ran a test suite(http://pulpito.ceph.com/haomai-2015-07-29_11:40:40-rados-master-distro-basic-multi/) and found the failed jobs are failed by 2015-07-29 10:52

Odd QA Test Running

2015-07-31 Thread Haomai Wang
Hi all, I ran a test suite(http://pulpito.ceph.com/haomai-2015-07-29_11:40:40-rados-master-distro-basic-multi/) and found the failed jobs are failed by 2015-07-29 10:52:35.313197 7f16ae655780 -1 unrecognized ms_type 'async' Then I found the failed jobs(like http://pulpito.ceph.com/haomai-2015

[PATCH 06/18] rbd: add write test helper

2015-07-29 Thread mchristi
From: Mike Christie micha...@cs.wisc.edu The next patches add a couple new commands that have write data. This patch adds a helper to combine all the IMG_REQ write tests. Signed-off-by: Mike Christie micha...@cs.wisc.edu --- drivers/block/rbd.c | 15 +-- 1 file changed, 9

test

2015-07-28 Thread Shinobu Kinjo
Please ignore. -- To unsubscribe from this list: send the line unsubscribe ceph-devel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: 9.0.2 test/perf_local.cc on non-x86 architectures

2015-07-24 Thread kefu chai
On Wed, Jul 22, 2015 at 12:34 AM, Deneau, Tom tom.den...@amd.com wrote: I was trying to do an rpmbuild of v9.0.2 for aarch64 and got the following error: test/perf_local.cc: In function 'double div32()': test/perf_local.cc:396:31: error: impossible constraint in 'asm

9.0.2 test/perf_local.cc on non-x86 architectures

2015-07-21 Thread Deneau, Tom
I was trying to do an rpmbuild of v9.0.2 for aarch64 and got the following error: test/perf_local.cc: In function 'double div32()': test/perf_local.cc:396:31: error: impossible constraint in 'asm' cc); Probably should have an if defined (__i386__) around it. -- Tom

Re: Block storage performance test tool - would like to merge into cbt

2015-07-14 Thread Konstantin Danilov
. Mark On 07/11/2015 03:02 AM, Konstantin Danilov wrote: Hi all, We(Mirantis ceph team) have a tool for block storage performance test, called 'wally' - https://github.com/Mirantis/disk_perf_test_tool. It has some nice features, like: * Openstack and FUEL integration (can spawn VM

Re: Block storage performance test tool - would like to merge into cbt

2015-07-14 Thread Mark Nelson
in this area as well. Mark On 07/11/2015 03:02 AM, Konstantin Danilov wrote: Hi all, We(Mirantis ceph team) have a tool for block storage performance test, called 'wally' - https://github.com/Mirantis/disk_perf_test_tool. It has some nice features, like: * Openstack and FUEL integration (can

Re: Block storage performance test tool - would like to merge into cbt

2015-07-14 Thread Konstantin Danilov
test, called 'wally' - https://github.com/Mirantis/disk_perf_test_tool. It has some nice features, like: * Openstack and FUEL integration (can spawn VM for tests, gather HW info, etc) * Set of tests, joined into suit, which measures different performnce aspects and creates joined report

Re: Block storage performance test tool - would like to merge into cbt

2015-07-13 Thread Mark Nelson
processing is also something that will be very useful. We have a couple of folks really interested in this area as well. Mark On 07/11/2015 03:02 AM, Konstantin Danilov wrote: Hi all, We(Mirantis ceph team) have a tool for block storage performance test, called 'wally' - https://github.com

Block storage performance test tool - would like to merge into cbt

2015-07-11 Thread Konstantin Danilov
Hi all, We(Mirantis ceph team) have a tool for block storage performance test, called 'wally' - https://github.com/Mirantis/disk_perf_test_tool. It has some nice features, like: * Openstack and FUEL integration (can spawn VM for tests, gather HW info, etc) * Set of tests, joined into suit

RE: unit test for messaging crc32c

2015-06-18 Thread Dałek , Piotr
, but thus far we haven't found any. Is there a unit test which validates this mechanism, e.g. one which intentionally corrupts a Message then confirms that the crc code drops it? I didn't find anything relevant in src/test/, but I'm not too familiar with the framework. Actually, all it takes

unit test for messaging crc32c

2015-06-18 Thread Dan van der Ster
the Ceph messenger crc32c code. We have crc32c enabled (as default), and I expected to find some bad crc messages logged on the clients and/or osds, but thus far we haven't found any. Is there a unit test which validates this mechanism, e.g. one which intentionally corrupts a Message then confirms

Re: unit test for messaging crc32c

2015-06-18 Thread Dan van der Ster
On Thu, Jun 18, 2015 at 9:53 AM, Dałek, Piotr piotr.da...@ts.fujitsu.com wrote: Actually, all it takes is just to disable CRC in configuration on one node (or even daemon). It'll cause to put zeros in CRC fields in all messages sent, triggering CRC check failures cluster-wide (on remaining,

Cache pool on top of ec base pool teuthology test

2015-05-25 Thread Wang, Zhiqiang
We have a bunch of teuthology tests which build cache pool on top of an ec base pool, and do partial object write. This is ok with the current cache tiering implementation. But with proxy write, this won't work. In my testing, the error message is something like below: 2015-05-20

Re: Cache pool on top of ec base pool teuthology test

2015-05-25 Thread Sage Weil
] v0'0 uv0 ondisk = -95 ((95) Operation not supported)) v6 -- ?+0 0xa2e23c0 con 0x9355760 What should we do with these tests? I think the test is fine.. but the OSD should refuse to proxy the write if the base tier won't support the write operation in question. I believe we recently renamed

RE: Cache pool on top of ec base pool teuthology test

2015-05-25 Thread Wang, Zhiqiang
] Sent: Monday, May 25, 2015 11:04 PM To: Wang, Zhiqiang Cc: ceph-devel@vger.kernel.org Subject: Re: Cache pool on top of ec base pool teuthology test On Mon, 25 May 2015, Wang, Zhiqiang wrote: We have a bunch of teuthology tests which build cache pool on top of an ec base pool, and do partial

RE: Cache pool on top of ec base pool teuthology test

2015-05-25 Thread Wang, Zhiqiang
Yes, we can do the force promotion check in init_op_flags, as we did before. -Original Message- From: Sage Weil [mailto:sw...@redhat.com] Sent: Tuesday, May 26, 2015 10:19 AM To: Wang, Zhiqiang Cc: ceph-devel@vger.kernel.org Subject: RE: Cache pool on top of ec base pool teuthology test

RE: Cache pool on top of ec base pool teuthology test

2015-05-25 Thread Sage Weil
@vger.kernel.org Subject: Re: Cache pool on top of ec base pool teuthology test On Mon, 25 May 2015, Wang, Zhiqiang wrote: We have a bunch of teuthology tests which build cache pool on top of an ec base pool, and do partial object write. This is ok with the current cache tiering implementation

[PATCH 2/2] Rados: add test case for CEPH_OP_FLAG_TIER_NOCACHE

2015-05-24 Thread Li Wang
From: Min Chen minc...@ubuntukylin.com Signed-off-by: Min Chen minc...@ubuntukylin.com Reviewed-by: Li Wang liw...@ubuntukylin.com --- src/test/librados/tier.cc | 176 ++ 1 file changed, 176 insertions(+) diff --git a/src/test/librados/tier.cc b/src

[PATCH 5/5] Doc: add temperature related stuff in documents and test scripts

2015-05-21 Thread Li Wang
From: MingXin Liu mingxin...@ubuntukylin.com Signed-off-by: MingXin Liu mingxin...@ubuntukylin.com Reviewed-by: Li Wang liw...@ubuntukylin.com --- doc/dev/cache-pool.rst | 4 doc/man/8/ceph.rst | 12 +--- doc/rados/operations/pools.rst | 7 +++

Re: make check, src/test/ceph-disk.sh fails on Mint

2015-05-16 Thread Michal Jarzabek
Well, I do run it on Linux Mint, but rest of the tests passes without any problems. So I was wondering if there was any simple way to fix this one as well. On Sat, May 16, 2015 at 10:30 PM, David Zafman dzaf...@redhat.com wrote: Is something really broken? Or are you just on an unsupported

Performance test for cache tier

2015-04-20 Thread Ning Yao
set the hit : miss rate for the test. Is there any way to do this? Regards Ning Yao -- To unsubscribe from this list: send the line unsubscribe ceph-devel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: how to test hammer rbd objectmap feature ?

2015-04-15 Thread Alexandre DERUMIER
). - Mail original - De: Josh Durgin jdur...@redhat.com À: aderumier aderum...@odiso.com, ceph-devel ceph-devel@vger.kernel.org Envoyé: Mercredi 15 Avril 2015 01:12:38 Objet: Re: how to test hammer rbd objectmap feature ? On 04/14/2015 12:48 AM, Alexandre DERUMIER wrote: Hi, I would like

how to test hammer rbd objectmap feature ?

2015-04-14 Thread Alexandre DERUMIER
Hi, I would like to known how to enable object map on hammer ? I found a post hammer commit here: https://github.com/ceph/ceph/commit/3a7b28d9a2de365d515ea1380ee9e4f867504e10 rbd: add feature enable/disable support - Specifies which RBD format 2 features are to be enabled when creating -

Re: how to test hammer rbd objectmap feature ?

2015-04-14 Thread Josh Durgin
On 04/14/2015 12:48 AM, Alexandre DERUMIER wrote: Hi, I would like to known how to enable object map on hammer ? I found a post hammer commit here: https://github.com/ceph/ceph/commit/3a7b28d9a2de365d515ea1380ee9e4f867504e10 rbd: add feature enable/disable support - Specifies which RBD

Does crushtool --test --simulate do what cluster should do?

2015-03-23 Thread Robert LeBlanc
I'm trying to create a CRUSH ruleset and I'm using crushtool to test the rules, but it doesn't seem to mapping things correctly. I have two roots, on for spindles and another for SSD. I have two rules, one for each root. The output of crushtool on rule 0 shows objects being mapped to SSD OSDs when

Re: [ceph-users] Ceph Hammer OSD Shard Tuning Test Results

2015-03-02 Thread Mark Nelson
Février 2015 07:10:42 Objet: Re: [ceph-users] Ceph Hammer OSD Shard Tuning Test Results Thanks Mark for the results, default values seem to be quite resonable indeed. I also wonder is cpu frequency can have an impact on latency or not. I'm going to benchmark on dual xeon 10-cores 3,1ghz nodes

Re: [ceph-users] Ceph Hammer OSD Shard Tuning Test Results

2015-03-02 Thread Alexandre DERUMIER
Cc: ceph-devel ceph-devel@vger.kernel.org, ceph-users ceph-us...@lists.ceph.com Envoyé: Lundi 2 Mars 2015 15:39:24 Objet: Re: [ceph-users] Ceph Hammer OSD Shard Tuning Test Results Hi Alex, I see I even responded in the same thread! This would be a good thing to bring up in the meeting

Re: [ceph-users] Ceph Hammer OSD Shard Tuning Test Results

2015-03-02 Thread Vu Pham
-users ceph-us...@lists.ceph.com Envoyé: Lundi 2 Mars 2015 15:39:24 Objet: Re: [ceph-users] Ceph Hammer OSD Shard Tuning Test Results Hi Alex, I see I even responded in the same thread! This would be a good thing to bring up in the meeting on Wednesday. Those are far faster single OSD results than

Re: [ceph-users] Ceph Hammer OSD Shard Tuning Test Results

2015-03-01 Thread Kevin Walker
aderum...@odiso.com À: Mark Nelson mnel...@redhat.com Cc: ceph-devel ceph-devel@vger.kernel.org, ceph-users ceph-us...@lists.ceph.com Envoyé: Vendredi 27 Février 2015 07:10:42 Objet: Re: [ceph-users] Ceph Hammer OSD Shard Tuning Test Results Thanks Mark for the results, default values seem

Re: [ceph-users] Ceph Hammer OSD Shard Tuning Test Results

2015-03-01 Thread Alexandre DERUMIER
: Re: [ceph-users] Ceph Hammer OSD Shard Tuning Test Results Thanks Mark for the results, default values seem to be quite resonable indeed. I also wonder is cpu frequency can have an impact on latency or not. I'm going to benchmark on dual xeon 10-cores 3,1ghz nodes in coming weeks, I'll try

Re: [ceph-users] Ceph Hammer OSD Shard Tuning Test Results

2015-03-01 Thread Alexandre DERUMIER
2015 22:49:23 Objet: Re: [ceph-users] Ceph Hammer OSD Shard Tuning Test Results Can I ask what xio and simple messenger are and the differences? Kind regards Kevin Walker +968 9765 1742 On 1 Mar 2015, at 18:38, Alexandre DERUMIER aderum...@odiso.com wrote: Hi Mark, I found an previous

Re: [ceph-users] Ceph Hammer OSD Shard Tuning Test Results

2015-02-26 Thread Alexandre DERUMIER
: Mark Nelson mnel...@redhat.com À: ceph-devel ceph-devel@vger.kernel.org, ceph-users ceph-us...@lists.ceph.com Envoyé: Jeudi 26 Février 2015 05:44:15 Objet: [ceph-users] Ceph Hammer OSD Shard Tuning Test Results Hi Everyone, In the Ceph Dumpling/Firefly/Hammer SSD/Memstore performance

Is there any documents to describe the architecture of ceph unit test based on gtest

2014-12-09 Thread Nicheal
Hi, all Is any guideline that describes how to run the ceph unit test, and its basic architecture? -- To unsubscribe from this list: send the line unsubscribe ceph-devel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: Is there any documents to describe the architecture of ceph unit test based on gtest

2014-12-09 Thread Gregory Farnum
On Tue, Dec 9, 2014 at 1:50 AM, Nicheal zay11...@gmail.com wrote: Hi, all Is any guideline that describes how to run the ceph unit test, and its basic architecture? You can run them all by executing make check [-j N]. The executables run as part of that are specified in the makefiles

Teuthology smoke test case(tasks/rados_python.yaml) failed on giant

2014-10-20 Thread Aanchal Agrawal
Hi All, I am using giant branch for the development purpose. One of the teuthology smoke test case 'ceph-qa-suite/suites/smoke/basic/tasks/rados_python.yaml' is failing on it. From teuthology.log == 2014-10-14T11:31:09.461 INFO:teuthology.task.workunit.client.0.plana02

Re: Teuthology smoke test case(tasks/rados_python.yaml) failed on giant

2014-10-20 Thread Gregory Farnum
giant branch for the development purpose. One of the teuthology smoke test case 'ceph-qa-suite/suites/smoke/basic/tasks/rados_python.yaml' is failing on it. From teuthology.log == 2014-10-14T11:31:09.461 INFO:teuthology.task.workunit.client.0.plana02

RE: Teuthology smoke test case(tasks/rados_python.yaml) failed on giant

2014-10-20 Thread Aanchal Agrawal
Got it. Thanks for the reply Greg. Regards, Aanchal -Original Message- From: Gregory Farnum [mailto:g...@inktank.com] Sent: Monday, October 20, 2014 10:46 PM To: Aanchal Agrawal Cc: ceph-devel@vger.kernel.org Subject: Re: Teuthology smoke test case(tasks/rados_python.yaml) failed

RE: Is that possible to run teuthology on local test servers

2014-08-14 Thread Sage Weil
in my local setup with a few quick ugly hacks. The main set of changes were, 1. Explicitly named my test systems as plana01 , plana02 plana03. Some of the teuthology code which checks for VM instances does compare with known set/class of machine names 2. In lock_machines() routine

Is that possible to run teuthology on local test servers

2014-08-13 Thread guping
I read the doc on the github teuthology, but still can not figure out how to run teuthology on my local test servers. Any experience? Any advice? -- Thanks, Gu Ping -- To unsubscribe from this list: send the line unsubscribe ceph-devel in the body of a message to majord...@vger.kernel.org More

RE: Is that possible to run teuthology on local test servers

2014-08-13 Thread Vijayendra Shamanna
Hi, I had gotten teuthology to work some time back to a reasonable extent in my local setup with a few quick ugly hacks. The main set of changes were, 1. Explicitly named my test systems as plana01 , plana02 plana03. Some of the teuthology code which checks for VM instances does compare

swift test error interpretation

2014-06-28 Thread Loic Dachary
call last): 2014-06-27T19:37:39.442 INFO:teuthology.orchestra.run.plana64.stderr: File /home/ubuntu/cephtest/swift/test/functional/tests.py, line 104, in setUp 2014-06-27T19:37:39.442 INFO:teuthology.orchestra.run.plana64.stderr: cls.env.setUp() 2014-06-27T19:37:39.442

Recommended teuthology upgrade test

2014-06-27 Thread Loic Dachary
Hi Sam, TL;DR: what oneliner do you recommend to run upgrade tests for https://github.com/ceph/ceph/pull/1890 ? Running the rados suite can be done with : ./schedule_suite.sh rados wip-8071 testing l...@dachary.org basic master plana or something else since ./schedule_suite.sh was

Re: Recommended teuthology upgrade test

2014-06-27 Thread Yuri Weinstein
Loic I don't intent to answer all questions, but some info, see inline On Fri, Jun 27, 2014 at 8:16 AM, Loic Dachary l...@dachary.org wrote: Hi Sam, TL;DR: what oneliner do you recommend to run upgrade tests for https://github.com/ceph/ceph/pull/1890 ? Running the rados suite can be done

Re: Recommended teuthology upgrade test

2014-06-27 Thread Loic Dachary
On 27/06/2014 18:17, Yuri Weinstein wrote: Loic I don't intent to answer all questions, but some info, see inline On Fri, Jun 27, 2014 at 8:16 AM, Loic Dachary l...@dachary.org wrote: Hi Sam, TL;DR: what oneliner do you recommend to run upgrade tests for

Re: [ceph-users] CDS Conferencing Test

2014-06-17 Thread Patrick McGarry
The conference room is open for the next 30 mins to test BlueJeans before CDS next week. https://bluejeans.com/362952863 Best Regards, Patrick McGarry Director Ceph Community, Red Hat http://ceph.com || http://community.redhat.com @scuttlemonkey || @ceph On June 16, 2014 at 7:41:26 PM

CDS Conferencing Test

2014-06-16 Thread Patrick McGarry
Hey Cephers, As you know the next Ceph Developer Summit is fast approaching! (stay tuned for the schedule later in the week)  This summit is going to be utilizing our new video conferencing system “BlueJeans.” In order to ensure that things go smoothly on summit day I’ll be running a few test

Question about the test() function in CrushTester class

2014-01-10 Thread Lipeng Wan
Hi guys, I am now trying to use crushtool.cc to test crush algorithm. First, I build a new crush map using crushtool.cc and all the devices have the maximum weight (0x1). Then I assign different weights to devices using the --weight option and run the test() function. It seems that during

Re: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-12-03 Thread Sylvain Munaut
Hi, What sort of memory are your instances using? I just had a look. Around 120 Mb. Which indeed is a bit higher that I'd like. I haven't turned on any caching so I assume it's disabled. Yes. Cheers, Sylvain -- To unsubscribe from this list: send the line unsubscribe ceph-devel in

RE: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-11-30 Thread James Harper
Hi James, Are you still working on this in any way? Well I'm using it, but I haven't worked on it. I never was able to reproduce any issue with it locally ... In prod, I do run it with cache disabled though since I never took the time to check using the cache was safe in the various

RE: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-11-29 Thread James Harper
...@vger.kernel.org] On Behalf Of Sylvain Munaut Sent: Saturday, 20 April 2013 12:41 AM To: Pasi Kärkkäinen Cc: ceph-devel@vger.kernel.org; xen-de...@lists.xen.org Subject: Re: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p If you have time to write up some lines about steps

Re: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-11-29 Thread Sylvain Munaut
Hi James, Are you still working on this in any way? Well I'm using it, but I haven't worked on it. I never was able to reproduce any issue with it locally ... In prod, I do run it with cache disabled though since I never took the time to check using the cache was safe in the various failure

Re: [PATCH] test/libcephfs: free cmount after tests finishes

2013-11-03 Thread Sage Weil
and release cmount at the end of tests Signed-off-by: Xing Lin xing...@cs.utah.edu --- src/test/libcephfs/readdir_r_cb.cc | 4 1 file changed, 4 insertions(+) diff --git a/src/test/libcephfs/readdir_r_cb.cc b/src/test/libcephfs/readdir_r_cb.cc index 788260b..4a99f10 100644

Re: [PATCH] test/libcephfs: free cmount after tests finishes

2013-11-03 Thread Xing
Hi Sage, Thanks for applying these two patches. I will try to accumulate more fixes and submit pull requests via github later. Thanks, Xing On Nov 3, 2013, at 12:17 AM, Sage Weil s...@inktank.com wrote: Applied this one too! BTW, an easier workflow than sending patches to the list is to

Re: [ceph-users] CephFS test-case

2013-09-06 Thread Sage Weil
-adjusted and it is busy backfilling and evening out the data-distribution across the OSDs. My overall point is that the out-of-the-box defaults don't provide a stable test-deployment (whereas older versions like 0.61 did), and so minimally perhaps ceph-deploy needs to have a stab at choosing

Re: [ceph-users] CephFS test-case

2013-09-06 Thread Mark Nelson
. Agree, it was too few PGs, I have no re-adjusted and it is busy backfilling and evening out the data-distribution across the OSDs. My overall point is that the out-of-the-box defaults don't provide a stable test-deployment (whereas older versions like 0.61 did), and so minimally perhaps ceph-deploy

Re: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-16 Thread Frederik Thuysbaert
Hi Sylvain, I'm not quite sure what u mean, can u give some more information on how I do this? I compiled tapdisk with ./configure CFLAGS=-g, but I'm not sure this is what u meant. Yes, ./configure CFLAGS=-g LDFLAGS=-g is a good start. ... Then once you have a core file, you can use gdb

RE: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-15 Thread James Harper
Hi, I just tested with tap2:aio and that worked (had an old image of the VM on lvm still so just tested with that). Switching back to rbd and it crashes every time, just as postgres is starting in the vm. Booting into single user mode, waiting 30 seconds, then letting the boot

RE: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-15 Thread James Harper
I just had a crash since upgrading to dumpling, and will disable merging tonight. Still crashes with merging disabled. James -- To unsubscribe from this list: send the line unsubscribe ceph-devel in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-14 Thread Frederik Thuysbaert
On 13-08-13 17:39, Sylvain Munaut wrote: It's actually strange that it changes anything at all. Can you try adding a ERROR(HERE\n); in that error path processing and check syslog to see if it's triggered at all ? A traceback would be great if you can get a core file. And possibly compile

Re: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-14 Thread Sylvain Munaut
Hi, I just tested with tap2:aio and that worked (had an old image of the VM on lvm still so just tested with that). Switching back to rbd and it crashes every time, just as postgres is starting in the vm. Booting into single user mode, waiting 30 seconds, then letting the boot continue it

RE: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-14 Thread James Harper
Hi, I just tested with tap2:aio and that worked (had an old image of the VM on lvm still so just tested with that). Switching back to rbd and it crashes every time, just as postgres is starting in the vm. Booting into single user mode, waiting 30 seconds, then letting the boot continue

Re: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-14 Thread Sylvain Munaut
Hi Frederik, A traceback would be great if you can get a core file. And possibly compile tapdisk with debug symbols. I'm not quite sure what u mean, can u give some more information on how I do this? I compiled tapdisk with ./configure CFLAGS=-g, but I'm not sure this is what u meant. Yes,

Re: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-13 Thread Sylvain Munaut
FWIW, I can confirm via printf's that this error path is never hit in at least some of the crashes I'm seeing. Ok thanks. Are you using cache btw ? Cheers, Sylvain -- To unsubscribe from this list: send the line unsubscribe ceph-devel in the body of a message to

RE: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-13 Thread James Harper
FWIW, I can confirm via printf's that this error path is never hit in at least some of the crashes I'm seeing. Ok thanks. Are you using cache btw ? I hope not. How could I tell? It's not something I've explicitly enabled. Thanks James -- To unsubscribe from this list: send the

Re: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-13 Thread Sylvain Munaut
Hi, I hope not. How could I tell? It's not something I've explicitly enabled. It's disabled by default. So you'd have to have enabled it either in ceph.conf or directly in the device path in the xen config. (option is 'rbd cache', http://ceph.com/docs/next/rbd/rbd-config-ref/ ) Cheers,

Re: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-13 Thread Frederik Thuysbaert
in libpthread-2.13.so[7f749d059000+17000] domU: Same as before patch. I would like to add that I have the time to test this, we are happy to help you in any way possible. However, since I am no C developer, I won't be able to do much more than testing. Regards Frederik On 13-08-13 11

Re: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-13 Thread Sylvain Munaut
Hi, I have been testing this a while now, and just finished testing your untested patch. The rbd caching problem still persists. Yes, I wouldn't expect to change anything for caching. But I still don't understand why caching would change anything at all ... all of it should be handled within

RE: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-13 Thread James Harper
-company.com] Sent: Tuesday, 13 August 2013 7:20 PM To: James Harper Cc: Pasi Kärkkäinen; ceph-devel@vger.kernel.org; xen-de...@lists.xen.org Subject: Re: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p Hi, I hope not. How could I tell? It's not something I've explicitly

RE: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-13 Thread James Harper
I think I have a separate problem too - tapdisk will segfault almost immediately upon starting but seemingly only for Linux PV DomU's. Once it has started doing this I have to wait a few hours to a day before it starts working again. My Windows DomU's appear to be able to start normally though.

Re: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-13 Thread Sylvain Munaut
On Wed, Aug 14, 2013 at 1:39 AM, James Harper james.har...@bendigoit.com.au wrote: I think I have a separate problem too - tapdisk will segfault almost immediately upon starting but seemingly only for Linux PV DomU's. Once it has started doing this I have to wait a few hours to a day before

RE: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-13 Thread James Harper
On Wed, Aug 14, 2013 at 1:39 AM, James Harper james.har...@bendigoit.com.au wrote: I think I have a separate problem too - tapdisk will segfault almost immediately upon starting but seemingly only for Linux PV DomU's. Once it has started doing this I have to wait a few hours to a day

RE: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-13 Thread James Harper
On Wed, Aug 14, 2013 at 1:39 AM, James Harper james.har...@bendigoit.com.au wrote: I think I have a separate problem too - tapdisk will segfault almost immediately upon starting but seemingly only for Linux PV DomU's. Once it has started doing this I have to wait a few hours to a

[PATCH] Ceph-qa: change the fsx.sh to support hole punching test

2013-08-13 Thread Li Wang
This patch change the fsx.sh to pull better fsx.c from xfstests site to support hole punching test. Signed-off-by: Yunchuan Wen yunchuan...@ubuntukylin.com Signed-off-by: Li Wang liw...@ubuntukylin.com --- qa/workunits/suites/fsx.sh |6 -- 1 file changed, 4 insertions(+), 2 deletions

Re: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-12 Thread Sylvain Munaut
Hi, tapdisk[9180]: segfault at 7f7e3a5c8c10 ip 7f7e387532d4 sp 7f7e3a5c8c10 error 4 in libpthread-2.13.so[7f7e38748000+17000] tapdisk:9180 blocked for more than 120 seconds. tapdisk D 88043fc13540 0 9180 1 0x You can try generating a core file by

RE: [Xen-devel] Xen blktap driver for Ceph RBD : Anybody wants to test ? :p

2013-08-12 Thread James Harper
tapdisk[9180]: segfault at 7f7e3a5c8c10 ip 7f7e387532d4 sp 7f7e3a5c8c10 error 4 in libpthread-2.13.so[7f7e38748000+17000] tapdisk:9180 blocked for more than 120 seconds. tapdisk D 88043fc13540 0 9180 1 0x You can try generating a core file by

  1   2   3   >