Skip to content

Commit

Permalink
Merge pull request #1227 from edenia/dev
Browse files Browse the repository at this point in the history
Production Release
  • Loading branch information
xavier506 committed Jul 4, 2023
2 parents 5d65340 + 647d477 commit 2a7f5d5
Show file tree
Hide file tree
Showing 22 changed files with 154 additions and 113 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/deploy-libre-testnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ jobs:
HAPI_EOS_STATE_HISTORY_PLUGIN_ENDPOINT: 'ws://api-node.libre-testnet:8080'
HAPI_EOS_MISSED_BLOCKS_ENABLED: 'false'
HAPI_EOS_BLOCK_HISTORY_DAYS: 90
HAPI_EOS_MAX_CPU_BLOCK: 100000
HAPI_EOS_MAX_NET_BLOCK: 1048576
HAPI_EOS_API_CHAIN_ID: b64646740308df2ee06c6b72f34c0f7fa066d940e831f752db2006fcc2b78dee
HAPI_EOS_BASE_ACCOUNT: ${{ secrets.HAPI_EOS_BASE_ACCOUNT }}
HAPI_EOS_BASE_ACCOUNT_PASSWORD: ${{ secrets.HAPI_EOS_BASE_ACCOUNT_PASSWORD }}
Expand All @@ -107,6 +109,7 @@ jobs:
HAPI_SYNC_PRODUCER_CPU_INTERVAL: '6'
HAPI_SYNC_PRODUCER_INFO_INTERVAL: '1'
HAPI_SYNC_SCHEDULE_HISTORY_INTERVAL: 86400
HAPI_SYNC_STATS_INTERVAL: 3600
HAPI_EOS_EXCHANGE_RATE_API: 'https://dashboard-api.libre.org/exchange-rates'
HAPI_COINGECKO_API_TOKEN_ID: LIBRE
HAPI_REWARDS_TOKEN: LIBRE
Expand Down
2 changes: 2 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ services:
HAPI_EOSRATE_GET_STATS_USER: '${HAPI_EOSRATE_GET_STATS_USER}'
HAPI_EOSRATE_GET_STATS_PASSWORD: '${HAPI_EOSRATE_GET_STATS_PASSWORD}'
HAPI_EOS_BLOCK_HISTORY_DAYS: '${HAPI_EOS_BLOCK_HISTORY_DAYS}'
HAPI_EOS_MAX_CPU_BLOCK: '${HAPI_EOS_MAX_CPU_BLOCK}'
HAPI_EOS_MAX_NET_BLOCK: '${HAPI_EOS_MAX_NET_BLOCK}'
HAPI_EOS_MISSED_BLOCKS_ENABLED: '${HAPI_EOS_MISSED_BLOCKS_ENABLED}'
hasura:
container_name: '${STAGE}-${APP_NAME}-hasura'
Expand Down
4 changes: 3 additions & 1 deletion hapi/src/config/eos.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,7 @@ module.exports = {
rewardsToken: process.env.HAPI_REWARDS_TOKEN,
eosRateUrl: process.env.HAPI_EOSRATE_GET_STATS_URL,
eosRateUser: process.env.HAPI_EOSRATE_GET_STATS_USER,
eosRatePassword: process.env.HAPI_EOSRATE_GET_STATS_PASSWORD
eosRatePassword: process.env.HAPI_EOSRATE_GET_STATS_PASSWORD,
maxBlockNetUsage: parseInt(process.env.HAPI_EOS_MAX_NET_BLOCK) || 1048576,
maxBlockCpuUsage: parseInt(process.env.HAPI_EOS_MAX_CPU_BLOCK) || 100000
}
2 changes: 1 addition & 1 deletion hapi/src/config/workers.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
process.env.HAPI_SYNC_PRODUCER_INFO_INTERVAL || 1
),
cpuWorkerInterval: parseInt(process.env.HAPI_SYNC_PRODUCER_CPU_INTERVAL),
syncStatsInterval: parseInt(process.env.HAPI_SYNC_STATS_INTERVAL || 60),
syncStatsInterval: parseInt(process.env.HAPI_SYNC_STATS_INTERVAL || 3600),
syncExchangeRate: parseInt(process.env.HAPI_SYNC_EXCHANGE_RATE || 86400),
syncScheduleHistoryInterval: parseInt(
process.env.HAPI_SYNC_SCHEDULE_HISTORY_INTERVAL || 0
Expand Down
3 changes: 1 addition & 2 deletions hapi/src/services/missed-blocks.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,7 @@ const getBlocksInRange = async (start, end) => {
SELECT
schedule_version,
producer,
block_num,
block_id
block_num
FROM
block_history
WHERE
Expand Down
115 changes: 74 additions & 41 deletions hapi/src/services/state-history-plugin.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const { Serialize } = require('eosjs')

const statsService = require('./stats.service')
const { eosConfig } = require('../config')
const { hasuraUtil, sleepFor } = require('../utils')
const { hasuraUtil, sleepFor, eosUtil } = require('../utils')

let types
let ws
Expand All @@ -13,7 +13,6 @@ const getLastBlockNumInDatabase = async () => {
const query = `
query {
blocks: block_history(limit: 1, order_by: {block_num: desc}, where: {producer: {_neq: "NULL"}}) {
id
block_num
}
}
Expand All @@ -23,18 +22,16 @@ const getLastBlockNumInDatabase = async () => {
return data?.blocks?.length > 0 ? data.blocks[0].block_num : 0
}

const saveBlockHistory = async payload => {
const mutation = `
mutation ($payload: block_history_insert_input!) {
block: insert_block_history_one(object: $payload, on_conflict: {constraint: block_history_block_num_key, update_columns: [producer,schedule_version,block_id,timestamp,transactions_length]}) {
id
const saveBlocks = async (blocks) => {
const upsertMutation = `
mutation ($blocks: [block_history_insert_input!]!) {
insert_block_history(objects: $blocks, on_conflict: {constraint: block_history_pkey, update_columns: [block_num,producer,schedule_version,timestamp,transactions_length,cpu_usage,net_usage]}) {
affected_rows,
}
}
}
`

const data = await hasuraUtil.request(mutation, { payload })

return data.block
await hasuraUtil.request(upsertMutation, { blocks })
}

const deserialize = (type, array) => {
Expand Down Expand Up @@ -66,15 +63,13 @@ const serialize = (type, value) => {
return buffer.asUint8Array()
}

const send = async message => {
const send = async (message) => {
if (ws.readyState === 1) {
return ws.send(message)
}

console.log('waiting for ready state before send message')
await sleepFor(1)

return send(message)
ws.close()
}

const requestBlocks = (requestArgs = {}) => {
Expand All @@ -84,7 +79,7 @@ const requestBlocks = (requestArgs = {}) => {
{
start_block_num: 0,
end_block_num: 4294967295,
max_messages_in_flight: 1000,
max_messages_in_flight: 1,
have_positions: [],
fetch_block: true,
irreversible_only: false,
Expand All @@ -96,7 +91,9 @@ const requestBlocks = (requestArgs = {}) => {
)
}

const handleBlocksResult = async data => {
let blocksData = []

const handleBlocksResult = async (data) => {
try {
if (!data.block || !data.block.length) {
send(
Expand All @@ -114,15 +111,31 @@ const handleBlocksResult = async data => {
prev_block: data.prev_block
}

await saveBlockHistory({
const usage = block?.transactions?.reduce(
(total, current) => {
total.cpu_usage +=
(current.cpu_usage_us / eosConfig.maxBlockCpuUsage) * 100 || 0
total.net_usage +=
(current.net_usage_words / eosConfig.maxBlockNetUsage) * 100 || 0
return total
},
{ net_usage: 0, cpu_usage: 0 }
)

blocksData.push({
producer: block.producer,
schedule_version: block.schedule_version,
block_id: block.this_block.block_id,
block_num: block.this_block.block_num,
transactions_length: block.transactions.length,
timestamp: block.timestamp
timestamp: block.timestamp,
...usage
})

if (blocksData.length === 50) {
await saveBlocks(blocksData)
blocksData = []
}

await statsService.udpateStats({ last_block_at: block.timestamp })
send(
serialize('request', ['get_blocks_ack_request_v0', { num_messages: 1 }])
Expand All @@ -149,12 +162,31 @@ const cleanOldBlocks = async () => {
await hasuraUtil.request(mutation, { date })
}

const getStartBlockNum = async () => {
const startBlockNum = await getLastBlockNumInDatabase()

if (startBlockNum === 0) {
const info = await eosUtil.getInfo()
const LIB = info?.last_irreversible_block_num
const days = eosConfig.keepBlockHistoryForDays
const date = new Date()

date.setSeconds(date.getSeconds() - 60 * 60 * 24 * days)

const estimatedBlockNum = Math.ceil(LIB - ((new Date() - date) / 1000) * 2)

return estimatedBlockNum > 0 ? estimatedBlockNum : 0
}

return startBlockNum
}

const init = async () => {
if (!eosConfig.stateHistoryPluginEndpoint) {
return
}

const startBlockNum = await getLastBlockNumInDatabase()
const startBlockNum = await getStartBlockNum()

ws = new WebSocket(eosConfig.stateHistoryPluginEndpoint, {
perMessageDeflate: false,
Expand All @@ -165,32 +197,33 @@ const init = async () => {
console.log('🚀 Connected to state_history_plugin socket')
})

ws.on('message', data => {
try {
if (!types) {
const abi = JSON.parse(data)
types = Serialize.getTypesFromAbi(Serialize.createInitialTypes(), abi)
requestBlocks({ start_block_num: startBlockNum })
ws.on('message', (data) => {
if (!types) {
const abi = JSON.parse(data)
types = Serialize.getTypesFromAbi(Serialize.createInitialTypes(), abi)
requestBlocks({ start_block_num: startBlockNum })

return
}
return
}

const [type, response] = deserialize('result', data)
const [type, response] = deserialize('result', data)

switch (type) {
case 'get_blocks_result_v0':
handleBlocksResult(response)
break
default:
console.log(`unsupported result ${type}`)
break
}
} catch (error) {
console.log(`ws message error: ${error.message}`)
switch (type) {
case 'get_blocks_result_v0':
handleBlocksResult(response)
break
default:
console.log(`unsupported result ${type}`)
break
}
})

ws.on('error', error => console.error(error))
ws.on('error', (error) => console.error('STATE HISTORY PLUGIN', error))

ws.on('close', async () => {
await sleepFor(60)
init()
})
}

module.exports = {
Expand Down
38 changes: 1 addition & 37 deletions hapi/src/services/stats.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const { StatusCodes } = require('http-status-codes')
const moment = require('moment')

const { hasuraUtil, sequelizeUtil, sleepFor, eosUtil } = require('../utils')
const transactionService = require('./transactions.service')

const STAT_ID = 'bceb5b75-6cb9-45af-9735-5389e0664847'

Expand Down Expand Up @@ -152,7 +151,6 @@ const getStats = async () => {
last_block_at
tps_all_time_high
missed_blocks
transaction_history
updated_at
created_at
}
Expand All @@ -163,38 +161,6 @@ const getStats = async () => {
return data.stat
}

const formatTransactionHistory = async () => {
let txrHistory = {}
const intervals = [
'3 Hours',
'6 Hours',
'12 Hours',
'1 Day',
'4 Days',
'7 Days',
'14 Days',
'1 Month',
'2 Months',
'3 Months',
'6 Months',
'1 Year'
]

const stats = await getStats()

if (!stats) return

for (const interval of intervals) {
const data = await transactionService.getTransactions(interval)

txrHistory = { ...txrHistory, [interval]: data }
}

await udpateStats({
transaction_history: txrHistory
})
}

const getCurrentMissedBlock = async () => {
let lastBlockAt = null
let data = null
Expand Down Expand Up @@ -386,7 +352,6 @@ const syncTPSAllTimeHigh = async () => {
interval.value as datetime,
sum(block_history.transactions_length) as transactions_count,
array_to_string(array_agg(block_history.block_num), ',') as blocks
FROM
interval
INNER JOIN
Expand Down Expand Up @@ -491,6 +456,5 @@ module.exports = {
getBlockDistribution,
getStats,
udpateStats,
getCurrentMissedBlock,
formatTransactionHistory
getCurrentMissedBlock
}
4 changes: 3 additions & 1 deletion hapi/src/services/transactions.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ const getTransactions = async (range = '3 Hours') => {
SELECT
interval.value as datetime,
sum(block_history.transactions_length)::integer as transactions_count
avg(block_history.transactions_length)::integer as transactions_count,
avg(block_history.cpu_usage)::numeric(5,2) as cpu,
avg(block_history.net_usage)::numeric(6,3) as net
FROM
interval
LEFT JOIN
Expand Down
1 change: 1 addition & 0 deletions hapi/src/utils/get-granularity-from-range.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const getGranularityFromRange = range => {
granularity = 'minute'
break
case '1 Day':
case '2 Days':
case '4 Days':
case '7 Days':
case '14 Days':
Expand Down
2 changes: 2 additions & 0 deletions hasura/metadata/actions.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ type CPUBenchmark {
type Transaction {
datetime: String
transactions_count: Int
cpu: Float
net: Float
}

type ProducersSummary {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
table:
schema: public
name: block_history
schema: public
select_permissions:
- role: guest
permission:
columns:
- id
- block_id
- block_num
- transactions_length
- timestamp
- created_at
- updated_at
- transactions_length
- producer
- cpu_usage
- net_usage
- schedule_version
- created_at
filter: {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- CREATE OR REPLACE FUNCTION public.block_history_by_producer(since timestamp with time zone)
-- RETURNS SETOF block_history_by_producer_type
-- LANGUAGE sql
-- IMMUTABLE STRICT
-- AS $function$
-- SELECT gen_random_uuid() as id, producer, count(1) AS "blocks" FROM block_history WHERE "timestamp" >= since GROUP BY producer;
-- $function$;
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CREATE OR REPLACE FUNCTION public.block_history_by_producer(since timestamp with time zone)
RETURNS SETOF block_history_by_producer_type
LANGUAGE sql
IMMUTABLE STRICT
AS $function$
SELECT gen_random_uuid() as id, producer, count(1) AS "blocks" FROM block_history WHERE "timestamp" >= since GROUP BY producer;
$function$;
Loading

0 comments on commit 2a7f5d5

Please sign in to comment.