Well, I'm not entirely sure either ;).... What I'm seeing. And, BTW, I'm making a couple of assumptions here. In the one listing, your biggest segment starts with _7l and in the other its _zd. The aggregate size is 2,815M for _7l and 705M for _zd. So multiplying the individual files in _zd by 4 (poor-man's normalization) I get these major differences:
ext _7l(M) _zd(M) dim 84 200 These are points fields. fdt 1,431 1,000 These are stored data, the discrepancy here goes the "other" way. pos 335 480 position information. dvd 165 400 docValues tim 34 80 terms dictionary I don't think the fdt or pos fields matter all that much, they're "close enough". That said, I'd guess you have some position information turned on in the more recent Solr that wasn't in the old one. Points and dvd fields are much more interesting, as well as terms dictionary. I doubt you've consciously changed the field types but some of the _defaults_ have changed in the fieldType definitions. Perhaps that accounts for some of the difference? That's why I was curious about what the LukeRequestHandler (or Luke itself) show's for each field type. Those tools show you what's actually _in_ the index's metadata, not just what is in the schema file. As for the sorting, I'll have to defer to the people who understand how spatial data is stored.... Best, Erick On Fri, Feb 16, 2018 at 11:37 AM, Howe, David <david.h...@auspost.com.au> wrote: > > Hi Erick, > > Below is the file listing for when the index is loaded with the table ordered > in a way that produces the smaller index. > > I have checked the console, and we have no deleted docs and we have the same > number of docs in the index as there are rows in the staging table that we > load from. I would be surprised if this wasn't the case as we use the > primary key from the staging table as the id in Solr, so it is pretty much > guaranteed to be unique. The primary key in the staging table is a > NUMBER(10, 0) column which contains the row number in Oracle, so it starts > from 1 and goes up to 14,061,990. We load the index in row number order. > > When we get the larger sized index, the table is sequenced by a field named > DPID which is a NUMBER(10, 0) in Oracle. The corresponding Solr definition > for that field is: > > curl -X POST -H 'Content-type:application/json' --data-binary '{ > "add-field":{ > "name":"dpid", > "type":"pint", > "stored":true, > "indexed": true > } > }' http://localhost:8983/solr/address/schema > > When we get the smaller sized index, the table is sequenced by locality > (VARCHAR2(80)) and then postcode (VARCHAR2(4)). The corresponding Solr > definition for these fields is: > > echo "$(date) Creating locality field" > curl -X POST -H 'Content-type:application/json' --data-binary '{ > "add-field":{ > "name":"locality", > "type":"locality", > "stored":true, > "indexed":true > } > }' http://localhost:8983/solr/address/schema > > echo "$(date) Creating postcode field" > curl -X POST -H 'Content-type:application/json' --data-binary '{ > "add-field":{ > "name":"postcode", > "type":"pint", > "stored":true, > "indexed":true > } > }' http://localhost:8983/solr/address/schema > > Not sure if this helps or not. > > Regards, > > David > > total 5300812 > -rw-r--r-- 1 solr solr 97 Feb 16 04:12 _14o.dii > -rw-r--r-- 1 solr solr 45400325 Feb 16 04:12 _14o.dim > -rw-r--r-- 1 solr solr 221114041 Feb 16 04:10 _14o.fdt > -rw-r--r-- 1 solr solr 286434 Feb 16 04:10 _14o.fdx > -rw-r--r-- 1 solr solr 6370 Feb 16 04:12 _14o.fnm > -rw-r--r-- 1 solr solr 17379224 Feb 16 04:12 _14o.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 04:12 _14o.nvm > -rw-r--r-- 1 solr solr 620 Feb 16 04:12 _14o.si > -rw-r--r-- 1 solr solr 147867580 Feb 16 04:11 _14o_Lucene50_0.doc > -rw-r--r-- 1 solr solr 111291706 Feb 16 04:11 _14o_Lucene50_0.pos > -rw-r--r-- 1 solr solr 18793856 Feb 16 04:11 _14o_Lucene50_0.tim > -rw-r--r-- 1 solr solr 360329 Feb 16 04:11 _14o_Lucene50_0.tip > -rw-r--r-- 1 solr solr 91972283 Feb 16 04:12 _14o_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 4173 Feb 16 04:12 _14o_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 405 Feb 16 04:20 _16l.cfe > -rw-r--r-- 1 solr solr 10956277 Feb 16 04:20 _16l.cfs > -rw-r--r-- 1 solr solr 455 Feb 16 04:20 _16l.si > -rw-r--r-- 1 solr solr 405 Feb 16 04:30 _18t.cfe > -rw-r--r-- 1 solr solr 11619394 Feb 16 04:30 _18t.cfs > -rw-r--r-- 1 solr solr 455 Feb 16 04:30 _18t.si > -rw-r--r-- 1 solr solr 97 Feb 16 04:34 _19e.dii > -rw-r--r-- 1 solr solr 39424990 Feb 16 04:34 _19e.dim > -rw-r--r-- 1 solr solr 188005197 Feb 16 04:33 _19e.fdt > -rw-r--r-- 1 solr solr 249160 Feb 16 04:33 _19e.fdx > -rw-r--r-- 1 solr solr 6370 Feb 16 04:34 _19e.fnm > -rw-r--r-- 1 solr solr 14660427 Feb 16 04:34 _19e.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 04:34 _19e.nvm > -rw-r--r-- 1 solr solr 620 Feb 16 04:34 _19e.si > -rw-r--r-- 1 solr solr 131101691 Feb 16 04:33 _19e_Lucene50_0.doc > -rw-r--r-- 1 solr solr 97734855 Feb 16 04:33 _19e_Lucene50_0.pos > -rw-r--r-- 1 solr solr 16502289 Feb 16 04:33 _19e_Lucene50_0.tim > -rw-r--r-- 1 solr solr 320224 Feb 16 04:33 _19e_Lucene50_0.tip > -rw-r--r-- 1 solr solr 78801516 Feb 16 04:34 _19e_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 2097 Feb 16 04:34 _19e_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 405 Feb 16 04:35 _19y.cfe > -rw-r--r-- 1 solr solr 78051374 Feb 16 04:35 _19y.cfs > -rw-r--r-- 1 solr solr 455 Feb 16 04:35 _19y.si > -rw-r--r-- 1 solr solr 405 Feb 16 04:37 _1ai.cfe > -rw-r--r-- 1 solr solr 53311170 Feb 16 04:37 _1ai.cfs > -rw-r--r-- 1 solr solr 455 Feb 16 04:37 _1ai.si > -rw-r--r-- 1 solr solr 405 Feb 16 04:40 _1b2.cfe > -rw-r--r-- 1 solr solr 70986259 Feb 16 04:40 _1b2.cfs > -rw-r--r-- 1 solr solr 455 Feb 16 04:40 _1b2.si > -rw-r--r-- 1 solr solr 405 Feb 16 04:41 _1bc.cfe > -rw-r--r-- 1 solr solr 10338200 Feb 16 04:41 _1bc.cfs > -rw-r--r-- 1 solr solr 455 Feb 16 04:41 _1bc.si > -rw-r--r-- 1 solr solr 405 Feb 16 04:42 _1bm.cfe > -rw-r--r-- 1 solr solr 68074070 Feb 16 04:42 _1bm.cfs > -rw-r--r-- 1 solr solr 455 Feb 16 04:42 _1bm.si > -rw-r--r-- 1 solr solr 405 Feb 16 04:45 _1c5.cfe > -rw-r--r-- 1 solr solr 67766868 Feb 16 04:45 _1c5.cfs > -rw-r--r-- 1 solr solr 455 Feb 16 04:45 _1c5.si > -rw-r--r-- 1 solr solr 91 Feb 16 04:45 _1c6.dii > -rw-r--r-- 1 solr solr 666032 Feb 16 04:45 _1c6.dim > -rw-r--r-- 1 solr solr 2515129 Feb 16 04:45 _1c6.fdt > -rw-r--r-- 1 solr solr 3245 Feb 16 04:45 _1c6.fdx > -rw-r--r-- 1 solr solr 4180 Feb 16 04:45 _1c6.fnm > -rw-r--r-- 1 solr solr 185754 Feb 16 04:45 _1c6.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 04:45 _1c6.nvm > -rw-r--r-- 1 solr solr 582 Feb 16 04:45 _1c6.si > -rw-r--r-- 1 solr solr 1549481 Feb 16 04:45 _1c6_Lucene50_0.doc > -rw-r--r-- 1 solr solr 1452884 Feb 16 04:45 _1c6_Lucene50_0.pos > -rw-r--r-- 1 solr solr 396380 Feb 16 04:45 _1c6_Lucene50_0.tim > -rw-r--r-- 1 solr solr 9121 Feb 16 04:45 _1c6_Lucene50_0.tip > -rw-r--r-- 1 solr solr 792915 Feb 16 04:45 _1c6_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 5790 Feb 16 04:45 _1c6_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 91 Feb 16 04:45 _1c8.dii > -rw-r--r-- 1 solr solr 778439 Feb 16 04:45 _1c8.dim > -rw-r--r-- 1 solr solr 2774226 Feb 16 04:45 _1c8.fdt > -rw-r--r-- 1 solr solr 3539 Feb 16 04:45 _1c8.fdx > -rw-r--r-- 1 solr solr 4180 Feb 16 04:45 _1c8.fnm > -rw-r--r-- 1 solr solr 257119 Feb 16 04:45 _1c8.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 04:45 _1c8.nvm > -rw-r--r-- 1 solr solr 582 Feb 16 04:45 _1c8.si > -rw-r--r-- 1 solr solr 1806272 Feb 16 04:45 _1c8_Lucene50_0.doc > -rw-r--r-- 1 solr solr 1496162 Feb 16 04:45 _1c8_Lucene50_0.pos > -rw-r--r-- 1 solr solr 484645 Feb 16 04:45 _1c8_Lucene50_0.tim > -rw-r--r-- 1 solr solr 10988 Feb 16 04:45 _1c8_Lucene50_0.tip > -rw-r--r-- 1 solr solr 1154333 Feb 16 04:45 _1c8_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 3974 Feb 16 04:45 _1c8_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 91 Feb 16 04:45 _1ca.dii > -rw-r--r-- 1 solr solr 608072 Feb 16 04:45 _1ca.dim > -rw-r--r-- 1 solr solr 2096168 Feb 16 04:45 _1ca.fdt > -rw-r--r-- 1 solr solr 2897 Feb 16 04:45 _1ca.fdx > -rw-r--r-- 1 solr solr 4180 Feb 16 04:45 _1ca.fnm > -rw-r--r-- 1 solr solr 162667 Feb 16 04:45 _1ca.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 04:45 _1ca.nvm > -rw-r--r-- 1 solr solr 582 Feb 16 04:45 _1ca.si > -rw-r--r-- 1 solr solr 1545052 Feb 16 04:45 _1ca_Lucene50_0.doc > -rw-r--r-- 1 solr solr 1419051 Feb 16 04:45 _1ca_Lucene50_0.pos > -rw-r--r-- 1 solr solr 358443 Feb 16 04:45 _1ca_Lucene50_0.tim > -rw-r--r-- 1 solr solr 8364 Feb 16 04:45 _1ca_Lucene50_0.tip > -rw-r--r-- 1 solr solr 692715 Feb 16 04:45 _1ca_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 6981 Feb 16 04:45 _1ca_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 91 Feb 16 04:46 _1cc.dii > -rw-r--r-- 1 solr solr 655643 Feb 16 04:46 _1cc.dim > -rw-r--r-- 1 solr solr 2511503 Feb 16 04:46 _1cc.fdt > -rw-r--r-- 1 solr solr 3602 Feb 16 04:46 _1cc.fdx > -rw-r--r-- 1 solr solr 4180 Feb 16 04:46 _1cc.fnm > -rw-r--r-- 1 solr solr 213723 Feb 16 04:46 _1cc.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 04:46 _1cc.nvm > -rw-r--r-- 1 solr solr 582 Feb 16 04:46 _1cc.si > -rw-r--r-- 1 solr solr 1432708 Feb 16 04:46 _1cc_Lucene50_0.doc > -rw-r--r-- 1 solr solr 1536162 Feb 16 04:46 _1cc_Lucene50_0.pos > -rw-r--r-- 1 solr solr 363973 Feb 16 04:46 _1cc_Lucene50_0.tim > -rw-r--r-- 1 solr solr 8644 Feb 16 04:46 _1cc_Lucene50_0.tip > -rw-r--r-- 1 solr solr 930874 Feb 16 04:46 _1cc_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 3990 Feb 16 04:46 _1cc_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 91 Feb 16 04:46 _1ce.dii > -rw-r--r-- 1 solr solr 648733 Feb 16 04:46 _1ce.dim > -rw-r--r-- 1 solr solr 2334789 Feb 16 04:46 _1ce.fdt > -rw-r--r-- 1 solr solr 3619 Feb 16 04:46 _1ce.fdx > -rw-r--r-- 1 solr solr 4180 Feb 16 04:46 _1ce.fnm > -rw-r--r-- 1 solr solr 182415 Feb 16 04:46 _1ce.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 04:46 _1ce.nvm > -rw-r--r-- 1 solr solr 582 Feb 16 04:46 _1ce.si > -rw-r--r-- 1 solr solr 1693724 Feb 16 04:46 _1ce_Lucene50_0.doc > -rw-r--r-- 1 solr solr 1458020 Feb 16 04:46 _1ce_Lucene50_0.pos > -rw-r--r-- 1 solr solr 453349 Feb 16 04:46 _1ce_Lucene50_0.tim > -rw-r--r-- 1 solr solr 9993 Feb 16 04:46 _1ce_Lucene50_0.tip > -rw-r--r-- 1 solr solr 861663 Feb 16 04:46 _1ce_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 4118 Feb 16 04:46 _1ce_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 88 Feb 16 04:46 _1cf.dii > -rw-r--r-- 1 solr solr 47184 Feb 16 04:46 _1cf.dim > -rw-r--r-- 1 solr solr 115103 Feb 16 04:46 _1cf.fdt > -rw-r--r-- 1 solr solr 200 Feb 16 04:46 _1cf.fdx > -rw-r--r-- 1 solr solr 4180 Feb 16 04:46 _1cf.fnm > -rw-r--r-- 1 solr solr 11658 Feb 16 04:46 _1cf.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 04:46 _1cf.nvm > -rw-r--r-- 1 solr solr 582 Feb 16 04:46 _1cf.si > -rw-r--r-- 1 solr solr 107326 Feb 16 04:46 _1cf_Lucene50_0.doc > -rw-r--r-- 1 solr solr 84493 Feb 16 04:46 _1cf_Lucene50_0.pos > -rw-r--r-- 1 solr solr 47408 Feb 16 04:46 _1cf_Lucene50_0.tim > -rw-r--r-- 1 solr solr 1337 Feb 16 04:46 _1cf_Lucene50_0.tip > -rw-r--r-- 1 solr solr 34672 Feb 16 04:46 _1cf_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 5493 Feb 16 04:46 _1cf_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 405 Feb 16 04:46 _1cg.cfe > -rw-r--r-- 1 solr solr 11034381 Feb 16 04:46 _1cg.cfs > -rw-r--r-- 1 solr solr 455 Feb 16 04:46 _1cg.si > -rw-r--r-- 1 solr solr 91 Feb 16 04:46 _1ch.dii > -rw-r--r-- 1 solr solr 657943 Feb 16 04:46 _1ch.dim > -rw-r--r-- 1 solr solr 2240987 Feb 16 04:46 _1ch.fdt > -rw-r--r-- 1 solr solr 2938 Feb 16 04:46 _1ch.fdx > -rw-r--r-- 1 solr solr 4180 Feb 16 04:46 _1ch.fnm > -rw-r--r-- 1 solr solr 203694 Feb 16 04:46 _1ch.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 04:46 _1ch.nvm > -rw-r--r-- 1 solr solr 582 Feb 16 04:46 _1ch.si > -rw-r--r-- 1 solr solr 1505737 Feb 16 04:46 _1ch_Lucene50_0.doc > -rw-r--r-- 1 solr solr 1187354 Feb 16 04:46 _1ch_Lucene50_0.pos > -rw-r--r-- 1 solr solr 450652 Feb 16 04:46 _1ch_Lucene50_0.tim > -rw-r--r-- 1 solr solr 10462 Feb 16 04:46 _1ch_Lucene50_0.tip > -rw-r--r-- 1 solr solr 861045 Feb 16 04:46 _1ch_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 4918 Feb 16 04:46 _1ch_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 85 Feb 16 04:46 _1ci.dii > -rw-r--r-- 1 solr solr 15353 Feb 16 04:46 _1ci.dim > -rw-r--r-- 1 solr solr 57633 Feb 16 04:46 _1ci.fdt > -rw-r--r-- 1 solr solr 116 Feb 16 04:46 _1ci.fdx > -rw-r--r-- 1 solr solr 3911 Feb 16 04:46 _1ci.fnm > -rw-r--r-- 1 solr solr 4640 Feb 16 04:46 _1ci.nvd > -rw-r--r-- 1 solr solr 430 Feb 16 04:46 _1ci.nvm > -rw-r--r-- 1 solr solr 582 Feb 16 04:46 _1ci.si > -rw-r--r-- 1 solr solr 37391 Feb 16 04:46 _1ci_Lucene50_0.doc > -rw-r--r-- 1 solr solr 42942 Feb 16 04:46 _1ci_Lucene50_0.pos > -rw-r--r-- 1 solr solr 29356 Feb 16 04:46 _1ci_Lucene50_0.tim > -rw-r--r-- 1 solr solr 929 Feb 16 04:46 _1ci_Lucene50_0.tip > -rw-r--r-- 1 solr solr 14916 Feb 16 04:46 _1ci_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 5685 Feb 16 04:46 _1ci_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 91 Feb 16 04:46 _1cj.dii > -rw-r--r-- 1 solr solr 524390 Feb 16 04:46 _1cj.dim > -rw-r--r-- 1 solr solr 1973482 Feb 16 04:46 _1cj.fdt > -rw-r--r-- 1 solr solr 2811 Feb 16 04:46 _1cj.fdx > -rw-r--r-- 1 solr solr 4110 Feb 16 04:46 _1cj.fnm > -rw-r--r-- 1 solr solr 160332 Feb 16 04:46 _1cj.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 04:46 _1cj.nvm > -rw-r--r-- 1 solr solr 582 Feb 16 04:46 _1cj.si > -rw-r--r-- 1 solr solr 1322842 Feb 16 04:46 _1cj_Lucene50_0.doc > -rw-r--r-- 1 solr solr 1056273 Feb 16 04:46 _1cj_Lucene50_0.pos > -rw-r--r-- 1 solr solr 352030 Feb 16 04:46 _1cj_Lucene50_0.tim > -rw-r--r-- 1 solr solr 8219 Feb 16 04:46 _1cj_Lucene50_0.tip > -rw-r--r-- 1 solr solr 682854 Feb 16 04:46 _1cj_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 4669 Feb 16 04:46 _1cj_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 87 Feb 16 04:47 _1ck.dii > -rw-r--r-- 1 solr solr 33483 Feb 16 04:47 _1ck.dim > -rw-r--r-- 1 solr solr 75302 Feb 16 04:47 _1ck.fdt > -rw-r--r-- 1 solr solr 137 Feb 16 04:47 _1ck.fdx > -rw-r--r-- 1 solr solr 3968 Feb 16 04:47 _1ck.fnm > -rw-r--r-- 1 solr solr 5516 Feb 16 04:47 _1ck.nvd > -rw-r--r-- 1 solr solr 430 Feb 16 04:47 _1ck.nvm > -rw-r--r-- 1 solr solr 582 Feb 16 04:47 _1ck.si > -rw-r--r-- 1 solr solr 43470 Feb 16 04:47 _1ck_Lucene50_0.doc > -rw-r--r-- 1 solr solr 52595 Feb 16 04:47 _1ck_Lucene50_0.pos > -rw-r--r-- 1 solr solr 31404 Feb 16 04:47 _1ck_Lucene50_0.tim > -rw-r--r-- 1 solr solr 956 Feb 16 04:47 _1ck_Lucene50_0.tip > -rw-r--r-- 1 solr solr 23573 Feb 16 04:47 _1ck_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 4885 Feb 16 04:47 _1ck_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 91 Feb 16 04:47 _1cl.dii > -rw-r--r-- 1 solr solr 430084 Feb 16 04:47 _1cl.dim > -rw-r--r-- 1 solr solr 1583049 Feb 16 04:47 _1cl.fdt > -rw-r--r-- 1 solr solr 1693 Feb 16 04:47 _1cl.fdx > -rw-r--r-- 1 solr solr 4180 Feb 16 04:47 _1cl.fnm > -rw-r--r-- 1 solr solr 163413 Feb 16 04:47 _1cl.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 04:47 _1cl.nvm > -rw-r--r-- 1 solr solr 582 Feb 16 04:47 _1cl.si > -rw-r--r-- 1 solr solr 828127 Feb 16 04:47 _1cl_Lucene50_0.doc > -rw-r--r-- 1 solr solr 672146 Feb 16 04:47 _1cl_Lucene50_0.pos > -rw-r--r-- 1 solr solr 292383 Feb 16 04:47 _1cl_Lucene50_0.tim > -rw-r--r-- 1 solr solr 7283 Feb 16 04:47 _1cl_Lucene50_0.tip > -rw-r--r-- 1 solr solr 639381 Feb 16 04:47 _1cl_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 5733 Feb 16 04:47 _1cl_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 96 Feb 16 01:19 _4a.dii > -rw-r--r-- 1 solr solr 9673482 Feb 16 01:19 _4a.dim > -rw-r--r-- 1 solr solr 41172688 Feb 16 01:19 _4a.fdt > -rw-r--r-- 1 solr solr 53488 Feb 16 01:19 _4a.fdx > -rw-r--r-- 1 solr solr 6370 Feb 16 01:19 _4a.fnm > -rw-r--r-- 1 solr solr 3240408 Feb 16 01:19 _4a.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 01:19 _4a.nvm > -rw-r--r-- 1 solr solr 606 Feb 16 01:19 _4a.si > -rw-r--r-- 1 solr solr 26048068 Feb 16 01:19 _4a_Lucene50_0.doc > -rw-r--r-- 1 solr solr 22322286 Feb 16 01:19 _4a_Lucene50_0.pos > -rw-r--r-- 1 solr solr 4406282 Feb 16 01:19 _4a_Lucene50_0.tim > -rw-r--r-- 1 solr solr 87480 Feb 16 01:19 _4a_Lucene50_0.tip > -rw-r--r-- 1 solr solr 17022697 Feb 16 01:19 _4a_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 2546 Feb 16 01:19 _4a_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 97 Feb 16 01:23 _55.dii > -rw-r--r-- 1 solr solr 33494201 Feb 16 01:23 _55.dim > -rw-r--r-- 1 solr solr 154783082 Feb 16 01:23 _55.fdt > -rw-r--r-- 1 solr solr 201850 Feb 16 01:23 _55.fdx > -rw-r--r-- 1 solr solr 6370 Feb 16 01:23 _55.fnm > -rw-r--r-- 1 solr solr 12320076 Feb 16 01:23 _55.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 01:23 _55.nvm > -rw-r--r-- 1 solr solr 606 Feb 16 01:23 _55.si > -rw-r--r-- 1 solr solr 103323952 Feb 16 01:23 _55_Lucene50_0.doc > -rw-r--r-- 1 solr solr 75576569 Feb 16 01:23 _55_Lucene50_0.pos > -rw-r--r-- 1 solr solr 13741960 Feb 16 01:23 _55_Lucene50_0.tim > -rw-r--r-- 1 solr solr 252641 Feb 16 01:23 _55_Lucene50_0.tip > -rw-r--r-- 1 solr solr 64980230 Feb 16 01:23 _55_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 3885 Feb 16 01:23 _55_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 97 Feb 16 01:52 _b0.dii > -rw-r--r-- 1 solr solr 34570332 Feb 16 01:52 _b0.dim > -rw-r--r-- 1 solr solr 156632732 Feb 16 01:51 _b0.fdt > -rw-r--r-- 1 solr solr 203576 Feb 16 01:51 _b0.fdx > -rw-r--r-- 1 solr solr 6370 Feb 16 01:52 _b0.fnm > -rw-r--r-- 1 solr solr 12737261 Feb 16 01:52 _b0.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 01:52 _b0.nvm > -rw-r--r-- 1 solr solr 606 Feb 16 01:52 _b0.si > -rw-r--r-- 1 solr solr 106381734 Feb 16 01:51 _b0_Lucene50_0.doc > -rw-r--r-- 1 solr solr 75616891 Feb 16 01:51 _b0_Lucene50_0.pos > -rw-r--r-- 1 solr solr 14537594 Feb 16 01:51 _b0_Lucene50_0.tim > -rw-r--r-- 1 solr solr 280948 Feb 16 01:51 _b0_Lucene50_0.tip > -rw-r--r-- 1 solr solr 67937813 Feb 16 01:52 _b0_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 3906 Feb 16 01:52 _b0_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 97 Feb 16 02:17 _g3.dii > -rw-r--r-- 1 solr solr 33357720 Feb 16 02:17 _g3.dim > -rw-r--r-- 1 solr solr 151621534 Feb 16 02:16 _g3.fdt > -rw-r--r-- 1 solr solr 198283 Feb 16 02:16 _g3.fdx > -rw-r--r-- 1 solr solr 6370 Feb 16 02:17 _g3.fnm > -rw-r--r-- 1 solr solr 11936097 Feb 16 02:17 _g3.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 02:17 _g3.nvm > -rw-r--r-- 1 solr solr 606 Feb 16 02:17 _g3.si > -rw-r--r-- 1 solr solr 104244855 Feb 16 02:17 _g3_Lucene50_0.doc > -rw-r--r-- 1 solr solr 77411780 Feb 16 02:17 _g3_Lucene50_0.pos > -rw-r--r-- 1 solr solr 13467015 Feb 16 02:17 _g3_Lucene50_0.tim > -rw-r--r-- 1 solr solr 259385 Feb 16 02:17 _g3_Lucene50_0.tip > -rw-r--r-- 1 solr solr 64714459 Feb 16 02:17 _g3_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 3741 Feb 16 02:17 _g3_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 97 Feb 16 02:45 _m0.dii > -rw-r--r-- 1 solr solr 28165278 Feb 16 02:45 _m0.dim > -rw-r--r-- 1 solr solr 141068341 Feb 16 02:45 _m0.fdt > -rw-r--r-- 1 solr solr 184731 Feb 16 02:45 _m0.fdx > -rw-r--r-- 1 solr solr 6370 Feb 16 02:45 _m0.fnm > -rw-r--r-- 1 solr solr 9895189 Feb 16 02:45 _m0.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 02:45 _m0.nvm > -rw-r--r-- 1 solr solr 606 Feb 16 02:45 _m0.si > -rw-r--r-- 1 solr solr 89274235 Feb 16 02:45 _m0_Lucene50_0.doc > -rw-r--r-- 1 solr solr 73456529 Feb 16 02:45 _m0_Lucene50_0.pos > -rw-r--r-- 1 solr solr 11671935 Feb 16 02:45 _m0_Lucene50_0.tim > -rw-r--r-- 1 solr solr 224797 Feb 16 02:45 _m0_Lucene50_0.tip > -rw-r--r-- 1 solr solr 53202741 Feb 16 02:45 _m0_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 3420 Feb 16 02:45 _m0_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 97 Feb 16 03:04 _px.dii > -rw-r--r-- 1 solr solr 40145350 Feb 16 03:04 _px.dim > -rw-r--r-- 1 solr solr 187261193 Feb 16 03:03 _px.fdt > -rw-r--r-- 1 solr solr 242941 Feb 16 03:03 _px.fdx > -rw-r--r-- 1 solr solr 6370 Feb 16 03:04 _px.fnm > -rw-r--r-- 1 solr solr 14880677 Feb 16 03:04 _px.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 03:04 _px.nvm > -rw-r--r-- 1 solr solr 606 Feb 16 03:04 _px.si > -rw-r--r-- 1 solr solr 131465071 Feb 16 03:04 _px_Lucene50_0.doc > -rw-r--r-- 1 solr solr 93798727 Feb 16 03:04 _px_Lucene50_0.pos > -rw-r--r-- 1 solr solr 16477848 Feb 16 03:04 _px_Lucene50_0.tim > -rw-r--r-- 1 solr solr 315830 Feb 16 03:04 _px_Lucene50_0.tip > -rw-r--r-- 1 solr solr 79908007 Feb 16 03:04 _px_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 3777 Feb 16 03:04 _px_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 97 Feb 16 03:27 _uw.dii > -rw-r--r-- 1 solr solr 41059860 Feb 16 03:27 _uw.dim > -rw-r--r-- 1 solr solr 194211022 Feb 16 03:27 _uw.fdt > -rw-r--r-- 1 solr solr 253816 Feb 16 03:27 _uw.fdx > -rw-r--r-- 1 solr solr 6370 Feb 16 03:27 _uw.fnm > -rw-r--r-- 1 solr solr 15163076 Feb 16 03:27 _uw.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 03:27 _uw.nvm > -rw-r--r-- 1 solr solr 606 Feb 16 03:27 _uw.si > -rw-r--r-- 1 solr solr 132322840 Feb 16 03:27 _uw_Lucene50_0.doc > -rw-r--r-- 1 solr solr 98239874 Feb 16 03:27 _uw_Lucene50_0.pos > -rw-r--r-- 1 solr solr 16972899 Feb 16 03:27 _uw_Lucene50_0.tim > -rw-r--r-- 1 solr solr 327230 Feb 16 03:27 _uw_Lucene50_0.tip > -rw-r--r-- 1 solr solr 82057473 Feb 16 03:27 _uw_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 2118 Feb 16 03:27 _uw_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 97 Feb 16 03:48 _zd.dii > -rw-r--r-- 1 solr solr 48841354 Feb 16 03:48 _zd.dim > -rw-r--r-- 1 solr solr 238599981 Feb 16 03:47 _zd.fdt > -rw-r--r-- 1 solr solr 310021 Feb 16 03:47 _zd.fdx > -rw-r--r-- 1 solr solr 6370 Feb 16 03:48 _zd.fnm > -rw-r--r-- 1 solr solr 18722632 Feb 16 03:48 _zd.nvd > -rw-r--r-- 1 solr solr 463 Feb 16 03:48 _zd.nvm > -rw-r--r-- 1 solr solr 606 Feb 16 03:48 _zd.si > -rw-r--r-- 1 solr solr 159426637 Feb 16 03:48 _zd_Lucene50_0.doc > -rw-r--r-- 1 solr solr 120303162 Feb 16 03:48 _zd_Lucene50_0.pos > -rw-r--r-- 1 solr solr 19918681 Feb 16 03:48 _zd_Lucene50_0.tim > -rw-r--r-- 1 solr solr 364005 Feb 16 03:48 _zd_Lucene50_0.tip > -rw-r--r-- 1 solr solr 98783100 Feb 16 03:48 _zd_Lucene70_0.dvd > -rw-r--r-- 1 solr solr 4047 Feb 16 03:48 _zd_Lucene70_0.dvm > -rw-r--r-- 1 solr solr 2024 Feb 16 04:47 segments_oc > -rw-r--r-- 1 solr solr 0 Feb 16 00:58 write.lock > .cfe 0.00347614 MB > .cfs 364.435 MB > .dii 0.00186634 MB > .dim 342.558 MB > .doc 1090.36 MB > .dvd 673.36 MB > .dvm 0.0857792 MB > .fdt 1614.33 MB > .fdx 2.10676 MB > .fnm 0.104074 MB > .lock 0 MB > .nvd 126.348 MB > .nvm 0.00920963 MB > .pos 816.546 MB > .si 0.0158167 MB > .tim 142.813 MB > .tip 2.73625 MB > > David Howe > Java Domain Architect > Postal Systems > Level 16, 111 Bourke Street Melbourne VIC 3000 > > T 0391067904 > > M 0424036591 > > E david.h...@auspost.com.au > > W auspost.com.au > W startrack.com.au > > Australia Post is committed to providing our customers with excellent > service. If we can assist you in any way please telephone 13 13 18 or visit > our website. > > The information contained in this email communication may be proprietary, > confidential or legally professionally privileged. It is intended exclusively > for the individual or entity to which it is addressed. You should only read, > disclose, re-transmit, copy, distribute, act in reliance on or commercialise > the information if you are authorised to do so. Australia Post does not > represent, warrant or guarantee that the integrity of this email > communication has been maintained nor that the communication is free of > errors, virus or interference. > > If you are not the addressee or intended recipient please notify us by > replying direct to the sender and then destroy any electronic or paper copy > of this message. Any views expressed in this email communication are taken to > be those of the individual sender, except where the sender specifically > attributes those views to Australia Post and is authorised to do so. > > Please consider the environment before printing this email.