Bitcoin Forum
April 19, 2024, 03:17:56 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 [593] 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 ... 814 »
  Print  
Author Topic: [1500 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool  (Read 2591613 times)
bhanu545
Full Member
***
Offline Offline

Activity: 706
Merit: 100


View Profile
February 05, 2015, 10:49:56 PM
 #11841


http://minefast.coincadence.com:9332/static/original/  - In this page, "My shares" shows invalid pages, how do we find the latest share submitted in this node under "my shares"? Opening each link to check the details is a headache job.
Thanks Mdude77 and windpath for all the support.

But my question above is still being unanswered. Also how does the pool assign actual difficulty of a share to worker? Based on miner hashrate or node efficiency? Is there any connection with the node efficiency and actual share difficulty we get?
I was being told that better the nodes efficiency, higher the difficulty shares it gets from the pool. Or is it just random or luck?

Anyone??? views on this question?
1713539876
Hero Member
*
Offline Offline

Posts: 1713539876

View Profile Personal Message (Offline)

Ignore
1713539876
Reply with quote  #2

1713539876
Report to moderator
1713539876
Hero Member
*
Offline Offline

Posts: 1713539876

View Profile Personal Message (Offline)

Ignore
1713539876
Reply with quote  #2

1713539876
Report to moderator
1713539876
Hero Member
*
Offline Offline

Posts: 1713539876

View Profile Personal Message (Offline)

Ignore
1713539876
Reply with quote  #2

1713539876
Report to moderator
Bitcoin addresses contain a checksum, so it is very unlikely that mistyping an address will cause you to lose money.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713539876
Hero Member
*
Offline Offline

Posts: 1713539876

View Profile Personal Message (Offline)

Ignore
1713539876
Reply with quote  #2

1713539876
Report to moderator
1713539876
Hero Member
*
Offline Offline

Posts: 1713539876

View Profile Personal Message (Offline)

Ignore
1713539876
Reply with quote  #2

1713539876
Report to moderator
1713539876
Hero Member
*
Offline Offline

Posts: 1713539876

View Profile Personal Message (Offline)

Ignore
1713539876
Reply with quote  #2

1713539876
Report to moderator
kano
Legendary
*
Offline Offline

Activity: 4466
Merit: 1798


Linux since 1997 RedHat 4


View Profile
February 05, 2015, 11:05:37 PM
 #11842


http://minefast.coincadence.com:9332/static/original/  - In this page, "My shares" shows invalid pages, how do we find the latest share submitted in this node under "my shares"? Opening each link to check the details is a headache job.
Thanks Mdude77 and windpath for all the support.

But my question above is still being unanswered. Also how does the pool assign actual difficulty of a share to worker? Based on miner hashrate or node efficiency? Is there any connection with the node efficiency and actual share difficulty we get?
I was being told that better the nodes efficiency, higher the difficulty shares it gets from the pool. Or is it just random or luck?

Anyone??? views on this question?
the user hash rate is like any pool - it assigns it based on the submitted pseudo shares

Pool: https://kano.is - low 0.5% fee PPLNS 3 Days - Most reliable Solo with ONLY 0.5% fee   Bitcointalk thread: Forum
Discord support invite at https://kano.is/ Majority developer of the ckpool code - k for kano
The ONLY active original developer of cgminer. Original master git: https://github.com/kanoi/cgminer
windpath
Legendary
*
Offline Offline

Activity: 1258
Merit: 1027


View Profile WWW
February 05, 2015, 11:18:47 PM
 #11843


http://minefast.coincadence.com:9332/static/original/  - In this page, "My shares" shows invalid pages, how do we find the latest share submitted in this node under "my shares"? Opening each link to check the details is a headache job.
Thanks Mdude77 and windpath for all the support.

But my question above is still being unanswered. Also how does the pool assign actual difficulty of a share to worker? Based on miner hashrate or node efficiency? Is there any connection with the node efficiency and actual share difficulty we get?
I was being told that better the nodes efficiency, higher the difficulty shares it gets from the pool. Or is it just random or luck?

Anyone??? views on this question?

For your previous question, yes in the default front end, you would have to click every link.

For the second question, your hashrate is taken into consideration if you do not set pseudo share difficulty, node efficiency is not.

P2Pool share difficulty is dynamically adjusted every 30 seconds with a 30 second share target, it is pool wide, meaning it is the same for all miners regardless of hashrate.

Submitted shares under "share difficulty" are discarded, however they do help provide more accurate stats.

"Pseudo share difficulty", either set by the miner or adjusted by the pool tries to keep a regular, but not overwhelming to the node, amount of shares coming in so that your hashrate can be accurately measured (~1 per second).

The code is in work.py, starting at line 337:

Code:
if desired_pseudoshare_target is None:
    target = 2**256-1
    local_hash_rate = self._estimate_local_hash_rate()
    if local_hash_rate is not None:
        target = min(target,
            bitcoin_data.average_attempts_to_target(local_hash_rate * 1))
            # limit to 1 share response every second by modulating pseudoshare difficulty
else:
    target = desired_pseudoshare_target
target = max(target, share_info['bits'].target)
for aux_work, index, hashes in mm_later:
    target = max(target, aux_work['target'])
target = math.clip(target, self.node.net.PARENT.SANE_TARGET_RANGE)
bhanu545
Full Member
***
Offline Offline

Activity: 706
Merit: 100


View Profile
February 05, 2015, 11:24:04 PM
 #11844

For your previous question, yes in the default front end, you would have to click every link.

For the second question, your hashrate is taken into consideration if you do not set pseudo share difficulty, node efficiency is not.

P2Pool share difficulty is dynamically adjusted every 30 seconds with a 30 second share target, it is pool wide, meaning it is the same for all miners regardless of hashrate.

Submitted shares under "share difficulty" are discarded, however they do help provide more accurate stats.

"Pseudo share difficulty", either set by the miner or adjusted by the pool tries to keep a regular, but not overwhelming to the node, amount of shares coming in so that your hashrate can be accurately measured (~1 per second).

Great, thanks for all the info and support you give to the community. I appreciate it, Most of them who live in assumptions will learn from your posts about p2pool  Grin
jonnybravo0311
Legendary
*
Offline Offline

Activity: 1344
Merit: 1023


Mine at Jonny's Pool


View Profile WWW
February 05, 2015, 11:32:19 PM
 #11845

Jonny answered back on my whale on the node question.  Will it affect the other miners?

Here's his answer:

"Short answer is yes... That miner with 75TH/s is accounted for by the node and it ups the share difficulty.  Now, if that miner knows what he's doing, he'll account for it himself by using /xxxx after his address ... Where xxx is a value greater than the typical share difficulty.  Example if the share difficulty is 10000000 then that user would do something like ADDRESS/100000000."

Whale, if your watching, do me a favor, would you?

Smiley

S

Fancy seeing you here.  Seeing your post in the thread I realized you're on my node!

That jump in hash rate is me... I rented some heavy firepower for a day for fun.  It'll be done in about 4 hours or so.  The reported rate you're seeing on windpath's node is because I haven't ramped up to the full shares I should have with 95TH/s.  I would need to keep that level of hashing up for another few days for it to catch up.

As for your miner, it is hitting a bad luck streak.  It is all part and parcel of the way p2pool works.  I have an S3 on a node that didn't find a share for 5 days!

Jonny's Pool - Mine with us and help us grow!  Support a pool that supports Bitcoin, not a hardware manufacturer's pockets!  No SPV cheats.  No empty blocks.
mahrens917
Member
**
Offline Offline

Activity: 78
Merit: 10


View Profile WWW
February 06, 2015, 02:05:24 AM
 #11846

Don't think of it as competing with miners on the same node, you are completing (and collaborating) with the whole pool.

Also, node efficiency is a poor indicator on any node with more then 1 miner. A single miner with a high latency can bring node efficiency way down, while your miners may be mining very efficiently.

Look at your latency to the node, the node getBlockTemplate latency, and your stale/DOA shares to get a feel for your particular efficiency...

After a few days of mining you can look up your miner in our "active miners" list for p2pool. That estimated hashrate, if higher then expected, means you are mining efficiently/currently lucky. If it is lower then expected you are mining inefficiently or in a streak of bad luck. (this only works after you have been mining for the length of the share chain, i.e. 3 days)

http://minefast.coincadence.com/p2pool-stats.php

Thanks Windpath.  Is node efficiency with perfect miners (the stat) a good indication of the quality of the node?  I agree just plain node efficiency can be skewed by individual miners.

Find the pool with the best payout!
nodes.p2pool.co
windpath
Legendary
*
Offline Offline

Activity: 1258
Merit: 1027


View Profile WWW
February 06, 2015, 02:51:46 AM
 #11847

Don't think of it as competing with miners on the same node, you are completing (and collaborating) with the whole pool.

Also, node efficiency is a poor indicator on any node with more then 1 miner. A single miner with a high latency can bring node efficiency way down, while your miners may be mining very efficiently.

Look at your latency to the node, the node getBlockTemplate latency, and your stale/DOA shares to get a feel for your particular efficiency...

After a few days of mining you can look up your miner in our "active miners" list for p2pool. That estimated hashrate, if higher then expected, means you are mining efficiently/currently lucky. If it is lower then expected you are mining inefficiently or in a streak of bad luck. (this only works after you have been mining for the length of the share chain, i.e. 3 days)

http://minefast.coincadence.com/p2pool-stats.php

Thanks Windpath.  Is node efficiency with perfect miners (the stat) a good indication of the quality of the node?  I agree just plain node efficiency can be skewed by individual miners.


I don't think any 1 factor can really determine the quality of a node for a given miner, it's a combination of factors...

The "efficiency with perfect miners" stat simply excludes DOA shares from the "efficiency" stat.

If you have a miner with a high stale/orphan rate it will go down just like the efficiency stat, and could be caused by various problems.

In addition to your latency to the node, the node getBlockTemplate latency, and your stale/DOA shares mentioned above; you would also need to take into account node stability/response time, the number of incoming/outgoing p2pool peers and their latency from the node, and some other factors I'm probably forgetting to really get the whole picture.

There is must be a great formula to weight and calculate all this and put it in simple terms, I just don't know it Wink
sEpuLchEr
Sr. Member
****
Offline Offline

Activity: 248
Merit: 250


Are we there yet?


View Profile
February 06, 2015, 07:20:59 AM
 #11848

Another block and more donations.

Thank you very much!

Songminer
Member
**
Offline Offline

Activity: 76
Merit: 10


View Profile
February 06, 2015, 09:26:47 AM
 #11849

Jonny answered back on my whale on the node question.  Will it affect the other miners?

Here's his answer:

"Short answer is yes... That miner with 75TH/s is accounted for by the node and it ups the share difficulty.  Now, if that miner knows what he's doing, he'll account for it himself by using /xxxx after his address ... Where xxx is a value greater than the typical share difficulty.  Example if the share difficulty is 10000000 then that user would do something like ADDRESS/100000000."

Whale, if your watching, do me a favor, would you?

Smiley

S

Fancy seeing you here.  Seeing your post in the thread I realized you're on my node!

That jump in hash rate is me... I rented some heavy firepower for a day for fun.  It'll be done in about 4 hours or so.  The reported rate you're seeing on windpath's node is because I haven't ramped up to the full shares I should have with 95TH/s.  I would need to keep that level of hashing up for another few days for it to catch up.

As for your miner, it is hitting a bad luck streak.  It is all part and parcel of the way p2pool works.  I have an S3 on a node that didn't find a share for 5 days!

Hilarious.  I'll be back.
aurel57
Legendary
*
Offline Offline

Activity: 1176
Merit: 1000



View Profile
February 06, 2015, 10:05:33 AM
Last edit: February 06, 2015, 12:41:29 PM by aurel57
 #11850

The Chicago node that I am using pings at 51ms.  Can I expect to do much better running my own node?
mdude77
Legendary
*
Offline Offline

Activity: 1540
Merit: 1001



View Profile
February 06, 2015, 10:05:59 AM
 #11851

The Chicago node that I am using pings at 51ms.  Can I expects do much better running my own node?

You'll always do better with your own node.

EDIT: assuming you have the bandwidth for it.

M

I mine at Kano's Pool because it pays the best and is completely transparent!  Come join me!
PatMan
Hero Member
*****
Offline Offline

Activity: 924
Merit: 1000


Watch out for the "Neg-Rep-Dogie-Police".....


View Profile WWW
February 06, 2015, 12:35:49 PM
 #11852

Good to see new users adopting p2pool & plenty of info being exchanged here lately, p2pool has a great community thing going on.

Thanks also to the donations from whoever you are - very generous!  Grin

"When one person is deluded it is called insanity - when many people are deluded it is called religion" - Robert M. Pirsig.  I don't want your coins, I want change.
Amazon UK BTC payment service - https://bitcointalk.org/index.php?topic=301229.0 - with FREE delivery!
http://www.ae911truth.org/ - http://rethink911.org/ - http://rememberbuilding7.org/
DiCE1904
Legendary
*
Offline Offline

Activity: 1118
Merit: 1002


View Profile WWW
February 06, 2015, 01:56:54 PM
 #11853

long live p2pool

sEpuLchEr
Sr. Member
****
Offline Offline

Activity: 248
Merit: 250


Are we there yet?


View Profile
February 06, 2015, 02:54:31 PM
 #11854

Oh wow. Another donation!

Thank you!!!!

CptTripps
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
February 06, 2015, 02:59:03 PM
 #11855

You'll always do better with your own node.

EDIT: assuming you have the bandwidth for it.

Question on this...

What kind of sustained bandwidth does a normal mining operation consume? I have a 30MB up/down pipe and was wondering what I should allocate. I can build a DMZ for my local P2Pool server to run on, and set the limits on bandwidth. Would 2MB be enough? More?
windpath
Legendary
*
Offline Offline

Activity: 1258
Merit: 1027


View Profile WWW
February 06, 2015, 03:02:12 PM
Last edit: February 06, 2015, 04:02:32 PM by windpath
 #11856

You'll always do better with your own node.

EDIT: assuming you have the bandwidth for it.

Question on this...

What kind of sustained bandwidth does a normal mining operation consume? I have a 30MB up/down pipe and was wondering what I should allocate. I can build a DMZ for my local P2Pool server to run on, and set the limits on bandwidth. Would 2MB be enough? More?

Almost a negligible amount...

My node, with 35 peers and a bunch of miners averages around 20kB/s

http://imgur.com/4f3P2l9

Prelude
Legendary
*
Offline Offline

Activity: 1596
Merit: 1000



View Profile
February 06, 2015, 04:59:14 PM
 #11857

A big thank you to whoever has been donating lately!
aurel57
Legendary
*
Offline Offline

Activity: 1176
Merit: 1000



View Profile
February 06, 2015, 06:09:08 PM
 #11858

A big thank you to whoever has been donating lately!

I agree Thank You!
mdude77
Legendary
*
Offline Offline

Activity: 1540
Merit: 1001



View Profile
February 07, 2015, 01:16:32 AM
 #11859

You'll always do better with your own node.

EDIT: assuming you have the bandwidth for it.

Question on this...

What kind of sustained bandwidth does a normal mining operation consume? I have a 30MB up/down pipe and was wondering what I should allocate. I can build a DMZ for my local P2Pool server to run on, and set the limits on bandwidth. Would 2MB be enough? More?

You have tons of bandwidth.  I'm able to do pretty well with 3MB down and 768k up, as long as I only use Bitcoin.  When I start merge mining, I get problems because of bandwidth issues.

M

I mine at Kano's Pool because it pays the best and is completely transparent!  Come join me!
MyRig
Donator
Hero Member
*
Offline Offline

Activity: 792
Merit: 510


support@myrig.com


View Profile WWW
February 07, 2015, 07:28:26 AM
 #11860

30mbps should be good enough if you are trying to use it on multi PH operation.  If you want to install IP came for the security camera watching and VPN from outside, then you may use 7-10Mbps temporary for the access and another 2-5Mpbs for the video watching or playing with your drone flying over the mining farm.



You'll always do better with your own node.

EDIT: assuming you have the bandwidth for it.

Question on this...

What kind of sustained bandwidth does a normal mining operation consume? I have a 30MB up/down pipe and was wondering what I should allocate. I can build a DMZ for my local P2Pool server to run on, and set the limits on bandwidth. Would 2MB be enough? More?

Antminer & DragonMint Repair  E-mail: support@myrig.com   T: @MyRig_com
Return Address: MyRig 3700 Quebec Street, Unit 100-239, Denver, Colorado 80207, USA
Pages: « 1 ... 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 [593] 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 ... 814 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!