Skip to content
Snippets Groups Projects
Commit 7735fde4 authored by Bartek Wrona's avatar Bartek Wrona
Browse files

Merge branch 'bw_bridge_get_account_posts_by_feed_fix' into 'develop'

bridge_api.get_account_posts when sort = "feed" improvements

See merge request !357
parents 294e2411 775487c1
No related branches found
No related tags found
2 merge requests!456Release candidate v1 24,!357bridge_api.get_account_posts when sort = "feed" improvements
...@@ -94,6 +94,9 @@ class DbState: ...@@ -94,6 +94,9 @@ class DbState:
to_locate = [ to_locate = [
'hive_blocks_created_at_idx', 'hive_blocks_created_at_idx',
'hive_feed_cache_block_num_idx',
'hive_feed_cache_created_at_idx',
'hive_follows_ix5a', # (following, state, created_at, follower) 'hive_follows_ix5a', # (following, state, created_at, follower)
'hive_follows_ix5b', # (follower, state, created_at, following) 'hive_follows_ix5b', # (follower, state, created_at, following)
'hive_follows_block_num_idx', 'hive_follows_block_num_idx',
......
...@@ -286,9 +286,12 @@ def build_metadata(): ...@@ -286,9 +286,12 @@ def build_metadata():
sa.Column('post_id', sa.Integer, nullable=False), sa.Column('post_id', sa.Integer, nullable=False),
sa.Column('account_id', sa.Integer, nullable=False), sa.Column('account_id', sa.Integer, nullable=False),
sa.Column('created_at', sa.DateTime, nullable=False), sa.Column('created_at', sa.DateTime, nullable=False),
sa.Column('block_num', sa.Integer, nullable=True), sa.Column('block_num', sa.Integer, nullable=False),
sa.PrimaryKeyConstraint('account_id', 'post_id', name='hive_feed_cache_pk'), sa.PrimaryKeyConstraint('account_id', 'post_id', name='hive_feed_cache_pk'),
sa.ForeignKeyConstraint(['block_num'], ['hive_blocks.num'], name='hive_feed_cache_fk1'), sa.ForeignKeyConstraint(['block_num'], ['hive_blocks.num'], name='hive_feed_cache_fk1'),
sa.Index('hive_feed_cache_block_num_idx', 'block_num'),
sa.Index('hive_feed_cache_created_at_idx', 'created_at')
) )
sa.Table( sa.Table(
......
DROP FUNCTION IF EXISTS condenser_get_by_feed_with_reblog; DROP FUNCTION IF EXISTS condenser_get_by_feed_with_reblog;
CREATE OR REPLACE FUNCTION condenser_get_by_feed_with_reblog( CREATE OR REPLACE FUNCTION condenser_get_by_feed_with_reblog( IN _account VARCHAR, IN _author VARCHAR, IN _permlink VARCHAR, IN _limit INTEGER)
in _account VARCHAR, RETURNS SETOF bridge_api_post
in _author VARCHAR, LANGUAGE 'plpgsql'
in _permlink VARCHAR, STABLE
in _limit INTEGER ROWS 1000
) AS $BODY$
RETURNS SETOF bridge_api_post
AS
$function$
DECLARE DECLARE
__post_id INTEGER := 0; __post_id INTEGER := 0;
__cutoff INTEGER; __cutoff INTEGER := 0;
__account_id INTEGER := find_account_id( _account, True ); __account_id INTEGER := find_account_id( _account, True );
__min_data TIMESTAMP; __min_date TIMESTAMP;
BEGIN BEGIN
IF _permlink <> '' THEN IF _permlink <> '' THEN
__post_id = find_comment_id( _author, _permlink, True ); __post_id = find_comment_id( _author, _permlink, True );
SELECT MIN(hfc.created_at) INTO __min_date
FROM hive_feed_cache hfc
JOIN hive_follows hf ON hfc.account_id = hf.following
WHERE hf.state = 1 AND hf.follower = __account_id AND hfc.post_id = __post_id;
END IF; END IF;
__cutoff = block_before_head( '1 month' ); __cutoff = block_before_head( '1 month' );
__min_data =
(
SELECT MIN(hfc.created_at)
FROM hive_feed_cache hfc
JOIN hive_follows hf ON hfc.account_id = hf.following
WHERE hf.state = 1 AND hf.follower = __account_id AND ( ( __post_id = 0 ) OR ( hfc.post_id = __post_id ) )
);
RETURN QUERY SELECT RETURN QUERY SELECT
hp.id, hp.id,
...@@ -69,21 +63,16 @@ BEGIN ...@@ -69,21 +63,16 @@ BEGIN
FROM hive_posts_view hp FROM hive_posts_view hp
JOIN JOIN
( (
SELECT hfc.post_id SELECT hfc.post_id, MIN(hfc.created_at) as min_created
FROM hive_feed_cache hfc FROM hive_feed_cache hfc
JOIN JOIN hive_follows hf ON hfc.account_id = hf.following
( WHERE (__post_id = 0 OR hfc.created_at <= __min_date)
SELECT following AND hfc.block_num > __cutoff AND hf.state = 1 AND hf.follower = __account_id
FROM hive_follows
WHERE state = 1 AND follower = __account_id
) T ON hfc.account_id = T.following
JOIN hive_feed_cache hfc2 ON hfc2.account_id = T.following AND( __post_id = 0 OR hfc.post_id <= __post_id )
WHERE hfc.block_num > __cutoff
GROUP BY hfc.post_id GROUP BY hfc.post_id
HAVING ( __post_id = 0 ) OR ( MIN(hfc.created_at) <= __min_data ) ORDER BY min_created DESC
ORDER BY MIN(hfc.created_at) DESC
LIMIT _limit LIMIT _limit
) T ON hp.id = T.post_id; ) T ON hp.id = T.post_id
ORDER BY T.min_created DESC;
END END
$function$ $BODY$
language plpgsql STABLE; ;
...@@ -304,21 +304,25 @@ WHERE NOT EXISTS (SELECT data_type ...@@ -304,21 +304,25 @@ WHERE NOT EXISTS (SELECT data_type
--- Notification cache to significantly speedup notification APIs. --- Notification cache to significantly speedup notification APIs.
CREATE TABLE IF NOT EXISTS hive_notification_cache CREATE TABLE IF NOT EXISTS hive_notification_cache
( (
id BIGINT NOT NULL, id BIGINT NOT NULL,
block_num INT NOT NULL, block_num INT NOT NULL,
type_id INT NOT NULL, type_id INT NOT NULL,
dst INT NULL, dst INT NULL,
src INT NULL, src INT NULL,
dst_post_id INT NULL, dst_post_id INT NULL,
post_id INT NULL, post_id INT NULL,
score INT NOT NULL, score INT NOT NULL,
created_at TIMESTAMP WITHOUT TIME ZONE NOT NULL, created_at TIMESTAMP WITHOUT TIME ZONE NOT NULL,
community_title VARCHAR(32) NULL, community_title VARCHAR(32) NULL,
community VARCHAR(16) NULL, community VARCHAR(16) NULL,
payload VARCHAR NULL, payload VARCHAR NULL,
CONSTRAINT hive_notification_cache_pk PRIMARY KEY (id) CONSTRAINT hive_notification_cache_pk PRIMARY KEY (id)
); );
CREATE INDEX IF NOT EXISTS hive_notification_cache_block_num_idx ON hive_notification_cache (block_num); CREATE INDEX IF NOT EXISTS hive_notification_cache_block_num_idx ON hive_notification_cache (block_num);
CREATE INDEX IF NOT EXISTS hive_notification_cache_dst_score_idx ON hive_notification_cache (dst, score) WHERE dst IS NOT NULL; CREATE INDEX IF NOT EXISTS hive_notification_cache_dst_score_idx ON hive_notification_cache (dst, score) WHERE dst IS NOT NULL;
CREATE INDEX IF NOT EXISTS hive_feed_cache_block_num_idx on hive_feed_cache (block_num);
CREATE INDEX IF NOT EXISTS hive_feed_cache_created_at_idx on hive_feed_cache (created_at);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment