* Help : Facing this when i trigger FIO from command line :"fio: file hash not empty on exit"
@ 2013-08-06 11:12 sampath rapaka
2013-08-06 11:35 ` Erwan Velu
0 siblings, 1 reply; 5+ messages in thread
From: sampath rapaka @ 2013-08-06 11:12 UTC (permalink / raw)
To: fio@vger.kernel.org
Hello all
I am trying to trigger FIO from command line using below command.
But i was thrown below error message.
Error:
fio: pid=13800, got signal=11
fio: file hash not empty on exit
Command line command:
fio --output=test_1 --name=test_1 --filename=/dev/md0
--ioengine=libaio --direct=1 --norandommap --randrepeat=0
--refill_buffers --time_based --runtime=180s --blocksize=8k
--rw=randrw --rwmixwrite=67 --iodepth=32 --overwrite=1
There is something wrong in the command I have run ?
regards
sampath
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Help : Facing this when i trigger FIO from command line :"fio: file hash not empty on exit"
2013-08-06 11:12 Help : Facing this when i trigger FIO from command line :"fio: file hash not empty on exit" sampath rapaka
@ 2013-08-06 11:35 ` Erwan Velu
2013-08-06 11:52 ` sampath rapaka
0 siblings, 1 reply; 5+ messages in thread
From: Erwan Velu @ 2013-08-06 11:35 UTC (permalink / raw)
To: sampath rapaka; +Cc: fio@vger.kernel.org
On 06/08/2013 13:12, sampath rapaka wrote:
> There is something wrong in the command I have run ?
>
Can you mention the version of fio you are using ?
Can you double check you didn't had an OOM message from the kernel ?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Help : Facing this when i trigger FIO from command line :"fio: file hash not empty on exit"
2013-08-06 11:35 ` Erwan Velu
@ 2013-08-06 11:52 ` sampath rapaka
2013-08-06 14:21 ` Jens Axboe
0 siblings, 1 reply; 5+ messages in thread
From: sampath rapaka @ 2013-08-06 11:52 UTC (permalink / raw)
To: Erwan Velu; +Cc: fio@vger.kernel.org
On Tue, Aug 6, 2013 at 5:05 PM, Erwan Velu <erwan@enovance.com> wrote:
> On 06/08/2013 13:12, sampath rapaka wrote:
>>
>> There is something wrong in the command I have run ?
>>
> Can you mention the version of fio you are using ?
>
> Can you double check you didn't had an OOM message from the kernel ?
fio --version
fio-2.0.15
I have not seen any Issues with Memory. I had run other fio test from
config file, It went smoothly.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Help : Facing this when i trigger FIO from command line :"fio: file hash not empty on exit"
2013-08-06 11:52 ` sampath rapaka
@ 2013-08-06 14:21 ` Jens Axboe
2013-08-07 9:02 ` sampath rapaka
0 siblings, 1 reply; 5+ messages in thread
From: Jens Axboe @ 2013-08-06 14:21 UTC (permalink / raw)
To: sampath rapaka; +Cc: Erwan Velu, fio@vger.kernel.org
On 08/06/2013 05:52 AM, sampath rapaka wrote:
> On Tue, Aug 6, 2013 at 5:05 PM, Erwan Velu <erwan@enovance.com> wrote:
>> On 06/08/2013 13:12, sampath rapaka wrote:
>>>
>>> There is something wrong in the command I have run ?
>>>
>> Can you mention the version of fio you are using ?
>>
>> Can you double check you didn't had an OOM message from the kernel ?
> fio --version
> fio-2.0.15
>
> I have not seen any Issues with Memory. I had run other fio test from
> config file, It went smoothly.
First try a make clean && make and see if it reproduces. If it does,
then edit the Makefile and remove the -O3 in there. Then make clean &&
make. Now do ulimit -c10000000000 and reproduce the issue. That should
give you a core dump file. Then do:
# gdb fio core
and type 'bt' and send the full output here.
--
Jens Axboe
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Help : Facing this when i trigger FIO from command line :"fio: file hash not empty on exit"
2013-08-06 14:21 ` Jens Axboe
@ 2013-08-07 9:02 ` sampath rapaka
0 siblings, 0 replies; 5+ messages in thread
From: sampath rapaka @ 2013-08-07 9:02 UTC (permalink / raw)
To: Jens Axboe; +Cc: Erwan Velu, fio@vger.kernel.org
On Tue, Aug 6, 2013 at 7:51 PM, Jens Axboe <axboe@kernel.dk> wrote:
> On 08/06/2013 05:52 AM, sampath rapaka wrote:
>> On Tue, Aug 6, 2013 at 5:05 PM, Erwan Velu <erwan@enovance.com> wrote:
>>> On 06/08/2013 13:12, sampath rapaka wrote:
>>>>
>>>> There is something wrong in the command I have run ?
>>>>
>>> Can you mention the version of fio you are using ?
>>>
>>> Can you double check you didn't had an OOM message from the kernel ?
>> fio --version
>> fio-2.0.15
>>
>> I have not seen any Issues with Memory. I had run other fio test from
>> config file, It went smoothly.
>
> First try a make clean && make and see if it reproduces. If it does,
> then edit the Makefile and remove the -O3 in there. Then make clean &&
> make. Now do ulimit -c10000000000 and reproduce the issue. That should
> give you a core dump file. Then do:
>
> # gdb fio core
>
> and type 'bt' and send the full output here.
>
> --
> Jens Axboe
>
Thanks for the reply. Once I get a test machine i will try it and
update the back trace.
thanks
rapaka
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-08-07 9:02 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-06 11:12 Help : Facing this when i trigger FIO from command line :"fio: file hash not empty on exit" sampath rapaka
2013-08-06 11:35 ` Erwan Velu
2013-08-06 11:52 ` sampath rapaka
2013-08-06 14:21 ` Jens Axboe
2013-08-07 9:02 ` sampath rapaka
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.