Pages:
Author

Topic: CKPool Stats - iPhone App - page 6. (Read 22071 times)

legendary
Activity: 4466
Merit: 1798
Linux since 1997 RedHat 4
February 13, 2016, 01:15:38 AM
#47
With 1.2, on an iPad mini, when I tap the middle to hide the top right, bottom left stats, it puts a 'blank' box there and obscures part of the time at the top (right) and the marquee at the bottom (left)
vh
hero member
Activity: 699
Merit: 666
February 11, 2016, 05:40:09 PM
#46
I'll let you know when I activate the change on the live pool (today or tomorrow)
We can then see if anything needs adjusting in ckdb.
Also note I have whitelists so e.g. if you are polling the site a bit more from your data source I can set that as ignored.
But of course if everyone is doing that with the app, there can't (and of course wont) be a whitelist for 'everyone' Smiley

I'll pm you that offline, i'll end up over the hourly limit at some point if not already.
    
With the adjustments 15s/300s(45s active), It's dropped from 950 to 140 api calls over a 5 minute period with no impact on user experience.
That will ease up some activity to your server.

I also found the block message i'm hunting for so i may be able to adjust to 60s/300s(45s) shortly with a little tweak that will get near event driven block -> push notification, backup using block num change in polling.
 {"params":["Block 397940 solved by d00d.PK217 @ ckpool!"] ..
legendary
Activity: 4466
Merit: 1798
Linux since 1997 RedHat 4
February 11, 2016, 05:15:47 PM
#45
I'll let you know when I activate the change on the live pool (today or tomorrow)
We can then see if anything needs adjusting in ckdb.
Also note I have whitelists so e.g. if you are polling the site a bit more from your data source I can set that as ignored.
But of course if everyone is doing that with the app, there can't (and of course wont) be a whitelist for 'everyone' Smiley

Edit: also, you may have noticed, but by design the hash rate stats only change once per minute.
vh
hero member
Activity: 699
Merit: 666
February 11, 2016, 10:39:23 AM
#44
Added some metrics.   The app (overall) is triggering 950 api calls every 5 minutes.

I will bump it to 15s/300s shortly (incrementally by EOD), and drop it down to 45s when the application is awake.

That should drop it down significantly and still provide the functions.
vh
hero member
Activity: 699
Merit: 666
February 11, 2016, 10:01:11 AM
#43
15s ... I can see that getting it banned shortly ... I've implemented limits in CKDB for failure events and activity events.
That was around where I was gonna limit it per hour.
There's no useful information gained by polling the site more than about once a minute.

This will also cause even more problems if you are logging in to a single account with everyone running the app ... since that will hit the account ... lots ...

If someone needs to poll the site 5760 times a day they need to find something better to do with their time ...

Even with identifying idle workers, you can't do that more than once every 30s

A worker is expected, to average, 3 shares a day of 13.33s or more.

Shares are avg 18SPM, so 1 share is avg 1.333s
a 1000% CDF is:
Code:
0.99995460007024  1000.000%  1 in 22026.5
i.e. expect to average one in 22026.5 shares to be 10x1.333s = 13.33s
and 22026.5 shares is expected to average 8.16 hours at average 13.33s per share

FYI there's already more than 400k hits a day ...

Felt like I was about to bump that limit soon.   I will slow it down.    

I did notice that 30 second worker change frequency and don't pull more frequently than 30s per worker.

The data is normalized through a summary node on my end to make data from kano.is look like data from solo.ckpool.

This also allows for notifications, and controls hits to your system at a known rate.   And if the downstream changes (new pool, new data, changed data structure), I don't need to wait for apple review to make adjustments.

aggregation node thread:

1 pool thread - Every 15 second, watches for block found changes.  collect pool related information
3 thread poll user status - pulls data per user if user's stamp is older than 30 seconds.  which is the minimum useful limit you noted.
(misc thread to watch status file, blockchain payout, etc)

The pool thread triggers the pool block push notification
The user thread triggers user push notifications

Every running app hits was suppose to hit the aggregation node a bit harder as it acts as the relay, and broadcast one-to-many for the 15s poll.

The user notification part has been bothering me too.  I would like not to scrap earlier notification but if it causes stress or ban, that's no good.

The target hits to kano.is:

240x times per hour for pool block change thread.
120x times per hour per app install for user thread.

Here's a few strays that are causing the numbers to be higher, and what i'm doing to address those.

If someone adds in 20 worker addresses and don't use an account.    I did not expect a lot of those, but it is there.
   - solo.ckpool does a worker list in the user view.   i can adjust this the same to save lots of hits should the parent user view eventually show workers.

User Typos.  
   - looking to apply retry suppression.   there's no stamp to baseline off.   need to better distinguish it from no api data, zero api data during restarts.

Also playing with an out of band block change notification.

The 15s/30s can be tuned as required immediately.







legendary
Activity: 4466
Merit: 1798
Linux since 1997 RedHat 4
February 11, 2016, 05:47:10 AM
#42
That would best case.   15 second poll of kano.is api + apple push latency.   Every so often it will line up.   Every other time it takes folks 30s to click the screen and two more minutes to log in and check the site so it feels instant.   You still have the edge on watching the console.
15s ... I can see that getting it banned shortly ... I've implemented limits in CKDB for failure events and activity events.
That was around where I was gonna limit it per hour.
There's no useful information gained by polling the site more than about once a minute.

This will also cause even more problems if you are logging in to a single account with everyone running the app ... since that will hit the account ... lots ...

If someone needs to poll the site 5760 times a day they need to find something better to do with their time ...

Even with identifying idle workers, you can't do that more than once every 30s

A worker is expected, to average, 3 shares a day of 13.33s or more.

Shares are avg 18SPM, so 1 share is avg 1.333s
a 1000% CDF is:
Code:
0.99995460007024  1000.000%  1 in 22026.5
i.e. expect to average one in 22026.5 shares to be 10x1.333s = 13.33s
and 22026.5 shares is expected to average 8.16 hours at average 13.33s per share

FYI there's already more than 400k hits a day ...
vh
hero member
Activity: 699
Merit: 666
February 11, 2016, 02:48:00 AM
#41
That would best case.   15 second poll of kano.is api + apple push latency.   Every so often it will line up.   Every other time it takes folks 30s to click the screen and two more minutes to log in and check the site so it feels instant.   You still have the edge on watching the console.
legendary
Activity: 1722
Merit: 1032
Carl, aka Sonny :)
February 10, 2016, 11:19:35 PM
#40
Just to let you know, your notification of block 397818 popped up on my iPhone at the same instant that the message came up on my cgminer from CKPool...well done!
hero member
Activity: 2478
Merit: 621
February 10, 2016, 02:56:12 PM
#39
Hi,

Great app for starters! Use it to keep an eye on my s3 hash rate.

I'm new to this whole api key thing so take it easy on me.

I've copied and pasted the api key from Kano.is website (my account section) and pasted it into the app but can't see anymore information apart from the current hashrate. Is this right? Or am I missing something?

The refresh rate can use some optimization.   After adding the api key the worker screen will [eventually] say Hashing @ nnn.nnGHs.
But that's about it.   Some basic worker/pool stats and a few fun event notifications right now.

Thanks vh. I thought I was missing a trick lol. Awesome app.
vh
hero member
Activity: 699
Merit: 666
February 10, 2016, 02:27:09 PM
#38

Awesome VH, can't wait. I'll keep posting any ideas and suggestions as i get them.

keep up the good work.

I'll be happy to beta test your app if you need any more beta testers.

The more the merrier.  PM me an email address and I'll load it into apple's testflight/beta list.
vh
hero member
Activity: 699
Merit: 666
February 10, 2016, 02:13:28 PM
#37
Hi,

Great app for starters! Use it to keep an eye on my s3 hash rate.

I'm new to this whole api key thing so take it easy on me.

I've copied and pasted the api key from Kano.is website (my account section) and pasted it into the app but can't see anymore information apart from the current hashrate. Is this right? Or am I missing something?

The refresh rate can use some optimization.   After adding the api key the worker screen will [eventually] say Hashing @ nnn.nnGHs.
But that's about it.   Some basic worker/pool stats and a few fun event notifications right now.
hero member
Activity: 2478
Merit: 621
February 10, 2016, 01:55:33 PM
#36
Hi,

Great app for starters! Use it to keep an eye on my s3 hash rate.

I'm new to this whole api key thing so take it easy on me.

I've copied and pasted the api key from Kano.is website (my account section) and pasted it into the app but can't see anymore information apart from the current hashrate. Is this right? Or am I missing something?
legendary
Activity: 1638
Merit: 1005
February 10, 2016, 01:17:35 PM
#35
Thanks for the app VH btw, I like it !  Smiley
vh
hero member
Activity: 699
Merit: 666
February 10, 2016, 01:07:48 PM
#34
hello again VH.

another suggestion/feature request

could you find a way to include some more stats related to the hashrate in the worker screeen... i'd be nice to have hashrate stats like hourly or daily hashrate available in the worker bars and total hash rate area. maybe we could have a way to cycle through all the available hash rates data stats touching the screen  "hashrate1m", "hashrate5m", "hashrate1hr", "hashrate1d" or "hashrate7d"

keep up the good work.

-Zodiacus



this falls under more stats please, in the misc todo already.    it will likely be there a few iterations down.
vh
hero member
Activity: 699
Merit: 666
February 10, 2016, 01:01:53 PM
#33
I got no stats from my workers since late last night. Was working all good before that.

Anyone else have this issue ?

EDIT: workaround

1- Copy in memory your API Key
2- Remove your API key from the configuration section
3- Close the application
4- Restart the application
5- Re-Enter the Key
6- Working again

Interesting.   Just force closing and reopening it will reinitialize all the objects and arrays, and accomplishes the same.
Might be a timing issue with a ckdb restart but i don't recall one recently.    Let's see if anyone else notices or if i can force recreate it.
legendary
Activity: 1638
Merit: 1005
February 10, 2016, 11:29:45 AM
#32
I got no stats from my workers since late last night. Was working all good before that.

Anyone else have this issue ?

EDIT: workaround

1- Copy in memory your API Key
2- Remove your API key from the configuration section
3- Close the application
4- Restart the application
5- Re-Enter the Key
6- Working again
vh
hero member
Activity: 699
Merit: 666
February 08, 2016, 10:16:06 PM
#31
hello VH, great work on this app

keep up the good work my friend, going to drop a good review after this post.

I'd like to post one feature request if possible

  • multiple ckpool accounts

i run a medium sized mine and i have a few miners that are not on my main ckpool account that i'd like to monitor. only way i can do this now is to have them mining directly to a btc wallet (using a btc wallet as login) and adding them one by one to the app via direct addresses....

you could also the feature to monitor these miners as a "group" with the stats provided via the http://www.kano.is/address.php?a=1KanoiBupPiZfkwqB7rfLXAzPnoTshAVmb  link syntax....

just a couple of suggestions...

thanks again for a great app.

Zodiacus

glad you find it useful.    suggestions tacked to misc todo/wishlist.
vh
hero member
Activity: 699
Merit: 666
January 31, 2016, 01:30:00 PM
#30
vh,

I just noticed that the CKPool Stats Support link on the App Store points to the Kano Bitcointalk thread...it seems to be more relevant to point it to this thread instead since this is where we talk about support for the app...Grin

Edit:  I guess my review of the app is the only one so far!

I submitted that with the app review request before starting this thread, that thread was the closest url (required) available to a support page at the time.   No sure if i can update it without another review.   I recheck to see, otherwise it will be updated with v1.2 submission.

edit: link changed and directing here.
legendary
Activity: 1722
Merit: 1032
Carl, aka Sonny :)
January 31, 2016, 12:54:38 PM
#29
vh,

I just noticed that the CKPool Stats Support link on the App Store points to the Kano Bitcointalk thread...it seems to be more relevant to point it to this thread instead since this is where we talk about support for the app...Grin

Edit:  I guess my review of the app is the only one so far!
legendary
Activity: 1150
Merit: 1004
January 31, 2016, 02:21:34 AM
#28
adjusted to go down the hierarchy but not up.   this is useful feedback.   appreciated since i don't see all the common use cases yet.   if it's not relevant i'll chime in accordingly and punt the request.

I re-added the worker address for my stick in the Sidehack Compac Stick pool and all I see is that stick instead of all the other members. This is a welcome improvement.

Thanks very much!
Pages:
Jump to: