Commit a2b6ecf9 authored by Przemyslaw Kaminski's avatar Przemyslaw Kaminski

[nodeStory] fixes to saving nodeStory

parent 633a3408
Pipeline #3471 passed with stage
in 92 minutes and 13 seconds
...@@ -386,7 +386,9 @@ insertNodeArchiveHistory c nodeId version (h:hs) = do ...@@ -386,7 +386,9 @@ insertNodeArchiveHistory c nodeId version (h:hs) = do
where where
query :: PGS.Query query :: PGS.Query
query = [sql| INSERT INTO node_story_archive_history(node_id, ngrams_type_id, ngrams_id, patch, version) VALUES (?, ?, ?, ?, ?) |]
query = [sql| INSERT INTO node_story_archive_history(node_id, ngrams_type_id, ngrams_id, patch, version)
VALUES (?, ?, ?, ?, ?) |]
getNodeStory :: PGS.Connection -> NodeId -> IO NodeListStory getNodeStory :: PGS.Connection -> NodeId -> IO NodeListStory
getNodeStory c nId@(NodeId nodeId) = do getNodeStory c nId@(NodeId nodeId) = do
...@@ -399,7 +401,7 @@ getNodeStory c nId@(NodeId nodeId) = do ...@@ -399,7 +401,7 @@ getNodeStory c nId@(NodeId nodeId) = do
, _a_history = [] , _a_history = []
, _a_state = Map.singleton ngramsType $ Map.singleton ngrams ngrams_repo_element }) res , _a_state = Map.singleton ngramsType $ Map.singleton ngrams ngrams_repo_element }) res
-- NOTE Sanity check: all versions in the DB should be the same -- NOTE Sanity check: all versions in the DB should be the same
let versionsS = Set.fromList $ map (\(version, _, _, _) -> version) res let versionsS = Set.fromList $ map (\a -> a ^. a_version) dbData
if Set.size versionsS > 1 then if Set.size versionsS > 1 then
panic $ Text.pack $ "[getNodeStory] versions for " <> show nodeId <> " differ! " <> show versionsS panic $ Text.pack $ "[getNodeStory] versions for " <> show nodeId <> " differ! " <> show versionsS
else else
...@@ -573,14 +575,15 @@ upsertNodeStories c nodeId@(NodeId nId) newArchive = do ...@@ -573,14 +575,15 @@ upsertNodeStories c nodeId@(NodeId nId) newArchive = do
fixNodeStoryVersion :: PGS.Connection -> NodeId -> ArchiveList -> IO () fixNodeStoryVersion :: PGS.Connection -> NodeId -> ArchiveList -> IO ()
fixNodeStoryVersion c nodeId newArchive = do fixNodeStoryVersion c nodeId newArchive = do
let params = (newArchive ^. a_version, nodeId) let ngramsTypes = Map.keys $ newArchive ^. a_state
_ <-runPGSExecute c query params _ <- mapM_ (\nt -> runPGSExecute c query (newArchive ^. a_version, nodeId, nt)) ngramsTypes
pure () pure ()
where where
query :: PGS.Query query :: PGS.Query
query = [sql|UPDATE node_stories query = [sql|UPDATE node_stories
SET version = ? SET version = ?
WHERE node_id = ?|] WHERE node_id = ?
AND ngrams_type_id IN ?|]
writeNodeStories :: PGS.Connection -> NodeListStory -> IO () writeNodeStories :: PGS.Connection -> NodeListStory -> IO ()
writeNodeStories c (NodeStory nls) = do writeNodeStories c (NodeStory nls) = do
...@@ -619,12 +622,12 @@ nodeStoryIncs c Nothing (ni:ns) = do ...@@ -619,12 +622,12 @@ nodeStoryIncs c Nothing (ni:ns) = do
readNodeStoryEnv :: Pool PGS.Connection -> IO NodeStoryEnv readNodeStoryEnv :: Pool PGS.Connection -> IO NodeStoryEnv
readNodeStoryEnv pool = do readNodeStoryEnv pool = do
mvar <- nodeStoryVar pool Nothing [] mvar <- nodeStoryVar pool Nothing []
saver <- mkNodeStorySaver pool mvar
let saver_immediate = modifyMVar_ mvar $ \ns -> do let saver_immediate = modifyMVar_ mvar $ \ns -> do
withResource pool $ \c -> do withResource pool $ \c -> do
--printDebug "[mkNodeStorySaver] will call writeNodeStories, ns" ns --printDebug "[mkNodeStorySaver] will call writeNodeStories, ns" ns
writeNodeStories c ns writeNodeStories c ns
pure $ clearHistory ns pure $ clearHistory ns
saver <- mkNodeStorySaver saver_immediate
-- let saver = modifyMVar_ mvar $ \mv -> do -- let saver = modifyMVar_ mvar $ \mv -> do
-- writeNodeStories pool mv -- writeNodeStories pool mv
-- printDebug "[readNodeStoryEnv] saver" mv -- printDebug "[readNodeStoryEnv] saver" mv
...@@ -652,19 +655,22 @@ nodeStoryVar pool (Just mv) nIds = do ...@@ -652,19 +655,22 @@ nodeStoryVar pool (Just mv) nIds = do
-- Debounce is useful since it could delay the saving to some later -- Debounce is useful since it could delay the saving to some later
-- time, asynchronously and we keep operating on memory only. -- time, asynchronously and we keep operating on memory only.
mkNodeStorySaver :: Pool PGS.Connection -> MVar NodeListStory -> IO (IO ()) -- mkNodeStorySaver :: Pool PGS.Connection -> MVar NodeListStory -> IO (IO ())
mkNodeStorySaver pool mvns = mkDebounce settings -- mkNodeStorySaver pool mvns = do
mkNodeStorySaver :: IO () -> IO (IO ())
mkNodeStorySaver saver = mkDebounce settings
where where
settings = defaultDebounceSettings settings = defaultDebounceSettings
{ debounceAction = do { debounceAction = saver
-- NOTE: Lock MVar first, then use resource pool. -- do
-- Otherwise we could wait for MVar, while -- -- NOTE: Lock MVar first, then use resource pool.
-- blocking the pool connection. -- -- Otherwise we could wait for MVar, while
modifyMVar_ mvns $ \ns -> do -- -- blocking the pool connection.
withResource pool $ \c -> do -- modifyMVar_ mvns $ \ns -> do
--printDebug "[mkNodeStorySaver] will call writeNodeStories, ns" ns -- withResource pool $ \c -> do
writeNodeStories c ns -- --printDebug "[mkNodeStorySaver] will call writeNodeStories, ns" ns
pure $ clearHistory ns -- writeNodeStories c ns
-- pure $ clearHistory ns
--withMVar mvns (\ns -> printDebug "[mkNodeStorySaver] debounce nodestory" ns) --withMVar mvns (\ns -> printDebug "[mkNodeStorySaver] debounce nodestory" ns)
, debounceFreq = 1*minute , debounceFreq = 1*minute
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment