Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Issue 2297243004: [WIP] histroy: Adjust cache size OnMemoryStateChange() (Closed)

Created:
4 years, 3 months ago by bashi
Modified:
4 years, 3 months ago
CC:
chromium-reviews
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

[WIP] histroy: Adjust cache size OnMemoryStateChange() OnMemoryStateChange() is a stateful API so it would be better to adjust cache size rather than trying to trim the cache memory every time OnMemoryStateChange() is called. This CL adds sql::Connection::UpdateCacheSize() to provide a way to adjust cache size based on the memory state. BUG=639700

Patch Set 1 #

Total comments: 3
Unified diffs Side-by-side diffs Delta from patch set Stats (+39 lines, -3 lines) Patch
M components/history/core/browser/history_backend.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M components/history/core/browser/history_database.h View 2 chunks +4 lines, -0 lines 0 comments Download
M components/history/core/browser/history_database.cc View 3 chunks +12 lines, -1 line 0 comments Download
M sql/connection.h View 1 chunk +5 lines, -0 lines 1 comment Download
M sql/connection.cc View 1 chunk +16 lines, -0 lines 2 comments Download

Messages

Total messages: 15 (4 generated)
bashi
sky@, shess@: What do you think about this change? This is a follow-up CL of ...
4 years, 3 months ago (2016-09-01 10:19:02 UTC) #2
Scott Hess - ex-Googler
As of https://codereview.chromium.org/1382283003 , the SQLite caches should mostly be empty outside of active transactions. ...
4 years, 3 months ago (2016-09-01 17:55:15 UTC) #3
haraken
On 2016/09/01 17:55:15, Scott Hess wrote: > As of https://codereview.chromium.org/1382283003 , the SQLite caches should ...
4 years, 3 months ago (2016-09-01 18:03:17 UTC) #4
chrisha
On 2016/09/01 18:03:17, haraken wrote: > On 2016/09/01 17:55:15, Scott Hess wrote: > > As ...
4 years, 3 months ago (2016-09-01 18:17:30 UTC) #5
Scott Hess - ex-Googler
On 2016/09/01 18:17:30, chrisha (slow) wrote: > On 2016/09/01 18:03:17, haraken wrote: > > On ...
4 years, 3 months ago (2016-09-01 18:29:04 UTC) #6
Scott Hess - ex-Googler
https://codereview.chromium.org/2297243004/diff/1/sql/connection.cc File sql/connection.cc (right): https://codereview.chromium.org/2297243004/diff/1/sql/connection.cc#newcode1001 sql/connection.cc:1001: return true; I think this is fine, but might ...
4 years, 3 months ago (2016-09-01 18:29:10 UTC) #7
chrisha
On 2016/09/01 18:29:10, Scott Hess wrote: > https://codereview.chromium.org/2297243004/diff/1/sql/connection.cc > File sql/connection.cc (right): > > https://codereview.chromium.org/2297243004/diff/1/sql/connection.cc#newcode1001 ...
4 years, 3 months ago (2016-09-01 18:31:52 UTC) #8
haraken
On 2016/09/01 18:31:52, chrisha (slow) wrote: > On 2016/09/01 18:29:10, Scott Hess wrote: > > ...
4 years, 3 months ago (2016-09-01 18:42:19 UTC) #9
sky
sky->brettw
4 years, 3 months ago (2016-09-01 19:35:11 UTC) #13
Scott Hess - ex-Googler
On 2016/09/01 18:42:19, haraken wrote: > Scott: Is there any test we can use to ...
4 years, 3 months ago (2016-09-01 22:20:44 UTC) #14
bashi
4 years, 3 months ago (2016-09-01 23:29:50 UTC) #15
On 2016/09/01 22:20:44, Scott Hess wrote:
> On 2016/09/01 18:42:19, haraken wrote:
> > Scott: Is there any test we can use to evaluate the cache impact?
> 
> Not that I'm aware of.  The basis of the mmap change was that there's a copy
of
> each page in the filesystem buffers _and_ in the SQLite cache, so we should
let
> the OS determine things.  So on the read side, I think it's pretty subtle and
> hard to get an angle on.  When writing, the SQLite cache is used to stage
> changes before committing the transaction.  So changes there are likely to
> impact large transactions which have poor locality, which is determined by a
> combination of update strategy and schema.
> 
> Put another way, we don't have any generally-agreed canonical profiles, so
it's
> hard to say what operations are important or not.  But I think you'd probably
be
> fine to drop the code then layer it back if someone complains in a year or
two. 
> Just my opinion.

Thanks so much Scott for review and feedback. I'll close this CL for now.

MPL removal: Maybe just remove as there is no easy way to measure impact of
cache?

Powered by Google App Engine
This is Rietveld 408576698