Using Solr 6.4.1 on windows. Installed and trial POST on my directories worked 
okay. However, now trying to create an index from code running on tomcat on the 
same machine as SOLR server with my own schema. Indexing of PDF is very slow. 
Investigating that find my tomcat output full of wire
12:07:06,758 DEBUG wire:72 -  >> "[0xe3][0xe0][0xc7]L[0xf5][0xea][\r]?
12:07:06,763 DEBUG wire:72 -  >> 
"f[0x81][0xb0]b[0xca][0xfa][0xb7][0x1f]n[0xff][0x0][0xa8][0xd0][0x16][0xbb]*[0xfe][0x95][0x98]-[0xbd][0xb7]-
12:07:06,805 DEBUG wire:72 -  >> 
"X[0x3][0xd4][0xcf]OOS:[0x94][0x8b][0xe2][0x89][0x8f][0xc9]rClVQ[0x85][0x1e][0x82]T[0x9e][0xe7]N[0xf4][0xfa]-
This cant be helping. My code is:

      try {
            ContentStreamUpdateRequest up = new 
ContentStreamUpdateRequest("/update/extract");
            File f = new File(filename);
            ContentStreamBase.FileStream cs = new 
ContentStreamBase.FileStream(f);
            up.addContentStream(cs);
            up.setParam("literal.id",f.getPath());
            up.setParam("literal.location", idString);
            up.setParam("literal.access",access.toString());
            up.setAction(AbstractUpdateRequest.ACTION.COMMIT, true, true);
            solr.request(up);

All the logging generated by last line. I don’t have any httpclient.wire lines 
in my log4j.properties (presume these are from httpclient.wire). What do I do 
to turn this off?


Phil Scadden, Geoscientist
GNS Science I Te Pῡ Ao

764 Cumberland Street, Dunedin 9016, Private Bag 1930, Dunedin 9054, New Zealand
Ph +64 3 4799663  Mob +64 027 3463185 I Fax OFFICE-FAX +64 3 477 5232
http://www.gns.cri.nz/ I Email: p.scad...@gns.cri.nz


Notice: This email and any attachments are confidential and may not be used, 
published or redistributed without the prior written consent of the Institute 
of Geological and Nuclear Sciences Limited (GNS Science). If received in error 
please destroy and immediately notify GNS Science. Do not copy or disclose the 
contents.

Reply via email to