Pages:
Author

Topic: █▓▒░-< [ZPOOL.CA][BTC Multipool] The miners multipool >-░▒▓█ Paid 925+ BTC - page 59. (Read 217685 times)

legendary
Activity: 3486
Merit: 1126
Does anyone have any issues with there scrypt miners just stopping after like 10 minutes of mining? Its driving me crazy trying to get them to not drop out, the hashrate drops to 0 and no shares. I dont get this issue on any other pool

ongoing issue with sha/scrypt ports. Shouldn't be every 10 mins though that sounds like it's something else. There can ben stretches of 6-8 hours without a stratum reset, but can also be times of one or two an hour...

Hope to have new stratum code some day soon.

If anyone is handy with C++ this is the most common of a few segfaults I seem to get:

Program received signal SIGABRT, Aborted.
[Switching to Thread 0x7ffcebff5700 (LWP 23435)]
0x00007ffff65ffc37 in __GI_raise (sig=sig@entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56
56      ../nptl/sysdeps/unix/sysv/linux/raise.c: No such file or directory.
#0  0x00007ffff65ffc37 in __GI_raise (sig=sig@entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56
#1  0x00007ffff6603028 in __GI_abort () at abort.c:89
#2  0x00007ffff663c2a4 in __libc_message (do_abort=do_abort@entry=1, fmt=fmt@entry=0x7ffff674a6b0 "*** Error in `%s': %s: 0x%s ***\n") at ../sysdeps/posix/libc_fatal.c:175
#3  0x00007ffff66479b2 in malloc_printerr (ptr=, str=0x7ffff67467e4 "corrupted double-linked list", action=1) at malloc.c:4996
#4  malloc_consolidate (av=av@entry=0x7ffd50000020) at malloc.c:4165
#5  0x00007ffff6648ce8 in _int_malloc (av=0x7ffd50000020, bytes=6016) at malloc.c:3423
#6  0x00007ffff664b6c0 in __GI___libc_malloc (bytes=6016) at malloc.c:2891
#7  0x00007ffff739cdad in operator new(unsigned long) () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#8  0x0000000000412855 in client_thread (p=0x7a) at client.cpp:418
#9  0x00007ffff7bc4184 in start_thread (arg=0x7ffcebff5700) at pthread_create.c:312
#10 0x00007ffff66c337d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

https://github.com/tpruvot/yiimp/tree/next/stratum

Caveat: I am not strong in c++ but have lots of exepience analysing system crashes.

The traceback only contains system code, I don't know if you trimmed it but if you have level #11 it might be where
the application called clone.

The crash itself occurred while allocating memory while cloning a process. malloc detected memory corruption:

#3  0x00007ffff66479b2 in malloc_printerr (ptr=, str=0x7ffff67467e4 "corrupted double-linked list", action=1) at malloc.c:4996

This is not an error in the code in the traceback, it likely tripped over prexisting corruption. The data was probably corrupted the last time it
was accessed prior to calling clone.

If you are seeing different crashes it is quite possible they are all the result of the same bug. It may be the same data being corrupted
every time or possibly other data. The victim just happened to be the first proceess to access the data after it was corrupted.

The application probably got hold of a bad pointer somehow and used it to write some data to the wrong place. Due to the cause
being disconnected from the crash these kinds of bugs are hard to find. If the problem is recent it narrows the scope of the problem
to a recent change.

I suggest you try to look for the point of deviation, ie when the crashes first started to see what was changed just prior. Since the crashes
seem fairly consistent you could backout recent changes until the crashes stop.

 


The well, crashing has been an issue since the start but not these ones, likely because the other bugs were occurring before these crashes were apparent. #8 makes reference to the stratum code but I agree a lot has to do with system code.

#8  0x0000000000412855 in client_thread (p=0x7a) at client.cpp:418

https://github.com/tpruvot/yiimp/blob/next/stratum/client.cpp#L418



A new one:

Program received signal SIGSEGV, Segmentation fault.
0x00007ffff66477e3 in malloc_consolidate (av=av@entry=0x7ffdb8000020) at malloc.c:4157
4157    malloc.c: No such file or directory.
#0  0x00007ffff66477e3 in malloc_consolidate (av=av@entry=0x7ffdb8000020) at malloc.c:4157
#1  0x00007ffff664845d in _int_free (av=0x7ffdb8000020, p=, have_lock=0) at malloc.c:4057
#2  0x0000000000404e6e in job_delete (object=0x7ffdb80aec70) at job.h:82
#3  0x0000000000416fbb in object_prune (list=0x83f7e0 , deletefunc=0x404db0 ) at object.cpp:57
#4  0x000000000040416c in main (argc=, argv=) at stratum.cpp:273
legendary
Activity: 1470
Merit: 1114
Does anyone have any issues with there scrypt miners just stopping after like 10 minutes of mining? Its driving me crazy trying to get them to not drop out, the hashrate drops to 0 and no shares. I dont get this issue on any other pool

ongoing issue with sha/scrypt ports. Shouldn't be every 10 mins though that sounds like it's something else. There can ben stretches of 6-8 hours without a stratum reset, but can also be times of one or two an hour...

Hope to have new stratum code some day soon.

If anyone is handy with C++ this is the most common of a few segfaults I seem to get:

Program received signal SIGABRT, Aborted.
[Switching to Thread 0x7ffcebff5700 (LWP 23435)]
0x00007ffff65ffc37 in __GI_raise (sig=sig@entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56
56      ../nptl/sysdeps/unix/sysv/linux/raise.c: No such file or directory.
#0  0x00007ffff65ffc37 in __GI_raise (sig=sig@entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56
#1  0x00007ffff6603028 in __GI_abort () at abort.c:89
#2  0x00007ffff663c2a4 in __libc_message (do_abort=do_abort@entry=1, fmt=fmt@entry=0x7ffff674a6b0 "*** Error in `%s': %s: 0x%s ***\n") at ../sysdeps/posix/libc_fatal.c:175
#3  0x00007ffff66479b2 in malloc_printerr (ptr=, str=0x7ffff67467e4 "corrupted double-linked list", action=1) at malloc.c:4996
#4  malloc_consolidate (av=av@entry=0x7ffd50000020) at malloc.c:4165
#5  0x00007ffff6648ce8 in _int_malloc (av=0x7ffd50000020, bytes=6016) at malloc.c:3423
#6  0x00007ffff664b6c0 in __GI___libc_malloc (bytes=6016) at malloc.c:2891
#7  0x00007ffff739cdad in operator new(unsigned long) () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#8  0x0000000000412855 in client_thread (p=0x7a) at client.cpp:418
#9  0x00007ffff7bc4184 in start_thread (arg=0x7ffcebff5700) at pthread_create.c:312
#10 0x00007ffff66c337d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

https://github.com/tpruvot/yiimp/tree/next/stratum

Caveat: I am not strong in c++ but have lots of exepience analysing system crashes.

The traceback only contains system code, I don't know if you trimmed it but if you have level #11 it might be where
the application called clone.

The crash itself occurred while allocating memory while cloning a process. malloc detected memory corruption:

#3  0x00007ffff66479b2 in malloc_printerr (ptr=, str=0x7ffff67467e4 "corrupted double-linked list", action=1) at malloc.c:4996

This is not an error in the code in the traceback, it likely tripped over prexisting corruption. The data was probably corrupted the last time it
was accessed prior to calling clone.

If you are seeing different crashes it is quite possible they are all the result of the same bug. It may be the same data being corrupted
every time or possibly other data. The victim just happened to be the first proceess to access the data after it was corrupted.

The application probably got hold of a bad pointer somehow and used it to write some data to the wrong place. Due to the cause
being disconnected from the crash these kinds of bugs are hard to find. If the problem is recent it narrows the scope of the problem
to a recent change.

I suggest you try to look for the point of deviation, ie when the crashes first started to see what was changed just prior. Since the crashes
seem fairly consistent you could backout recent changes until the crashes stop.

Edit: I tend to forget that c++ has no array bounds protection so it is vurnerable to buffer overflows. This would be a more likely
scenario than a random bad pointer.

 
legendary
Activity: 3486
Merit: 1126
Hey Mr Crackfoo, would it be possible to get a rolling graphchart of the difficulty of coins when we click on their pool?  Probably feasable up to 8 coins, I definitely don't see a point in graphing all the scrypt or sha256 coins though, just too many.  I'm curious to see when my miners jump onto a coin they deem to be profitable and currently all I have to go with is price.

There is a basic graph in the explorers, which logs points for the blocks the pool finds:

www.zpool.ca/explorer/DASH

full member
Activity: 235
Merit: 100
Hey Mr Crackfoo, would it be possible to get a rolling graphchart of the difficulty of coins when we click on their pool?  Probably feasable up to 8 coins, I definitely don't see a point in graphing all the scrypt or sha256 coins though, just too many.  I'm curious to see when my miners jump onto a coin they deem to be profitable and currently all I have to go with is price.
newbie
Activity: 42
Merit: 0
Does anyone have any issues with there scrypt miners just stopping after like 10 minutes of mining? Its driving me crazy trying to get them to not drop out, the hashrate drops to 0 and no shares. I dont get this issue on any other pool

ongoing issue with sha/scrypt ports. Shouldn't be every 10 mins though that sounds like it's something else. There can ben stretches of 6-8 hours without a stratum reset, but can also be times of one or two an hour...

Hope to have new stratum code some day soon.

thanks for the quick reply I switched to CGminer and seems to be fine now and alot more stable
legendary
Activity: 3486
Merit: 1126
Does anyone have any issues with there scrypt miners just stopping after like 10 minutes of mining? Its driving me crazy trying to get them to not drop out, the hashrate drops to 0 and no shares. I dont get this issue on any other pool

ongoing issue with sha/scrypt ports. Shouldn't be every 10 mins though that sounds like it's something else. There can ben stretches of 6-8 hours without a stratum reset, but can also be times of one or two an hour...

Hope to have new stratum code some day soon.

If anyone is handy with C++ this is the most common of a few segfaults I seem to get:

Program received signal SIGABRT, Aborted.
[Switching to Thread 0x7ffcebff5700 (LWP 23435)]
0x00007ffff65ffc37 in __GI_raise (sig=sig@entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56
56      ../nptl/sysdeps/unix/sysv/linux/raise.c: No such file or directory.
#0  0x00007ffff65ffc37 in __GI_raise (sig=sig@entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56
#1  0x00007ffff6603028 in __GI_abort () at abort.c:89
#2  0x00007ffff663c2a4 in __libc_message (do_abort=do_abort@entry=1, fmt=fmt@entry=0x7ffff674a6b0 "*** Error in `%s': %s: 0x%s ***\n") at ../sysdeps/posix/libc_fatal.c:175
#3  0x00007ffff66479b2 in malloc_printerr (ptr=, str=0x7ffff67467e4 "corrupted double-linked list", action=1) at malloc.c:4996
#4  malloc_consolidate (av=av@entry=0x7ffd50000020) at malloc.c:4165
#5  0x00007ffff6648ce8 in _int_malloc (av=0x7ffd50000020, bytes=6016) at malloc.c:3423
#6  0x00007ffff664b6c0 in __GI___libc_malloc (bytes=6016) at malloc.c:2891
#7  0x00007ffff739cdad in operator new(unsigned long) () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#8  0x0000000000412855 in client_thread (p=0x7a) at client.cpp:418
#9  0x00007ffff7bc4184 in start_thread (arg=0x7ffcebff5700) at pthread_create.c:312
#10 0x00007ffff66c337d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

https://github.com/tpruvot/yiimp/tree/next/stratum
legendary
Activity: 3486
Merit: 1126
Does anyone have any issues with there scrypt miners just stopping after like 10 minutes of mining? Its driving me crazy trying to get them to not drop out, the hashrate drops to 0 and no shares. I dont get this issue on any other pool

ongoing issue with sha/scrypt ports. Shouldn't be every 10 mins though that sounds like it's something else. There can ben stretches of 6-8 hours without a stratum reset, but can also be times of one or two an hour...

Hope to have new stratum code some day soon.
legendary
Activity: 1470
Merit: 1114
Quark is broke, no hash reported at pool.

just checked, mining ok, pools stats ok, website confirms

are you in the right thread ?


It's working now, but it was broke from 12:00 to around 12:30, look at the hashrate graph. I was mining during
that time.
newbie
Activity: 42
Merit: 0
Does anyone have any issues with there scrypt miners just stopping after like 10 minutes of mining? Its driving me crazy trying to get them to not drop out, the hashrate drops to 0 and no shares. I dont get this issue on any other pool
legendary
Activity: 1470
Merit: 1114
Quark is broke, no hash reported at pool.
legendary
Activity: 3486
Merit: 1126
amazing balance curve  Undecided

https://i.imgur.com/rzPqCUE.png

what algo? were you mining all the time?

it's alltime-skein to tty payout
not the top class yaamp humor but close Grin

Partial payment? Not sure what you see as the problem? You mine... earn pending, as they're confirmed, you earn balance and pending decreases......., balance gets decreased when you get paid. When you mine for 6 hours, that's what happens....

zpool.ca/?address=DFhUezzLJc3MraftBDTwsZZnRzMQpoUTeK
legendary
Activity: 3164
Merit: 1003

Finally I see the error massage  .. ccminer has been blocked from accessing the graphics driver.
Any help plz

Sorry Crackfoo for messing up your thread.

Are you running it as administrator?
No.... Undecided giving that a try.

EDIT:Same thing.  an app....blocked ... ccminer has been blocked from accessing the graphics driver.
How do I find out what app.  anyone plz.    At lest I found why its crashing.

Sorry Crackfoo for messing up your thread.
Reinstalling drivers.
How do I find out what app.  anyone plz.
I had to shut that rig down for now.

It has nothing to do with the pool, I suggest a seperate thread.
 
It's a problem between ccminer and the GPU, which includes the OS and the drivers.
Have you googled the error message for clues as to its meaning?

Beyond that have you done any HW troubleshooting? Have you been messing with the clocks or voltage?
Can you identify a trigger?
Part of the time it was the pool read back me talking to Crackfoo
I'm giving.. up the only solution I have is to take out the gigabyte 970.
I'm done. 5 months of this problem ..it worked great for 4 days when crackfoo made an adjustment but it is a multiple problem.
Putting 2x  970 gigabyte gtx g1 on the shelf. Garbage cards.

My apologies for offering to help.
Sorry joblo  my sincere apologies.
I have so many other things hitting me at once..legal matters that I don't know which why is up.
I hope you understand.
Thank you.
As I said 4 days of mining without a problem after crackfoo did a pool adjustment no messing with anything.


No problem. I can help when you're ready. I did this for a living and was pretty good at it, but it was a completely
different system.


Thx
legendary
Activity: 3164
Merit: 1003
amazing balance curve  Undecided

https://i.imgur.com/rzPqCUE.png

what algo? were you mining all the time?

it's alltime-skein to tty payout
not the top class yaamp humor but close Grin
Grin
legendary
Activity: 2716
Merit: 1094
Black Belt Developer
legendary
Activity: 1470
Merit: 1114

Finally I see the error massage  .. ccminer has been blocked from accessing the graphics driver.
Any help plz

Sorry Crackfoo for messing up your thread.

Are you running it as administrator?
No.... Undecided giving that a try.

EDIT:Same thing.  an app....blocked ... ccminer has been blocked from accessing the graphics driver.
How do I find out what app.  anyone plz.    At lest I found why its crashing.

Sorry Crackfoo for messing up your thread.
Reinstalling drivers.
How do I find out what app.  anyone plz.
I had to shut that rig down for now.

It has nothing to do with the pool, I suggest a seperate thread.
 
It's a problem between ccminer and the GPU, which includes the OS and the drivers.
Have you googled the error message for clues as to its meaning?

Beyond that have you done any HW troubleshooting? Have you been messing with the clocks or voltage?
Can you identify a trigger?
Part of the time it was the pool read back me talking to Crackfoo
I'm giving.. up the only solution I have is to take out the gigabyte 970.
I'm done. 5 months of this problem ..it worked great for 4 days when crackfoo made an adjustment but it is a multiple problem.
Putting 2x  970 gigabyte gtx g1 on the shelf. Garbage cards.

My apologies for offering to help.
Sorry joblo  my sincere apologies.
I have so many other things hitting me at once..legal matters that I don't know which why is up.
I hope you understand.
Thank you.
As I said 4 days of mining without a problem after crackfoo did a pool adjustment no messing with anything.


No problem. I can help when you're ready. I did this for a living and was pretty good at it, but it was a completely
different system.

legendary
Activity: 3164
Merit: 1003
My apologies to everyone helping me especially crackfoo for messing up his thread.
I have so many other personal  problems hitting me at the same time.
I started a thread on this extremely annoying problem I have been have for some time with my one rig.
Thank you all for your understanding.
Here is a thread I started on the subject.


Nvidia GPU Mining Problems
https://bitcointalk.org/index.php?topic=1553513.new#new
legendary
Activity: 3164
Merit: 1003
Part of the time it was the pool read back me talking to Crackfoo
I'm giving.. up the only solution I have is to take out the gigabyte 970.
I'm done. 5 months of this problem ..it worked great for 4 days when crackfoo made an adjustment but it is a multiple problem.
Putting 2x  970 gigabyte gtx g1 on the shelf. Garbage cards.

how old (running time) is your rig and especially psu ?
did you try to run it minus one card (any one card ) ?
Brand new and yes one card at a time. The 970 core clock is 1413 should be 1117 about.
Thx
legendary
Activity: 3164
Merit: 1003

Finally I see the error massage  .. ccminer has been blocked from accessing the graphics driver.
Any help plz

Sorry Crackfoo for messing up your thread.

Are you running it as administrator?
No.... Undecided giving that a try.

EDIT:Same thing.  an app....blocked ... ccminer has been blocked from accessing the graphics driver.
How do I find out what app.  anyone plz.    At lest I found why its crashing.

Sorry Crackfoo for messing up your thread.
Reinstalling drivers.
How do I find out what app.  anyone plz.
I had to shut that rig down for now.

It has nothing to do with the pool, I suggest a seperate thread.
 
It's a problem between ccminer and the GPU, which includes the OS and the drivers.
Have you googled the error message for clues as to its meaning?

Beyond that have you done any HW troubleshooting? Have you been messing with the clocks or voltage?
Can you identify a trigger?
Part of the time it was the pool read back me talking to Crackfoo
I'm giving.. up the only solution I have is to take out the gigabyte 970.
I'm done. 5 months of this problem ..it worked great for 4 days when crackfoo made an adjustment but it is a multiple problem.
Putting 2x  970 gigabyte gtx g1 on the shelf. Garbage cards.

My apologies for offering to help.
Sorry joblo  my sincere apologies.
I have so many other things hitting me at once..legal matters that I don't know which why is up.
I hope you understand.
Thank you.
As I said 4 days of mining without a problem after crackfoo did a pool adjustment no messing with anything.
sr. member
Activity: 294
Merit: 250
please help gofund.me/bigs21024 Family in need
ok i have had this issue for some time now i was mining XPTX this is my addy and how many i'm holding    P8ra7krMFUu6PcaUneqy5SGrWhRXCUxR7Z   215.70265287 XPTX  last time i asked you said you were no longer paying that out so can i get paid in BTC what the value of the mined coins are so i'm not just getting nothing if that is possible here is my BTC addy: 1DNdivU3dbhozVPXPbxNKS6m84HKyHBgWh     if not please let me know my options and what we can do to resolve this issue please, thanks for your time
full member
Activity: 235
Merit: 100

Beyond that have you done any HW troubleshooting? Have you been messing with the clocks or voltage?
Can you identify a trigger?
[/quote]
Part of the time it was the pool read back me talking to Crackfoo
I'm giving.. up the only solution I have is to take out the gigabyte 970.
I'm done. 5 months of this problem ..it worked great for 4 days when crackfoo made an adjustment but it is a multiple problem.
Putting 2x  970 gigabyte gtx g1 on the shelf. Garbage cards.
[/quote]


Wouldn't it be easier to use the device settings in the miner to avoid using the 970 and mine on a different pool with it? Example: ccminer -d 0,1,2 would be 3 cards running, but you could do -d 0,2 if the 970 is your second card and then run ccminer -d 1 on another pool?  Maybe I'm not completely understanding the issue.  On a side note, if you're willing to sell two 970's sitting on a shelf collecting dust to a nice home I'm listening Smiley  Sorry about the issues man, I was infuriated with my 7950 4 card amd setup 2 years ago so I understand the frustration.
Pages:
Jump to: