Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Database Server Software > PostgreSQL > Pgsql Performance

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-24-2008, 06:16 PM
Nikolas Everett
 
Posts: n/a
Default Question about disk IO an index use and seeking advice

I have a question about index us and IO and am seeking advice.

We are running postgres 8.2. We have two big big tables. Our ~600,000,000
row table is changed very infrequently and is on a 12 disk software raid-6
for historical reasons using an LSI Logic / Symbios Logic SAS1068 PCI-X
Fusion-MPT SAS Our ~50,000,000 row staging table is on a 12 disk hardware
raid-10 using a Dell PowerEdge Expandable RAID controller 5. All of the
rows in the staging table are changed at least once and then deleted and
recreated in the bigger table. All of the staging table's indexes are on
the raid-10. The postgres data directory itself is on the raid-6. I think
all the disks are SATA 10Ks. The setup is kind of a beast.

So my disk IO and index question. When I issue a query on the big table
like this:
SELECT column, count(*)
FROM bigtable
GROUP BY column
ORDER BY count DESC
When I run dstat to see my disk IO I see the software raid-6 consistently
holding over 70M/sec. This is fine with me, but I generally don't like to
do queries that table scan 600,000,000 rows. So I do:
SELECT column, count(*)
FROM bigtable
WHERE date > '4-24-08'
GROUP BY column
ORDER BY count DESC
When I run dstat I see only around 2M/sec and it is not consistent at all.

So my question is, why do I see such low IO load on the index scan version?
If I could tweak some setting to make more aggressive use of IO, would it
actually make the query faster? The field I'm scanning has a .960858
correlation, but I haven't vacuumed since importing any of the data that I'm
scanning, though the correlation should remain very high. When I do a
similar set of queries on the hardware raid I see similar performance
except the numbers are both more than doubled.

Here is the explain output for the queries:
SELECT column, count(*)
FROM bigtable
GROUP BY column
ORDER BY count DESC
"Sort (cost=74404440.58..74404444.53 rows=1581 width=10)"
" Sort Key: count(*)"
" -> HashAggregate (cost=74404336.81..74404356.58 rows=1581 width=10)"
" -> Seq Scan on bigtable (cost=0.00..71422407.21 rows=596385921
width=10)"
---------------
SELECT column, count(*)
FROM bigtable
WHERE date > '4-24-08'
GROUP BY column
ORDER BY count DESC
"Sort (cost=16948.80..16948.81 rows=1 width=10)"
" Sort Key: count(*)"
" -> HashAggregate (cost=16948.78..16948.79 rows=1 width=10)"
" -> Index Scan using date_idx on bigtable (cost=0.00..16652.77
rows=59201 width=10)"
" Index Cond: (date > '2008-04-21 00:00:00'::timestamp without
time zone)"

So now the asking for advice part. I have two questions:
What is the fastest way to copy data from the smaller table to the larger
table?

We plan to rearrange the setup when we move to Postgres 8.3. We'll probably
move all the storage over to a SAN and slice the larger table into monthly
or weekly tables. Can someone point me to a good page on partitioning? My
gut tells me it should be better, but I'd like to learn more about why.
Does anyone have experience migrating large databases to a SAN? I
understand that it'll give me better fail over capabilities so long as the
SAN itself doesn't go out, but are we going to be sacrificing performance
for this? That doesn't even mention the cost....

Thanks so much for reading through all this,

--Nik

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-24-2008, 06:16 PM
Matthew Wakeling
 
Posts: n/a
Default Re: Question about disk IO an index use and seeking advice

On Thu, 24 Apr 2008, Nikolas Everett wrote:
> The setup is kind of a beast.


No kidding.

> When I run dstat I see only around 2M/sec and it is not consistent at all.


Well, it is having to seek over the disc a little. Firstly, your table may
not be wonderfully ordered for index scans, but goodness knows how long a
CLUSTER operation might take with that much data. Secondly, when doing an
index scan, Postgres unfortunately can only use the performance equivalent
of a single disc, because it accesses the pages one by one in a
single-threaded manner. A large RAID array will give you a performance
boost if you are doing lots of index scans in parallel, but not if you are
only doing one. Greg Stark has a patch in the pipeline to improve this
though.

> When I do a similar set of queries on the hardware raid I see similar
> performance except the numbers are both more than doubled.


Hardware RAID is often better than software RAID. 'Nuff said.

> Here is the explain output for the queries:


EXPLAIN ANALYSE is even better.

> Sort (cost=16948.80..16948.81 rows=1 width=10)"
> Sort Key: count(*)"
> -> HashAggregate (cost=16948.78..16948.79 rows=1 width=10)"
> -> Index Scan using date_idx on bigtable (cost=0.00..16652.77 rows=59201 width=10)"
> Index Cond: (date > '2008-04-21 00:00:00'::timestamp without time zone)"


That doesn't look like it should take too long. How long does it take?
(EXPLAIN ANALYSE, in other words). It's a good plan, anyway.

> So now the asking for advice part. I have two questions:
> What is the fastest way to copy data from the smaller table to the larger
> table?


INSERT INTO bigtable (field1, field2) SELECT whatever FROM staging_table
ORDER BY staging_table.date

That will do it all in Postgres. The ORDER BY clause may slow down the
insert, but it will certainly speed up your subsequent index scans.

If the bigtable isn't getting any DELETE or UPDATE traffic, you don't need
to vacuum it. However, make sure you do vacuum the staging table,
preferably directly after moving all that data to the bigtable and
deleting it from the staging table.

> Can someone point me to a good page on partitioning? My
> gut tells me it should be better, but I'd like to learn more about why.


You could possibly not bother with a staging table, and replace the mass
copy with making a new partition. Not sure of the details myself though.

Matthew

--
Me... a skeptic? I trust you have proof?

--
Sent via pgsql-performance mailing list (pgsql-performance@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-performance

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-24-2008, 06:16 PM
PFC
 
Posts: n/a
Default Re: Question about disk IO an index use and seeking advice


> Our ~600,000,000
> row table is changed very infrequently and is on a 12 disk software
> raid-6
> for historical reasons using an LSI Logic / Symbios Logic SAS1068 PCI-X
> Fusion-MPT SAS Our ~50,000,000 row staging table is on a 12 disk
> hardware
> raid-10 using a Dell PowerEdge Expandable RAID controller 5.


> So my disk IO and index question. When I issue a query on the big table
> like this:
> SELECT column, count(*)
> FROM bigtable
> GROUP BY column
> ORDER BY count DESC
> When I run dstat to see my disk IO I see the software raid-6 consistently
> holding over 70M/sec. This is fine with me, but I generally don't like
> to
> do queries that table scan 600,000,000 rows. So I do:


Note that RAID5 or 6 is fine when reading, it's the small random writes
that kill it.
Is the table being inserted to while you run this query, which will
generate small random writes for the index updates ?
Or is the table only inserted to during the nightly cron job ?

70 MB/s seems to me quite close to what a single SATA disk could do these
days.
My software RAID 5 saturates the PCI bus in the machine and pushes more
than 120 MB/s.
You have PCI-X and 12 disks so you should get huuuuge disk throughput,
really mindboggling figures, not 70 MB/s.
Since this seems a high-budget system perhaps a good fast hardware RAID ?
Or perhaps this test was performed under heavy load and it is actually a
good result.


> All of the
> rows in the staging table are changed at least once and then deleted and
> recreated in the bigger table. All of the staging table's indexes are on
> the raid-10. The postgres data directory itself is on the raid-6. I
> think
> all the disks are SATA 10Ks. The setup is kind of a beast.
>
> SELECT column, count(*)
> FROM bigtable
> WHERE date > '4-24-08'
> GROUP BY column
> ORDER BY count DESC
> When I run dstat I see only around 2M/sec and it is not consistent at
> all.
>
> So my question is, why do I see such low IO load on the index scan
> version?


First, it is probably choosing a bitmap index scan, which means it needs
to grab lots of pages from the index. If your index is fragmented, just
scanning the index could take a long time.
Then, i is probably taking lots of random bites in the table data.
If this is an archive table, the dates should be increasing sequentially.
If this is not the case you will get random IO which is rather bad on huge
data sets.

So.

If you need the rows to be grouped on-disk by date (or perhaps another
field if you more frequently run other types of query, like grouping by
category, or perhaps something else, you decide) :

The painful thing will be to reorder the table, either
- use CLUSTER
- or recreate a table and INSERT INTO it ORDER BY the field you chose.
This is going to take a while, set sort_mem to a large value. Then create
the indexes.

Then every time you insert data in the archive, be sure to insert it in
big batches, ORDER BY the field you chose. That way new inserts will be
still in the order you want.

While you're at it you might think about partitioning the monster on a
useful criterion (this depends on your querying).

> If I could tweak some setting to make more aggressive use of IO, would it
> actually make the query faster? The field I'm scanning has a .960858
> correlation, but I haven't vacuumed since importing any of the data that


You have ANALYZEd at least ?
Cause if you didn't and an index scan (not bitmap) comes up on this kind
of query and it does a million index hits you have a problem.

> I'm
> scanning, though the correlation should remain very high. When I do a
> similar set of queries on the hardware raid I see similar performance
> except the numbers are both more than doubled.
>
> Here is the explain output for the queries:
> SELECT column, count(*)
> FROM bigtable
> GROUP BY column
> ORDER BY count DESC
> "Sort (cost=74404440.58..74404444.53 rows=1581 width=10)"
> " Sort Key: count(*)"
> " -> HashAggregate (cost=74404336.81..74404356.58 rows=1581 width=10)"
> " -> Seq Scan on bigtable (cost=0.00..71422407.21 rows=596385921
> width=10)"


Plan is OK (nothing else to do really)

> ---------------
> SELECT column, count(*)
> FROM bigtable
> WHERE date > '4-24-08'
> GROUP BY column
> ORDER BY count DESC
> "Sort (cost=16948.80..16948.81 rows=1 width=10)"
> " Sort Key: count(*)"
> " -> HashAggregate (cost=16948.78..16948.79 rows=1 width=10)"
> " -> Index Scan using date_idx on bigtable (cost=0.00..16652.77
> rows=59201 width=10)"
> " Index Cond: (date > '2008-04-21 00:00:00'::timestamp
> without
> time zone)"


Argh.
So you got an index scan after all.
Is the 59201 rows estimate right ? If it is 10 times that you really have
a problem.
Is it ANALYZEd ?

> So now the asking for advice part. I have two questions:
> What is the fastest way to copy data from the smaller table to the larger
> table?


INSERT INTO SELECT FROM (add ORDER BY to taste)

> We plan to rearrange the setup when we move to Postgres 8.3. We'll
> probably
> move all the storage over to a SAN and slice the larger table into
> monthly
> or weekly tables. Can someone point me to a good page on partitioning?
> My
> gut tells me it should be better, but I'd like to learn more about why.


Because in your case, records having the dates you want will be in 1
partition (or 2), so you get a kind of automatic CLUSTER. For instance if
you do your query on last week's data, it will seq scan last week's
partition (which will be a much more manageable size) and not even look at
the others.

Matthew said :
> You could possibly not bother with a staging table, and replacethe mass
> copy with making a new partition. Not sure of the details myself though.


Yes you could do that.
When a partition ceases to become actively updated, though, you should
CLUSTER it so it is really tight and fast.
CLUSTER on a partition which has a week's worth of data will obviously be
much faster than CLUSTERing your monster archive.









--
Sent via pgsql-performance mailing list (pgsql-performance@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-performance

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 04-25-2008, 12:43 AM
Nikolas Everett
 
Posts: n/a
Default Re: Question about disk IO an index use and seeking advice

On Thu, Apr 24, 2008 at 12:56 PM, PFC <lists@peufeu.com> wrote:

>
> Our ~600,000,000
>> row table is changed very infrequently and is on a 12 disk software raid-6
>> for historical reasons using an LSI Logic / Symbios Logic SAS1068 PCI-X
>> Fusion-MPT SAS Our ~50,000,000 row staging table is on a 12 disk hardware
>> raid-10 using a Dell PowerEdge Expandable RAID controller 5.
>>

>
> So my disk IO and index question. When I issue a query on the big table
>> like this:
>> SELECT column, count(*)
>> FROM bigtable
>> GROUP BY column
>> ORDER BY count DESC
>> When I run dstat to see my disk IO I see the software raid-6 consistently
>> holding over 70M/sec. This is fine with me, but I generally don't like to
>> do queries that table scan 600,000,000 rows. So I do:
>>

>
> Note that RAID5 or 6 is fine when reading, it's the small random
> writes that kill it.
> Is the table being inserted to while you run this query, which will
> generate small random writes for the index updates ?
> Or is the table only inserted to during the nightly cron job ?
>
> 70 MB/s seems to me quite close to what a single SATA disk could do
> these days.
> My software RAID 5 saturates the PCI bus in the machine and pushes
> more than 120 MB/s.
> You have PCI-X and 12 disks so you should get huuuuge disk
> throughput, really mindboggling figures, not 70 MB/s.
> Since this seems a high-budget system perhaps a good fast hardware
> RAID ?
> Or perhaps this test was performed under heavy load and it is
> actually a good result.
>
>
> All of the
>> rows in the staging table are changed at least once and then deleted and
>> recreated in the bigger table. All of the staging table's indexes are on
>> the raid-10. The postgres data directory itself is on the raid-6. I
>> think
>> all the disks are SATA 10Ks. The setup is kind of a beast.
>>
>> SELECT column, count(*)
>> FROM bigtable
>> WHERE date > '4-24-08'
>> GROUP BY column
>> ORDER BY count DESC
>> When I run dstat I see only around 2M/sec and it is not consistent at all.
>>
>> So my question is, why do I see such low IO load on the index scan
>> version?
>>

>
> First, it is probably choosing a bitmap index scan, which means it
> needs to grab lots of pages from the index. If your index is fragmented,
> just scanning the index could take a long time.
> Then, i is probably taking lots of random bites in the table data.
> If this is an archive table, the dates should be increasing
> sequentially. If this is not the case you will get random IO which is rather
> bad on huge data sets.
>
> So.
>
> If you need the rows to be grouped on-disk by date (or perhaps
> another field if you more frequently run other types of query, like grouping
> by category, or perhaps something else, you decide) :
>
> The painful thing will be to reorder the table, either
> - use CLUSTER
> - or recreate a table and INSERT INTO it ORDER BY the field you
> chose. This is going to take a while, set sort_mem to a large value. Then
> create the indexes.
>
> Then every time you insert data in the archive, be sure to insert it
> in big batches, ORDER BY the field you chose. That way new inserts will be
> still in the order you want.
>
> While you're at it you might think about partitioning the monster on
> a useful criterion (this depends on your querying).
>
> If I could tweak some setting to make more aggressive use of IO, would it
>> actually make the query faster? The field I'm scanning has a .960858
>> correlation, but I haven't vacuumed since importing any of the data that
>>

>
> You have ANALYZEd at least ?
> Cause if you didn't and an index scan (not bitmap) comes up on this
> kind of query and it does a million index hits you have a problem.
>
> I'm
>> scanning, though the correlation should remain very high. When I do a
>> similar set of queries on the hardware raid I see similar performance
>> except the numbers are both more than doubled.
>>
>> Here is the explain output for the queries:
>> SELECT column, count(*)
>> FROM bigtable
>> GROUP BY column
>> ORDER BY count DESC
>> "Sort (cost=74404440.58..74404444.53 rows=1581 width=10)"
>> " Sort Key: count(*)"
>> " -> HashAggregate (cost=74404336.81..74404356.58 rows=1581 width=10)"
>> " -> Seq Scan on bigtable (cost=0.00..71422407.21 rows=596385921
>> width=10)"
>>

>
> Plan is OK (nothing else to do really)
>
> ---------------
>> SELECT column, count(*)
>> FROM bigtable
>> WHERE date > '4-24-08'
>> GROUP BY column
>> ORDER BY count DESC
>> "Sort (cost=16948.80..16948.81 rows=1 width=10)"
>> " Sort Key: count(*)"
>> " -> HashAggregate (cost=16948.78..16948.79 rows=1 width=10)"
>> " -> Index Scan using date_idx on bigtable (cost=0.00..16652.77
>> rows=59201 width=10)"
>> " Index Cond: (date > '2008-04-21 00:00:00'::timestamp
>> without
>> time zone)"
>>

>
> Argh.
> So you got an index scan after all.
> Is the 59201 rows estimate right ? If it is 10 times that you really
> have a problem.
> Is it ANALYZEd ?
>
> So now the asking for advice part. I have two questions:
>> What is the fastest way to copy data from the smaller table to the larger
>> table?
>>

>
> INSERT INTO SELECT FROM (add ORDER BY to taste)
>
> We plan to rearrange the setup when we move to Postgres 8.3. We'll
>> probably
>> move all the storage over to a SAN and slice the larger table into monthly
>> or weekly tables. Can someone point me to a good page on partitioning?
>> My
>> gut tells me it should be better, but I'd like to learn more about why.
>>

>
> Because in your case, records having the dates you want will be in 1
> partition (or 2), so you get a kind of automatic CLUSTER. For instance if
> you do your query on last week's data, it will seq scan last week's
> partition (which will be a much more manageable size) and not even look at
> the others.
>
> Matthew said :
>
>> You could possibly not bother with a staging table, and replacethe mass
>> copy with making a new partition. Not sure of the details myself though.
>>

>
> Yes you could do that.
> When a partition ceases to become actively updated, though, you
> should CLUSTER it so it is really tight and fast.
> CLUSTER on a partition which has a week's worth of data will
> obviously be much faster than CLUSTERing your monster archive.
>


Both Matthew and PFC, thanks for the response.

It turns out that the DB really loves to do index scans when I check new
data because I haven't had a chance to analyze it yet. It should be doing a
bitmap index scan and a bitmap heap scan. I think. Doing a quick "set
enable_indexscan = false" and doing a different date range really helped
things. Here is my understanding of the situation:

An index scan looks through the index and pulls in each pages as it sees it.
A bitmap index scan looks through the index and makes a sorted list of all
the pages it needs and then the bitmap heap scan reads all the pages.
If your data is scattered then you may as well do the index scan, but if
your data is sequential-ish then you should do the bitmap index scan.

Is that right? Where can I learn more? I've read
http://www.postgresql.org/docs/8.2/i...g-explain.html but it
didn't really dive deeply enough. I'd like a list of all the options the
query planner has and what they mean.


About clustering: I know that CLUSTER takes an exclusive lock on the
table. At present, users can query the table at any time, so I'm not
allowed to take an exclusive lock for more than a few seconds. Could I
achieve the same thing by creating a second copy of the table and then
swapping the first copy out for the second? I think something like that
would fit in my time frames.


About partitioning: I can definitely see how having the data in more
manageable chunks would allow me to do things like clustering. It will
definitely make vacuuming easier.

About IO speeds: The db is always under some kind of load. I actually get
scared if the load average isn't at least 2. Could I try to run something
like bonnie++ to get some real load numbers? I'm sure that would cripple
the system while it is running, but if it only takes a few seconds that
would be ok.

There were updates running while I was running the test. The WAL log is on
the hardware raid 10. Moving it from the software raid 5 almost doubled our
insert performance.

Thanks again,

--Nik

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 04-25-2008, 12:43 AM
PFC
 
Posts: n/a
Default Re: Question about disk IO an index use and seeking advice


> An index scan looks through the index and pulls in each pages as it sees
> it.
> A bitmap index scan looks through the index and makes a sorted list of
> all
> the pages it needs and then the bitmap heap scan reads all the pages.
> If your data is scattered then you may as well do the index scan, but if
> your data is sequential-ish then you should do the bitmap index scan.
>
> Is that right? Where can I learn more? I've read


That's about it, yes.
If your bitmap has large holes, it will seek, but if it has little holes,
readahead will work. Hence, fast, and good.
On indexscan, readahead doesn't help since the hits are pretty random. If
you have N rows in the index with the same date, in which order whill they
get scanned ? There is no way to know that, and no way to be sure this
order corresponds to physical order on disk.

> About clustering: I know that CLUSTER takes an exclusive lock on the
> table. At present, users can query the table at any time, so I'm not
> allowed to take an exclusive lock for more than a few seconds.


Then, CLUSTER is out.

> Could I
> achieve the same thing by creating a second copy of the table and then
> swapping the first copy out for the second? I think something like that
> would fit in my time frames


If the archive table is read-only, then yes, you can do this.
..
> About partitioning: I can definitely see how having the data in more
> manageable chunks would allow me to do things like clustering. It will
> definitely make vacuuming easier.
>
> About IO speeds: The db is always under some kind of load. I actually
> get
> scared if the load average isn't at least 2. Could I try to run
> something
> like bonnie++ to get some real load numbers? I'm sure that would cripple
> the system while it is running, but if it only takes a few seconds that
> would be ok.
>
> There were updates running while I was running the test. The WAL log is
> on
> the hardware raid 10. Moving it from the software raid 5 almost doubled
> our
> insert performance.


Normal ; fsync on a RAID5-6 is bad, bad.
You have battery backed up cache ?

> Thanks again,
>
> --Nik




--
Sent via pgsql-performance mailing list (pgsql-performance@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-performance

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 01:58 PM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827