New issue
Advanced search Search tips
Note: Color blocks (like or ) mean that a user may not be available. Tooltip shows the reason.

Issue 753481 link

Starred by 2 users

Issue metadata

Status: Fixed
Owner:
Closed: Nov 27
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: Windows
Pri: 3
Type: Bug



Sign in to add a comment

More than 2500 autofill_profiles records hangs Chrome

Project Member Reported by marchuk@chromium.org, Aug 8 2017

Issue description

Windows 10 Professional 64-bit
Chrome 60.0.3112.90 64-bit

What steps will reproduce the problem?
Reproduced in MTV-QD5
(1) Create 2500 or more autofill address entries. 
(1a) To automate: exit chrome (to release database), execute python script (adjust Web Data path), 5000 records in our case:

import sqlite3;
conn=sqlite3.connect('C:/Documents and Settings/ig/Local Settings/Google/Chrome/User Data/Default/Web Data');
cursor=conn.cursor();
statement_base='INSERT INTO \"autofill_profiles\" (guid, company_name, street_address, city, state, zipcode, country_code, date_modified,origin) VALUES ';
for i in range(90000,95003):
	statement=statement_base+'(\'00000000-0000-0000-0000-0000000'+str(i)+'\',\'Google, Inc.\',\'1950 Charleston Rd.\',\'Mountain View\',\'CA\',\''+str(i)+'\',\'S\',1386046731,\'Chrome settings\')';
#	print (statement);
	cursor.execute(statement);
conn.commit();
conn.close();

(2) Launch chrome, login to chrome, wait for sync to complete. Make sure chrome://sync-internals and chrome://settings/autofill has more than 5000 autofill records.
(3) Navigate to any site with address input, e.g. https://tools.usps.com/go/ZipLookupAction_input
(4) Start typing zip code with "9"

What is the expected result?
Autofill data pops up

What happens instead?
Chrome hangs

Please use labels and text to provide additional information.
Have enterprise customer who needs to use this amount of autofill records.

Richard/autofill team can you please help to triage?
 
Description: Show this description
Labels: TE-NeedsTriageHelp
Unable to triage this issue from TE-end, hence adding "TE-NeedsTriageHelp" for further triage.
Status: Assigned (was: Untriaged)
This bug has an owner, thus, it's been triaged. Changing status to "assigned".
Labels: M-68
Still happening on 67 and 68.
++ Trace if that might help
trace_2500_67.json.gz
2.6 MB Download
Labels: Hotlist-GoodFirstBug
Cc: se...@chromium.org
Cc: bustamante@chromium.org
Owner: seblalancette@chromium.org
Status: Fixed (was: Assigned)
Seb, can you link to the CL that fixed this bug? Thanks!

Sign in to add a comment