<center><img src="https://steemitimages.com/DQmZBdyTYtxfgNECBgm3Z69LfyKZeSW3zSfVteeUCt8BqxK/image.png" alt="hadoop" /></center> ## Hadoop MapReduce brainstorming: Bitshares Why? I'm currently studying for an upcoming BigData exam which largely focuses on Map Reduce. ### Market maker incentives Given the transaction history for all holders of a select asset (large amount of data dumped to disk in a nosql manner), summarize the market maker participation (sum of buys and sells in a time period) for use during a manual sharedrop (market maker incentives). The final output will be a text file containing rows of 'username final_trading_value percent_total_market_activity'. We could then perform a sharedrop which takes percent_total_market_activity and the user's current_asset_holdings into account when performing the final distribution (so as to incentivize holding), or simply the activity so that users that no longer hold said asset but performed market maker activities are still rewarded. #### Related content * [Original Bitsharestalk thread](https://bitsharestalk.org/index.php/topic,24622.msg308945.html) * [Bitshares-core repo issue: 'API History commands'](https://github.com/bitshares/bitshares-core/issues/329) #### Acknowledged proposed MR design limitations * Chained MR jobs instead of a single MR job. Potentially could introduce a partitioner/sorter to merge the two jobs into the one. * The current plan is to treat buyers and sellers identically, however we could include an user input for selecting a strategy (incentivize buyers/sellers only or both). * Not production MR code, simply a pseudocode plan. * If a 'market-maker' does not hold the #### User input variables * Timestamp range for market history * Trading pair - bitUSD:BTS * Reference asset - bitUSD. #### Pre-MR Data steps Note: This will require interacting with the full_node client (with the History_API plugin enabled) through websockets as the cli_wallet has insufficient commands available to it & I don't believe you can authenticate over [http remote procedure calls](http://docs.bitshares.org/api/rpc.html). ##### Example websocket commands: ***Documentation***: [Github wiki docs](https://github.com/bitshares/bitshares-core/wiki/Websocket-Subscriptions), [Bitshares.eu wiki docs](http://docs.bitshares.org/api/rpc.html) Note: The API docs do not have example output, so you'll need to run them before understanding their full output. ###### Login ``` > {"id":2,"method":"call","params":[1,"login",["",""]]} < {"id":2,"jsonrpc":"2.0","result":true} ``` ###### Get asset holder count ``` > {"id":1, "method":"call", "params":[2,"get_asset_holders_count",["1.3.0"]]} < {"id":1,"jsonrpc":"2.0","result":24085} ``` ###### Get asset holder accounts & asset holdings (10 instead of 24085 for simple example Acquire list of asset holders -> Output to text file 'asset_holders.json' ``` > {"id":1, "method":"call", "params":[2,"get_asset_holders",["1.3.0", 0, 10]]} < {"id":1,"jsonrpc":"2.0","result":[{"name":"poloniexcoldstorage","account_id":"1.2.24484","amount":"29000120286608"},{"name":"chbts","account_id":"1.2.224015"," amount":"21323905140061"},{"name":"yunbi-cold-wallet","account_id":"1.2.29211","amount":"14000000042195"},{"name":"bitcc-bts-cold","account_id":"1.2.152313","amo unt":"10943523959939"},{"name":"yunbi-granary","account_id":"1.2.170580","amount":"10000000048617"},{"name":"jubi-bts","account_id":"1.2.253310","amount":"699215 7568429"},{"name":"bittrex-deposit","account_id":"1.2.22583","amount":"6843227690310"},{"name":"btschbtc","account_id":"1.2.224081","amount":"5000098977059"},{"n ame":"bterdeposit","account_id":"1.2.9173","amount":"2195728656599"},{"name":"aloha","account_id":"1.2.10946","amount":"2061578333527"}]} ``` ###### Dump each asset holder's transaction history to json file on disk Note: This stage doesn't require websockets & can be performed using the web rpc. ``` curl --data '{"jsonrpc": "2.0", "method": "get_account_history", "params": ["customminer", "1000"], "id": 1}' http://127.0.0.1:8092/rpc > customminer_account_history.json ``` ###### Finally merge the files Merge the many json files into the one massive json file containing asset holders transaction history (potentially using the [unix jq program](https://stedolan.github.io/jq/)). ###### Websocket clients I've been looking into this and I don't believe you can automate [wscat](https://www.npmjs.com/package/wscat) nor dump the command output to disk, so a simple bash script is out of the equation. I've narrowed down my preference to either Haskell or NodeJs. * Haskell: [wuss](https://github.com/tfausak/wuss) * NodeJS: [ws](https://www.npmjs.com/package/ws) * Python: [python-bitshares](https://github.com/xeroc/python-bitshares)? * Other: https://github.com/joewalnes/websocketd (Maybe server only?) #### Map Phase 1 * Import user-variable: Timestamp range * Disregard any transaction outwith timestamp range! * Filter each entry in transaction histroy json file for: Filled Order (FO) * For each parsed FO: * Extract trade participants (buyer & seller) * Extract trade amount * Counter: Overall_traded_currency * Produce key: User1_User2 //buyer_seller * Produce value: User1TradeAmount_User2TradeAmount * End Map phase, outputting the key and value pair towards the reducer. #### Reduce Phase 1 Note: Within the 1st reduce phase we have every occurrence of trades between user1_user2, nobody else and not the reverse user2_user1. Splitting this will require a second reduce job or changing the logic of the first MR task. * Input key & value pair from the mapper. * Output to text file 'participants.txt' * User1:buy_amount * User2:sell_amount --- #### Map phase 2 * For each row in 'participants.txt' file: * Split row on ':' * Key = Username * Value = buy/sell amount #### Partitioner * Sort alphabetically on key so as to send identical username <k,v> pairs to the same reducer. #### Reduce phase 2 * Sum the buy & sell values (amount, not trading value) for each user. * Divide the total by the 'Overall_traded_currency' counter used during MR phase 1. This provides us a % of total market activity for an user. * Output to text file 'end_data.txt' * username summed_trading_value percent_total_market_activity --- Any input? Please do comment below! Do you have an idea for a Map Reduce program for Bitshares or Steemit? I'd love to hear about it! An alternative to getting the list of asset holders and their individual full account history would be to dump the tx from each blocks within a time range input by the user, if possible.. Best regards, @cm-steem
author | cm-steem |
---|---|
permlink | hadoop-mapreduce-brainstorming-bitshares |
category | bitshares |
json_metadata | {"tags":["bitshares","beyondbitcoin","programming","cryptocurrency","hadoop"],"users":["cm-steem"],"image":["https://steemitimages.com/DQmZBdyTYtxfgNECBgm3Z69LfyKZeSW3zSfVteeUCt8BqxK/image.png"],"app":"steemit/0.1","format":"markdown","links":["https://bitsharestalk.org/index.php/topic,24622.msg308945.html","https://github.com/bitshares/bitshares-core/issues/329","http://docs.bitshares.org/api/rpc.html","https://github.com/bitshares/bitshares-core/wiki/Websocket-Subscriptions","https://stedolan.github.io/jq/","https://www.npmjs.com/package/wscat","https://github.com/tfausak/wuss","https://www.npmjs.com/package/ws","https://github.com/xeroc/python-bitshares","https://github.com/joewalnes/websocketd"]} |
created | 2017-07-25 14:34:00 |
last_update | 2017-07-25 21:20:54 |
depth | 0 |
children | 26 |
last_payout | 2017-08-01 14:34:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 156.086 HBD |
curator_payout_value | 16.305 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,654 |
author_reputation | 58,522,774,254,119 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,674,077 |
net_rshares | 47,170,374,788,962 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wackou | 0 | 9,650,566,852,196 | 80% | ||
fuzzyvest | 0 | 17,499,918,632,196 | 100% | ||
sandra | 0 | 21,798,577,651 | 9% | ||
taconator | 0 | 88,198,974,491 | 50% | ||
steempower | 0 | 0 | 100% | ||
officialfuzzy | 0 | 9,347,631,560,655 | 100% | ||
pheonike | 0 | 579,596,275,908 | 100% | ||
proctologic | 0 | 3,798,516,952 | 5% | ||
fractalnode | 0 | 496,194,310,270 | 100% | ||
vato | 0 | 596,583,791,401 | 100% | ||
hipster | 0 | 923,783,105,475 | 100% | ||
tsugimoto | 0 | 181,943,629,015 | 100% | ||
cm-steem | 0 | 223,946,846,430 | 100% | ||
bravenewcoin | 0 | 14,620,632,635 | 100% | ||
michaelx | 0 | 82,847,813,944 | 100% | ||
vortac | 0 | 3,848,951,517,571 | 100% | ||
simon.braki.love | 0 | 11,417,903,291 | 100% | ||
animus | 0 | 332,865,268 | 1% | ||
mikeinfla | 0 | 944,677,538 | 100% | ||
sc-steemit | 0 | 5,785,909,145 | 15% | ||
moisesmcardona | 0 | 1,109,255,677 | 1% | ||
husamia | 0 | 6,376,863,533 | 100% | ||
stephenkendal | 0 | 387,226,555,084 | 100% | ||
team101 | 0 | 24,895,741,481 | 100% | ||
maarnio | 0 | 9,791,724,416 | 20% | ||
tracemayer | 0 | 19,390,091,593 | 100% | ||
dylanhobalart | 0 | 3,793,647,131 | 5% | ||
thomasp | 0 | 393,189,310 | 100% | ||
rishi556 | 0 | 2,092,776,919 | 100% | ||
steemtruth | 0 | 58,316,550,640 | 15% | ||
spiderlee3 | 0 | 587,942,155 | 100% | ||
darth-azrael | 0 | 4,172,203,139 | 13% | ||
darth-cryptic | 0 | 752,911,952 | 13% | ||
lawrenceho84 | 0 | 355,482,600,463 | 100% | ||
trafalgar | 0 | 1,889,687,286,014 | 9% | ||
gogumacat | 0 | 444,468,273,933 | 10% | ||
nuad01 | 0 | 133,014,737 | 100% | ||
tellermachine | 0 | 2,443,990,992 | 100% | ||
aarkay | 0 | 298,866,384 | 100% | ||
mandagoi | 0 | 9,404,487,925 | 10% | ||
me-do | 0 | 222,909,214 | 1% | ||
frankintaiwan | 0 | 5,836,174,975 | 100% | ||
dandelion18 | 0 | 5,757,814,645 | 100% | ||
hebro | 0 | 13,205,471,563 | 100% | ||
headliner | 0 | 13,685,634,567 | 100% | ||
firstsomali | 0 | 886,191,185 | 100% | ||
monajam | 0 | 1,058,851,525 | 100% | ||
draoissey | 0 | 648,290,518 | 100% | ||
jamie1128 | 0 | 454,335,858 | 100% | ||
seymourbucks | 0 | 219,045,758 | 4% | ||
alexsandrbrat | 0 | 992,818,208 | 100% | ||
mkotibabu | 0 | 19,314,261,920 | 100% | ||
odigetti | 0 | 875,803,974 | 100% | ||
antares007 | 0 | 2,506,991,488 | 100% | ||
sols | 0 | 34,536,991,157 | 100% | ||
shawshank-steem | 0 | 3,092,803,854 | 100% | ||
daydreams4rock | 0 | 0 | 0% | ||
kore4stock | 0 | 592,863,763 | 100% | ||
xxcynicalkidxx | 0 | 17,428,652,817 | 50% | ||
lisagenaille | 0 | 4,933,836,950 | 20% | ||
rooseveltwoods | 0 | 1,640,977,327 | 100% | ||
livenowandwow | 0 | 7,022,890,432 | 100% | ||
kingxerxesdex | 0 | 1,414,432,046 | 100% | ||
nikitinskiy | 0 | 1,456,346,743 | 100% | ||
shifty0g | 0 | 22,583,298,472 | 100% | ||
bilal7 | 0 | 133,441,049 | 100% | ||
casvnova | 0 | 1,302,615,347 | 100% | ||
brandonh | 0 | 28,331,937,979 | 100% | ||
mohammedfelahi | 0 | 385,052,943 | 100% | ||
boosterpack | 0 | 2,662,153,263 | 100% | ||
alexmicrocontrol | 0 | 21,284,942,193 | 100% | ||
koshin | 0 | 675,084,017 | 100% | ||
steppingout23 | 0 | 29,452,809,449 | 5% | ||
bilderberg | 0 | 1,141,801,836 | 100% | ||
vallesleoruther | 0 | 1,967,735,962 | 100% | ||
kel | 0 | 6,617,560,545 | 100% | ||
midgeteg | 0 | 3,468,350,106 | 100% | ||
hendh | 0 | 1,099,394,013 | 100% | ||
jpederson96 | 0 | 412,596,829 | 100% | ||
nandikafuture | 0 | 789,674,413 | 100% | ||
yukimaru | 0 | 2,140,701,369 | 100% | ||
bullshark | 0 | 64,443,998,960 | 100% | ||
d33rgod | 0 | 2,789,618,085 | 10% | ||
greatness96 | 0 | 60,822,871 | 100% | ||
alansteemword | 0 | 2,339,458,449 | 100% | ||
lexico12 | 0 | 900,597,158 | 100% | ||
senatordonald | 0 | 979,107,834 | 100% | ||
waribiebo | 0 | 119,386,495 | 100% | ||
miller1994 | 0 | 1,335,688,898 | 100% | ||
bitcoin1488 | 0 | 342,977,593 | 100% | ||
geneeverett | 0 | 91,286,665 | 100% | ||
kchantha | 0 | 580,670,418 | 100% | ||
firoj | 0 | 992,163,455 | 100% | ||
aaronaugustine | 0 | 265,784,647 | 100% | ||
benedicamillius | 0 | 52,230,464 | 100% | ||
surendra12345 | 0 | 256,285,238 | 100% | ||
manah | 0 | 1,196,797,031 | 100% | ||
academix87 | 0 | 474,219,461 | 100% | ||
piyushkansal | 0 | 105,450,241 | 100% | ||
kasho | 0 | 439,037,584 | 100% | ||
enriqueig | 0 | 272,135,488 | 100% | ||
jawadms | 0 | 1,044,614,460 | 100% | ||
richintel | 0 | 1,314,587,480 | 100% | ||
justdentist | 0 | 3,882,233,327 | 100% | ||
linux911 | 0 | 728,861,849 | 100% | ||
parmjit | 0 | 672,980,767 | 100% | ||
abhishek587 | 0 | 591,349,833 | 100% | ||
cron | 0 | 2,503,033,991 | 100% | ||
sem89 | 0 | 139,419,496 | 100% | ||
jasonwalcott | 0 | 1,160,670,759 | 100% | ||
moromaro | 0 | 2,256,430,965 | 10% | ||
raoharoon | 0 | 295,970,451 | 100% | ||
steemit-israel | 0 | 911,124,015 | 100% | ||
a1n21t | 0 | 678,989,898 | 100% | ||
roy92 | 0 | 576,088,285 | 100% | ||
dgraham | 0 | 1,143,256,219 | 100% | ||
saifulrahmad | 0 | 1,137,452,824 | 100% | ||
jjb777 | 0 | 330,789,810 | 100% | ||
chutikandendoung | 0 | 806,662,866 | 100% | ||
maite | 0 | 104,459,929 | 100% | ||
muhaidin | 0 | 441,052,999 | 100% | ||
rosicreative | 0 | 516,496,236 | 100% | ||
amaliatul | 0 | 290,166,400 | 100% | ||
kuza19 | 0 | 313,379,487 | 100% | ||
flakusan | 0 | 951,744,744 | 100% | ||
ashikyeamin | 0 | 266,952,386 | 100% | ||
t3ddy | 0 | 348,198,755 | 100% | ||
sebastian91 | 0 | 1,073,612,819 | 100% | ||
mostafagab | 0 | 980,759,741 | 100% | ||
ensee | 0 | 121,869,506 | 100% | ||
mohitbarman | 0 | 806,659,920 | 100% | ||
zaanseschans | 0 | 1,003,972,100 | 100% | ||
nazarkhadi | 0 | 789,249,723 | 100% | ||
khryz24 | 0 | 690,593,185 | 100% | ||
angelrodriguez | 0 | 638,363,371 | 100% | ||
dat81 | 0 | 911,117,549 | 100% |
Thank for sharing the knowledge
author | abhishek587 |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t144417483z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 14:44:24 |
last_update | 2017-07-25 14:44:24 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 14:44:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 767,312,426,590 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,675,376 |
net_rshares | 2,627,825,582 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 2,627,825,582 | 1% |
Thank you for posting. All information is usable .
author | admyrer |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t161142813z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 16:11:42 |
last_update | 2017-07-25 16:11:42 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 16:11:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 419,688,682,599 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,685,336 |
net_rshares | 0 |
really is brainstorming awesome.
author | adnanrabbani |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t144217113z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 14:42:24 |
last_update | 2017-07-25 14:42:24 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 14:42:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 93,370,785,737,224 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,675,112 |
net_rshares | 2,627,825,582 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 2,627,825,582 | 1% |
https://steemit.com/corvette/@bitcoin1488/look-at-all-the-corvette-stuff Resteem this post and the person with the most upvotes will receive 3 steem
author | bitcoin1488 |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t162550912z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"links":["https://steemit.com/corvette/@bitcoin1488/look-at-all-the-corvette-stuff"],"app":"steemit/0.1"} |
created | 2017-07-25 16:25:54 |
last_update | 2017-07-25 16:30:21 |
depth | 1 |
children | 1 |
last_payout | 2017-08-01 16:25:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 149 |
author_reputation | -1,036,342,845,975 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,686,786 |
net_rshares | -813,846,320,592 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vato | 0 | -587,295,441,064 | -100% | ||
cm-steem | 0 | -226,550,879,528 | -100% | ||
bitcoin1488 | 0 | 0 | 0% |
Found this article in my #googlesearch @bitcoin1488 so did an update. Keep me posted. https://steemit.com/steemit/@bitcoin1488/steemit-resteem-upvote-auction-also-on-ebay-as-a-reserve-auction
author | bitcoin1488 |
---|---|
permlink | re-bitcoin1488-re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170726t204857760z |
category | bitshares |
json_metadata | {"tags":["googlesearch","bitshares"],"users":["bitcoin1488"],"links":["https://steemit.com/steemit/@bitcoin1488/steemit-resteem-upvote-auction-also-on-ebay-as-a-reserve-auction"],"app":"steemit/0.1"} |
created | 2017-07-26 20:48:57 |
last_update | 2017-07-26 20:48:57 |
depth | 2 |
children | 0 |
last_payout | 2017-08-02 20:48:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 191 |
author_reputation | -1,036,342,845,975 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,837,620 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitcoin1488 | 0 | 0 | 0% |
author | cron |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t185106263z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 18:51:06 |
last_update | 2017-07-25 18:51:06 |
depth | 1 |
children | 1 |
last_payout | 2017-08-01 18:51:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.487 HBD |
curator_payout_value | 1.494 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 41,199,477,443,220 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,701,755 |
net_rshares | 1,650,605,320,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pal | 0 | 1,621,067,248,934 | 100% | ||
cm-steem | 0 | 28,644,364,078 | 12% | ||
dat81 | 0 | 893,707,660 | 100% |
Thanks
author | dat81 |
---|---|
permlink | re-cron-re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170802t112036456z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-08-02 11:20:42 |
last_update | 2017-08-02 11:20:42 |
depth | 2 |
children | 0 |
last_payout | 2017-08-09 11:20:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 30,509,582,168 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,526,539 |
net_rshares | 0 |
Excellent analysis
author | enriqueig |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t155105860z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 15:51:06 |
last_update | 2017-07-25 15:51:06 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 15:51:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 6,884,826,572,914 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,683,082 |
net_rshares | 2,604,033,098 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 2,604,033,098 | 1% |
Very good information, very useful for me. Thanks I am waiting for the next information from you @cm-steem. I am new in steemit, please help me and guide me to be able to quickly understand steemit. Please follow me @siren7 and give good suggestions for each of my posts
author | firoj |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t155518394z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"users":["cm-steem","siren7"],"app":"steemit/0.1"} |
created | 2017-07-25 15:55:21 |
last_update | 2017-07-25 15:55:21 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 15:55:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 270 |
author_reputation | -425,331,027 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,683,555 |
net_rshares | -223,946,846,430 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | -223,946,846,430 | -100% |
This is very good post!
author | hebro |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t150415364z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 15:04:15 |
last_update | 2017-07-25 15:04:15 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 15:04:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 1,624,270,421,239 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,677,673 |
net_rshares | 0 |
I've seen this post where someone wrote a map reduce based algorithm to check steem statistics. Check here: https://steemit.com/steem/@void/steemreduce-you-personal-mapreduce-for-steem Map reduce can be a powerful mechanism. Good luck with your studies. Maybe you also want to have a quick look at apache
author | jjb777 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-cm-steem-2017725t172959755z | ||||||
category | bitshares | ||||||
json_metadata | {"tags":"bitshares","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-25 15:30:03 | ||||||
last_update | 2017-07-25 15:36:21 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-08-01 15:30:03 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.580 HBD | ||||||
curator_payout_value | 0.202 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 306 | ||||||
author_reputation | 3,338,376,561,587 | ||||||
root_title | "Hadoop MapReduce brainstorming: Bitshares" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 9,680,742 | ||||||
net_rshares | 223,314,058,967 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 221,342,813,332 | 100% | ||
cryptocashcat | 0 | 1,971,245,635 | 100% |
Good information!
author | kuza19 |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t154012997z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 15:40:15 |
last_update | 2017-07-25 15:40:15 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 15:40:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 2,168,063,269 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,681,903 |
net_rshares | 220,526,305 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kuza19 | 0 | 220,526,305 | 100% |
wonderful blog, I upvoted you and followed you
author | moromaro |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t145552110z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 14:55:51 |
last_update | 2017-07-25 14:55:51 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 14:55:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 14,702,291,738,356 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,676,727 |
net_rshares | 0 |
Thanks @cm-steem for sharing. it is informative Regards @nandikafuture
author | nandikafuture |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t144946940z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"users":["cm-steem","nandikafuture"],"app":"steemit/0.1"} |
created | 2017-07-25 14:49:48 |
last_update | 2017-07-25 14:49:48 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 14:49:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 115,452,144,045 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,676,002 |
net_rshares | 2,627,825,582 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 2,627,825,582 | 1% |
Thank you for sharing this interesting article i'm a Business Intelligence student and i like Hadoop !
author | odigetti |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t145029461z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 14:50:30 |
last_update | 2017-07-25 14:50:30 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 14:50:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.073 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 103 |
author_reputation | 1,100,886,398,260 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,676,107 |
net_rshares | 24,862,983,156 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 23,436,297,882 | 10% | ||
cm-mobile | 0 | 1,426,685,274 | 100% |
author | palashsaha |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t144704914z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 14:47:06 |
last_update | 2017-07-25 14:47:06 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 14:47:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.063 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 2,289,392,803 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,675,684 |
net_rshares | 21,652,373,573 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 2,627,825,582 | 1% | ||
mkotibabu | 0 | 19,024,547,991 | 100% |
great and nice info
author | piyushkansal |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t154657300z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 15:46:57 |
last_update | 2017-07-25 15:46:57 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 15:46:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 6,030,386,169,809 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,682,671 |
net_rshares | 2,604,033,098 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 2,604,033,098 | 1% |
@cm-steem I speak for those who dont understand any of these programming terms or true understanding. Im not a programmer but I def. enjoyed the short article. I am a crypto economics A.I enthusiast & hope I can live comfortably off internet revenue streams. Maybe programming is the way out? Thanks for sharing!
author | richintel |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t144641027z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"users":["cm-steem"],"app":"steemit/0.1"} |
created | 2017-07-25 14:46:39 |
last_update | 2017-07-25 14:46:39 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 14:46:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.078 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 312 |
author_reputation | 26,832,137,860 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,675,640 |
net_rshares | 26,754,482,567 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 23,436,297,882 | 10% | ||
sc-steemit | 0 | 1,862,383,385 | 5% | ||
cm-mobile | 0 | 1,455,801,300 | 100% |
Very good information, very useful for me. Thanks I am waiting for the next information from you @cm-steem. I am new in steemit, please help me and guide me to be able to quickly understand steemit. Please follow me @siren7 and give good suggestions for each of my posts
author | siren7 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-cm-steem-2017725t2152197z | ||||||
category | bitshares | ||||||
json_metadata | {"tags":"bitshares","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-25 14:52:24 | ||||||
last_update | 2017-07-25 14:58:42 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-08-01 14:52:24 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.351 HBD | ||||||
curator_payout_value | 0.019 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 270 | ||||||
author_reputation | 1,025,670,422,074 | ||||||
root_title | "Hadoop MapReduce brainstorming: Bitshares" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 9,676,324 | ||||||
net_rshares | 106,779,008,683 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 0 | 0% | ||
good-karma | 0 | 100,807,703,815 | 0.5% | ||
mysteem | 0 | 84,107,383 | 1% | ||
demo | 0 | 162,256,131 | 1% | ||
feruz | 0 | 1,520,766,068 | 1% | ||
esteemapp | 0 | 1,330,087,180 | 1% | ||
madlenfox | 0 | 199,564,275 | 0.5% | ||
bounties | 0 | 172,470,936 | 1% | ||
steempoll | 0 | 167,417,700 | 1% | ||
tipping | 0 | 152,150,091 | 1% | ||
djbk | 0 | 77,552,502 | 0.5% | ||
siren7 | 0 | 1,228,634,832 | 100% | ||
dat81 | 0 | 876,297,770 | 100% |
You have my UpVote ,,
author | spiderlee3 |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170726t031558387z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-26 03:16:03 |
last_update | 2017-07-26 03:16:03 |
depth | 1 |
children | 0 |
last_payout | 2017-08-02 03:16:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 143,350,007,398 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,744,940 |
net_rshares | 0 |
Good post. Very informative and useful to readers. Got really good information. This is really of great benefit to Steem community. Will continue to follow post.
author | steppingout23 |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t172330789z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 17:23:30 |
last_update | 2017-07-25 17:23:30 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 17:23:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.513 HBD |
curator_payout_value | 0.501 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 164 |
author_reputation | 2,283,427,670,056 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,692,936 |
net_rshares | 555,703,204,741 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 13,139,127,912 | 8% | ||
steppingout23 | 0 | 542,564,076,829 | 100% |
Hii Customminer nice to read about you.i am surendra from india,am also a new on steemit and welcome you to steemit.i have followed you.so, can you also follow me.Best of luck.
author | surendra12345 |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t144513867z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 14:45:48 |
last_update | 2017-07-25 14:45:48 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 14:45:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 176 |
author_reputation | -2,739,151,076,689 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,675,547 |
net_rshares | 0 |
author | t3ddy |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t151102278z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 15:11:03 |
last_update | 2017-07-25 15:11:03 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 15:11:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 36,756,602,915 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,678,493 |
net_rshares | 8,206,724,549 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 7,812,099,294 | 3% | ||
t3ddy | 0 | 394,625,255 | 100% |
Thanks for this great information.
author | team101 |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t153714698z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-07-25 15:37:30 |
last_update | 2017-07-25 15:37:30 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 15:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 12,700,047,182,916 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,681,583 |
net_rshares | 0 |
upvote y upvote! nos ayudamos todos , respondanme abjao si votaron voto sus post https://steemit.com/health/@untapentuoreja/types-of-bandages-important-for-different-types-of-injuries
author | untapentuoreja |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170725t145213148z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"links":["https://steemit.com/health/@untapentuoreja/types-of-bandages-important-for-different-types-of-injuries"],"app":"steemit/0.1"} |
created | 2017-07-25 14:51:03 |
last_update | 2017-07-25 14:51:03 |
depth | 1 |
children | 0 |
last_payout | 2017-08-01 14:51:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 184 |
author_reputation | 913,006,409,722 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,676,173 |
net_rshares | -574,261,254,771 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vato | 0 | -574,799,793,382 | -100% | ||
untapentuoreja | 0 | 538,538,611 | 100% |
Would love to think about exploring some use for such data as another way for users to get incentives / rewards for some part(s) of market participation.
author | virtualgrowth |
---|---|
permlink | re-cm-steem-hadoop-mapreduce-brainstorming-bitshares-20170805t023435918z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-08-05 02:34:33 |
last_update | 2017-08-05 02:34:33 |
depth | 1 |
children | 0 |
last_payout | 2017-08-12 02:34:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 153 |
author_reputation | 194,175,762,808,337 |
root_title | "Hadoop MapReduce brainstorming: Bitshares" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,810,035 |
net_rshares | 0 |