#recordpool Weekly Analysis Report #9 (Weekly Contest #12)

in #recordpool8 years ago (edited)

Welcome to weekly analysis of #recordpool.The purpose of this analysis is to determine the weekly winner for #recordpool from 26/03/2018 - 01/04/2018.

What is recordpool? Checkout @djlethalskillz's post "Weekly Roudup Contest" at "'Steemit Record Pool' New Community Contest Update! Curate Music & Win Weekly Whaleshares & Hairshares!"

The announcement of the winners will be done by @recordpool.

All data are queried from SteemSQL until 01/04/2018. For a better reading experience, I would suggest using busy.org .

There might be a slight different for the payout since it is the sum of paid payout and pending payout (pending payout fluctuates with the price of sbd/steem and also affected by beneficiaries percentage)

For better reading experience, please use busy.org: https://busy.org/recordpool/@superoo7/recordpool-weekly-analysis-report-9-weekly-contest-12

Overall Statisctics

AuthorsPostsCommentsUpvotesPayouts
14411664934261114922.0010

Weekly Statistics (26/03/2018 - 01/04/2018)

AuthorsPostsCommentsUpvotesPayouts
24692181965144.3740

Weekly Top 10 authors (in terms of number of posts)(in terms of number of posts)

AuthorsPostsVotesCommentsTotal_Payout
@warmcracklesound10184102.7310
@inthenow718372.5900
@iamevilradio78782.9960
@calisay75658.4950
@rawselectmusic644121.4160
@asonintrigue5252307.0730
@bboyady4251510.1410
@mateonav534150141.0690
@recordpool2652712.9860
@danstatus22020.0880

Weekly Top 10 posts

in terms of upvotes

TitleAuthorUpvotesCommentsPayout
Steemit Recordpool: Decompressing to Classical by Philip Glass on a Rainy Joshua Tree Weekend https://steemit.com//recordpool/@mateonav53/steemit-recordpool-decompressing-to-classical-by-philip-glass-on-a-rainy-joshua-tree-weekend@mateonav5310910.4760
Steem Music : Fly Me To The Moon https://steemit.com//steem-music/@sireh/steem-music-fly-me-to-the-moon@sireh107128.8000
SONG OF THE DAY//RECORDPOOL//JAMES BROWN//FUNKY DRUMMER https://steemit.com//hiphoptheblockchain/@bboyady/song-of-the-day-recordpool-james-brown-funky-drummer@bboyady10613.7670
#recordpool Weekly Analysis Report #8 (Weekly Contest #11) https://steemit.com//recordpool/@superoo7/recordpool-weekly-analysis-report-8-weekly-contest-11@superoo710381.5630
Song of the Day - Thomas, You're the Leader https://steemit.com//recordpool/@asherlee/song-of-the-day-thomas-you-re-the-leader@asherlee8131.6730
SONG OF THE DAY//RECORDPOOL//PENTATONIX//HAPPY https://steemit.com//songoftheday/@bboyady/song-of-the-day-recordpool-pentatonix@bboyady7921.6810
Ason Intrigue - Summertime's Blue Sumday Rad Mix https://steemit.com//dsound/@asonintrigue/20180326t220035147z-ason-intrigue-summertimes-blue-sumday-rad-mix@asonintrigue78265.6890
Cop While You Can: New and Limited Vinyl Releases https://steemit.com//recordpool/@warmcracklesound/cop-while-you-can-new-and-limited-vinyl-releases@warmcracklesound7812.0460
Song of the Day: Itro - Up https://steemit.com//recordpool/@danielwong/song-of-the-day-itro-up@danielwong76317.2400
Blogging Around Day 71: Evolution of Aristos Petros https://steemit.com//blog/@jpederson96/blogging-around-day-71-evolution-of-aristos-petros@jpederson966258.9610

in terms of comments

TitleAuthorUpvotesCommentsPayout
Steemit Open Mic Week 78 🎵 | Beyonce: Listen |🎻 https://steemit.com//openmic/@silentscreamer/znifwtme@silentscreamer564833.2280
Ason Intrigue - Summertime's Blue Sumday Rad Mix https://steemit.com//dsound/@asonintrigue/20180326t220035147z-ason-intrigue-summertimes-blue-sumday-rad-mix@asonintrigue78265.6890
'Steemit Record Pool' Weekly Roundup Contest Winners #10 | Curate Music & Win Rewards! https://steemit.com//music/@recordpool/steemit-record-pool-weekly-roundup-contest-winners-10-or-curate-music-and-win-rewards@recordpool492512.6020
Steem Music : Fly Me To The Moon https://steemit.com//steem-music/@sireh/steem-music-fly-me-to-the-moon@sireh107128.8000
Steemit Recordpool: Addicted to this Perplexing Horn-laced Beat by Outkast "SpottieOttieDopaliscious" https://steemit.com//recordpool/@mateonav53/steemit-recordpool-addicted-to-this-perplexing-horn-laced-beat-by-outkast-spottieottiedopaliscious@mateonav5316110.3540
#recordpool Weekly Analysis Report #8 (Weekly Contest #11) https://steemit.com//recordpool/@superoo7/recordpool-weekly-analysis-report-8-weekly-contest-11@superoo710381.5630
Curator Roundtable #1 https://steemit.com//curator/@zingali/curator-roundtable-1@zingali1260.3270
BEST NEW MUSIC: Toshio Matsuura Group - Brown Paper Bag [jazz drum n' bass live band cover] https://steemit.com//music/@rawselectmusic/best-new-music-toshio-matsuura-group-brown-paper-bag-jazz-drum-n-bass-live-band-cover@rawselectmusic1250.2850
Blogging Around Day 71: Evolution of Aristos Petros https://steemit.com//blog/@jpederson96/blogging-around-day-71-evolution-of-aristos-petros@jpederson966258.9610
Song of the day - Through The Barricades https://steemit.com//recordpool/@grayarty/song-of-the-day-through-the-barricades@grayarty2642.1100

SQL Queries

I changed the query this week, where the SQL Query performance had increase significantly.

Details about it at SteemSQL - New Full Text Search indexed json_metadata by @arcange

Overall Stats

SELECT
  COUNT(DISTINCT author)  AS Authors,
  COUNT(*)                AS Posts,
  SUM(children)           AS Comments,
  SUM(net_votes)          AS Upvotes,
  SUM(pending_payout_value) + SUM(total_payout_value) AS Payouts
FROM Comments (NOLOCK)
WHERE
  parent_author = '' AND
  created >= CONVERT(datetime,'07/01/2017') AND
  created< CONVERT(datetime,'04/02/2018') AND
  depth = 0 AND
  ISJSON(json_metadata) > 0 AND
  CONTAINS(json_metadata, 'recordpool')

Weekly Stats

SELECT
  COUNT(DISTINCT author)  AS Authors,
  COUNT(*)                AS Posts,
  SUM(children)           AS Comments,
  SUM(net_votes)          AS Upvotes,
  SUM(pending_payout_value) + SUM(total_payout_value) AS Payouts
FROM Comments (NOLOCK)
WHERE
  parent_author = '' AND
  created >= CONVERT(datetime,'03/26/2018') AND
  created< CONVERT(datetime,'04/02/2018') AND
  depth = 0 AND
  ISJSON(json_metadata) > 0 AND
  CONTAINS(json_metadata, 'recordpool')

Weekly Top Author

SELECT
 '@' + author AS Authors,
 COUNT(*) AS Posts,
 SUM(net_votes) AS Votes,
 SUM(children) AS Comments,
 SUM(pending_payout_value) + SUM(total_payout_value) AS Total_Payout
FROM
 COMMENTS (NOLOCK)
WHERE
 dirty = 'False' AND
 ISJSON(json_metadata) > 0 AND
 CONTAINS(json_metadata, 'recordpool') AND
 parent_author = '' and
 created >= CONVERT(datetime,'03/26/2018') AND
 created< CONVERT (datetime, '04/02/2018')
GROUP BY
   Author
ORDER BY
 Posts DESC

Top Post

SELECT
  title + ' https://steemit.com/' + url AS Title,
  '@' + author AS Author,
  net_votes as Upvotes,
  children as Comments,
  pending_payout_value + total_payout_value as Payout
FROM Comments (NOLOCK)
WHERE
  parent_author = '' AND
  created >= CONVERT(datetime,'03/26/2018') AND
  created< CONVERT(datetime,'04/02/2018') AND
  depth = 0 AND
  ISJSON(json_metadata) > 0 AND
  CONTAINS(json_metadata, 'recordpool')
ORDER BY
  Upvotes desc

Sort:  

nice post I hope your day is fun

You've been upvoted by TeamMalaysia Community :-

To support the growth of TeamMalaysia Follow our upvotes by using steemauto.com and follow trail of @myach

Vote TeamMalaysia witness bitrocker2020 using this link vote for witness

We recommended this post here.

We are Discover Steem, if you like our work consider giving us an upvote. :) If you don't wish to receive recommendations under your posts, reply with STOP.

Professional la.... you are expert!

#Recordpool is fly! Good write man

Coin Marketplace

STEEM 0.04
TRX 0.32
JST 0.082
BTC 59522.21
ETH 1570.73
USDT 1.00
SBD 0.42