Increases batch size for sending bench data to appengine to 66.
authorbensong@google.com <bensong@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 2 Apr 2013 16:41:55 +0000 (16:41 +0000)
committerbensong@google.com <bensong@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 2 Apr 2013 16:41:55 +0000 (16:41 +0000)
This is part of the attempt to avoid bench step timeout errors (10-20min).
Review URL: https://codereview.chromium.org/13430011

git-svn-id: http://skia.googlecode.com/svn/trunk@8491 2bbb7eff-a529-9590-31e7-b0007b416f81

bench/bench_graph_svg.py

index 57b41c9..7ac6237 100644 (file)
@@ -24,7 +24,7 @@ TITLE_PREAMBLE = 'Bench_Performance_for_Skia_'
 TITLE_PREAMBLE_LENGTH = len(TITLE_PREAMBLE)
 
 # Number of data points to send to appengine at once.
-DATA_POINT_BATCHSIZE = 25
+DATA_POINT_BATCHSIZE = 66
 
 def grouper(n, iterable):
     """Groups list into list of lists for a given size. See itertools doc: