Re: Dataimport problem

2019-07-31 Thread Alexandre Rafalovitch
I wonder if you have some sort of JDBC pool enabled and/or the number
of worker threads is configured differently. Compare tomcat level
configuration and/or try thread dump of the java runtime when you are
stuck.

Or maybe something similar on the Postgres side.

Regards,
   Alex.

On Wed, 31 Jul 2019 at 10:36, Srinivas Kashyap  wrote:
>
> Hi,
> Hi,
>
> 1)Have you tried running _just_ your SQL queries to see how long they take to 
> respond and whether it responds with the full result set of batches
>
> The 9th request returns only 2 rows. This behaviour is happening for all the 
> cores which have more than 8 SQL requests. But the same is working fine with 
> AWS hosting. Really baffled.
>
> Thanks and Regards,
> Srinivas Kashyap
>
> -Original Message-
> From: Erick Erickson 
> Sent: 31 July 2019 08:00 PM
> To: solr-user@lucene.apache.org
> Subject: Re: Dataimport problem
>
> This code is a little old, but should give you a place to start:
>
> https://lucidworks.com/post/indexing-with-solrj/
>
> As for DIH, my guess is that when you moved to Azure, your connectivity to 
> the DB changed, possibly the driver Solr uses etc., and your SQL query in 
> step 9 went from, maybe, batching rows to returning the entire result set or 
> similar weirdness. Have you tried running _just_ your SQL queries to see how 
> long they take to respond and whether it responds with the full result set of 
> batches?
>
> Best,
> Erick
>
> > On Jul 31, 2019, at 10:18 AM, Srinivas Kashyap  
> > wrote:
> >
> > Hi,
> >
> > 1) Solr on Tomcat has not been an option for quite a while. So, you must be 
> > running an old version of Solr. Which one?
> >
> > We are using Solr 5.2.1(WAR based deployment so)
> >
> >
> > 5) DIH is not actually recommended for production, more for exploration; 
> > you may want to consider moving to a stronger architecture given the 
> > complexity of your needs
> >
> > Can you please give pointers to look into, We are using DIH for production 
> > and facing few issues. We need to start phasing out
> >
> >
> > Thanks and Regards,
> > Srinivas Kashyap
> >
> > -Original Message-
> > From: Alexandre Rafalovitch 
> > Sent: 31 July 2019 07:41 PM
> > To: solr-user 
> > Subject: Re: Dataimport problem
> >
> > A couple of things:
> > 1) Solr on Tomcat has not been an option for quite a while. So, you must be 
> > running an old version of Solr. Which one?
> > 2) Compare that you have the same Solr config. In Admin UI, there will be 
> > all O/S variables passed to the Java runtime, I would check them 
> > side-by-side
> > 3) You can enable Dataimport(DIH) debug in Admin UI, so perhaps you can run 
> > a subset (1?) of the queries and see the difference
> > 4) Worst case, you may want to track this in between Solr and DB by using 
> > network analyzer (e.g. Wireshark). That may show you the actual queries, 
> > timing, connection issues, etc
> > 5) DIH is not actually recommended for production, more for exploration; 
> > you may want to consider moving to a stronger architecture given the 
> > complexity of your needs
> >
> > Regards,
> >   Alex.
> >
> > On Wed, 31 Jul 2019 at 10:04, Srinivas Kashyap  
> > wrote:
> >>
> >> Hello,
> >>
> >> We are trying to run Solr(Tomcat) on Azure instance and postgres being the 
> >> DB. When I run full import(my core has 18 SQL queries), for some reason, 
> >> the requests will go till 9 and it gets hung for eternity.
> >>
> >> But the same setup, solr(tomcat) and postgres database works fine with AWS 
> >> hosting.
> >>
> >> Am I missing some configuration? Please let me know.
> >>
> >> Thanks and Regards,
> >> Srinivas Kashyap
> >> 
> 
> DISCLAIMER:
> E-mails and attachments from Bamboo Rose, LLC are confidential.
> If you are not the intended recipient, please notify the sender immediately 
> by replying to the e-mail, and then delete it without making copies or using 
> it in any way.
> No representation is made that this email or any attachments are free of 
> viruses. Virus scanning is recommended and is the responsibility of the 
> recipient.


RE: Dataimport problem

2019-07-31 Thread Srinivas Kashyap
Hi,
Hi,

1)Have you tried running _just_ your SQL queries to see how long they take to 
respond and whether it responds with the full result set of batches

The 9th request returns only 2 rows. This behaviour is happening for all the 
cores which have more than 8 SQL requests. But the same is working fine with 
AWS hosting. Really baffled.

Thanks and Regards,
Srinivas Kashyap

-Original Message-
From: Erick Erickson 
Sent: 31 July 2019 08:00 PM
To: solr-user@lucene.apache.org
Subject: Re: Dataimport problem

This code is a little old, but should give you a place to start:

https://lucidworks.com/post/indexing-with-solrj/

As for DIH, my guess is that when you moved to Azure, your connectivity to the 
DB changed, possibly the driver Solr uses etc., and your SQL query in step 9 
went from, maybe, batching rows to returning the entire result set or similar 
weirdness. Have you tried running _just_ your SQL queries to see how long they 
take to respond and whether it responds with the full result set of batches?

Best,
Erick

> On Jul 31, 2019, at 10:18 AM, Srinivas Kashyap  
> wrote:
>
> Hi,
>
> 1) Solr on Tomcat has not been an option for quite a while. So, you must be 
> running an old version of Solr. Which one?
>
> We are using Solr 5.2.1(WAR based deployment so)
>
>
> 5) DIH is not actually recommended for production, more for exploration; you 
> may want to consider moving to a stronger architecture given the complexity 
> of your needs
>
> Can you please give pointers to look into, We are using DIH for production 
> and facing few issues. We need to start phasing out
>
>
> Thanks and Regards,
> Srinivas Kashyap
>
> -Original Message-
> From: Alexandre Rafalovitch 
> Sent: 31 July 2019 07:41 PM
> To: solr-user 
> Subject: Re: Dataimport problem
>
> A couple of things:
> 1) Solr on Tomcat has not been an option for quite a while. So, you must be 
> running an old version of Solr. Which one?
> 2) Compare that you have the same Solr config. In Admin UI, there will be all 
> O/S variables passed to the Java runtime, I would check them side-by-side
> 3) You can enable Dataimport(DIH) debug in Admin UI, so perhaps you can run a 
> subset (1?) of the queries and see the difference
> 4) Worst case, you may want to track this in between Solr and DB by using 
> network analyzer (e.g. Wireshark). That may show you the actual queries, 
> timing, connection issues, etc
> 5) DIH is not actually recommended for production, more for exploration; you 
> may want to consider moving to a stronger architecture given the complexity 
> of your needs
>
> Regards,
>   Alex.
>
> On Wed, 31 Jul 2019 at 10:04, Srinivas Kashyap  
> wrote:
>>
>> Hello,
>>
>> We are trying to run Solr(Tomcat) on Azure instance and postgres being the 
>> DB. When I run full import(my core has 18 SQL queries), for some reason, the 
>> requests will go till 9 and it gets hung for eternity.
>>
>> But the same setup, solr(tomcat) and postgres database works fine with AWS 
>> hosting.
>>
>> Am I missing some configuration? Please let me know.
>>
>> Thanks and Regards,
>> Srinivas Kashyap
>> 

DISCLAIMER:
E-mails and attachments from Bamboo Rose, LLC are confidential.
If you are not the intended recipient, please notify the sender immediately by 
replying to the e-mail, and then delete it without making copies or using it in 
any way.
No representation is made that this email or any attachments are free of 
viruses. Virus scanning is recommended and is the responsibility of the 
recipient.


Re: Dataimport problem

2019-07-31 Thread Erick Erickson
This code is a little old, but should give you a place to start:

https://lucidworks.com/post/indexing-with-solrj/

As for DIH, my guess is that when you moved to Azure, your connectivity to the 
DB changed, possibly the driver Solr uses etc., and your SQL query in step 9 
went from, maybe, batching rows to returning the entire result set or similar 
weirdness. Have you tried running _just_ your SQL queries to see how long they 
take to respond and whether it responds with the full result set of batches?

Best,
Erick

> On Jul 31, 2019, at 10:18 AM, Srinivas Kashyap  
> wrote:
> 
> Hi,
> 
> 1) Solr on Tomcat has not been an option for quite a while. So, you must be 
> running an old version of Solr. Which one?
> 
> We are using Solr 5.2.1(WAR based deployment so)
> 
> 
> 5) DIH is not actually recommended for production, more for exploration; you 
> may want to consider moving to a stronger architecture given the complexity 
> of your needs
> 
> Can you please give pointers to look into, We are using DIH for production 
> and facing few issues. We need to start phasing out
> 
> 
> Thanks and Regards,
> Srinivas Kashyap
> 
> -Original Message-
> From: Alexandre Rafalovitch  
> Sent: 31 July 2019 07:41 PM
> To: solr-user 
> Subject: Re: Dataimport problem
> 
> A couple of things:
> 1) Solr on Tomcat has not been an option for quite a while. So, you must be 
> running an old version of Solr. Which one?
> 2) Compare that you have the same Solr config. In Admin UI, there will be all 
> O/S variables passed to the Java runtime, I would check them side-by-side
> 3) You can enable Dataimport(DIH) debug in Admin UI, so perhaps you can run a 
> subset (1?) of the queries and see the difference
> 4) Worst case, you may want to track this in between Solr and DB by using 
> network analyzer (e.g. Wireshark). That may show you the actual queries, 
> timing, connection issues, etc
> 5) DIH is not actually recommended for production, more for exploration; you 
> may want to consider moving to a stronger architecture given the complexity 
> of your needs
> 
> Regards,
>   Alex.
> 
> On Wed, 31 Jul 2019 at 10:04, Srinivas Kashyap  
> wrote:
>> 
>> Hello,
>> 
>> We are trying to run Solr(Tomcat) on Azure instance and postgres being the 
>> DB. When I run full import(my core has 18 SQL queries), for some reason, the 
>> requests will go till 9 and it gets hung for eternity.
>> 
>> But the same setup, solr(tomcat) and postgres database works fine with AWS 
>> hosting.
>> 
>> Am I missing some configuration? Please let me know.
>> 
>> Thanks and Regards,
>> Srinivas Kashyap
>> 
>> DISCLAIMER:
>> E-mails and attachments from Bamboo Rose, LLC are confidential.
>> If you are not the intended recipient, please notify the sender immediately 
>> by replying to the e-mail, and then delete it without making copies or using 
>> it in any way.
>> No representation is made that this email or any attachments are free of 
>> viruses. Virus scanning is recommended and is the responsibility of the 
>> recipient.



RE: Dataimport problem

2019-07-31 Thread Srinivas Kashyap
Hi,

1) Solr on Tomcat has not been an option for quite a while. So, you must be 
running an old version of Solr. Which one?

We are using Solr 5.2.1(WAR based deployment so)


5) DIH is not actually recommended for production, more for exploration; you 
may want to consider moving to a stronger architecture given the complexity of 
your needs

Can you please give pointers to look into, We are using DIH for production and 
facing few issues. We need to start phasing out


Thanks and Regards,
Srinivas Kashyap
            
-Original Message-
From: Alexandre Rafalovitch  
Sent: 31 July 2019 07:41 PM
To: solr-user 
Subject: Re: Dataimport problem

A couple of things:
1) Solr on Tomcat has not been an option for quite a while. So, you must be 
running an old version of Solr. Which one?
2) Compare that you have the same Solr config. In Admin UI, there will be all 
O/S variables passed to the Java runtime, I would check them side-by-side
3) You can enable Dataimport(DIH) debug in Admin UI, so perhaps you can run a 
subset (1?) of the queries and see the difference
4) Worst case, you may want to track this in between Solr and DB by using 
network analyzer (e.g. Wireshark). That may show you the actual queries, 
timing, connection issues, etc
5) DIH is not actually recommended for production, more for exploration; you 
may want to consider moving to a stronger architecture given the complexity of 
your needs

Regards,
   Alex.

On Wed, 31 Jul 2019 at 10:04, Srinivas Kashyap  wrote:
>
> Hello,
>
> We are trying to run Solr(Tomcat) on Azure instance and postgres being the 
> DB. When I run full import(my core has 18 SQL queries), for some reason, the 
> requests will go till 9 and it gets hung for eternity.
>
> But the same setup, solr(tomcat) and postgres database works fine with AWS 
> hosting.
>
> Am I missing some configuration? Please let me know.
>
> Thanks and Regards,
> Srinivas Kashyap
> 
> DISCLAIMER:
> E-mails and attachments from Bamboo Rose, LLC are confidential.
> If you are not the intended recipient, please notify the sender immediately 
> by replying to the e-mail, and then delete it without making copies or using 
> it in any way.
> No representation is made that this email or any attachments are free of 
> viruses. Virus scanning is recommended and is the responsibility of the 
> recipient.


Re: Dataimport problem

2019-07-31 Thread Alexandre Rafalovitch
A couple of things:
1) Solr on Tomcat has not been an option for quite a while. So, you
must be running an old version of Solr. Which one?
2) Compare that you have the same Solr config. In Admin UI, there will
be all O/S variables passed to the Java runtime, I would check them
side-by-side
3) You can enable Dataimport(DIH) debug in Admin UI, so perhaps you
can run a subset (1?) of the queries and see the difference
4) Worst case, you may want to track this in between Solr and DB by
using network analyzer (e.g. Wireshark). That may show you the actual
queries, timing, connection issues, etc
5) DIH is not actually recommended for production, more for
exploration; you may want to consider moving to a stronger
architecture given the complexity of your needs

Regards,
   Alex.

On Wed, 31 Jul 2019 at 10:04, Srinivas Kashyap  wrote:
>
> Hello,
>
> We are trying to run Solr(Tomcat) on Azure instance and postgres being the 
> DB. When I run full import(my core has 18 SQL queries), for some reason, the 
> requests will go till 9 and it gets hung for eternity.
>
> But the same setup, solr(tomcat) and postgres database works fine with AWS 
> hosting.
>
> Am I missing some configuration? Please let me know.
>
> Thanks and Regards,
> Srinivas Kashyap
> 
> DISCLAIMER:
> E-mails and attachments from Bamboo Rose, LLC are confidential.
> If you are not the intended recipient, please notify the sender immediately 
> by replying to the e-mail, and then delete it without making copies or using 
> it in any way.
> No representation is made that this email or any attachments are free of 
> viruses. Virus scanning is recommended and is the responsibility of the 
> recipient.


Dataimport problem

2019-07-31 Thread Srinivas Kashyap
Hello,

We are trying to run Solr(Tomcat) on Azure instance and postgres being the DB. 
When I run full import(my core has 18 SQL queries), for some reason, the 
requests will go till 9 and it gets hung for eternity.

But the same setup, solr(tomcat) and postgres database works fine with AWS 
hosting.

Am I missing some configuration? Please let me know.

Thanks and Regards,
Srinivas Kashyap

DISCLAIMER:
E-mails and attachments from Bamboo Rose, LLC are confidential.
If you are not the intended recipient, please notify the sender immediately by 
replying to the e-mail, and then delete it without making copies or using it in 
any way.
No representation is made that this email or any attachments are free of 
viruses. Virus scanning is recommended and is the responsibility of the 
recipient.


Re: Solr 4 dataimport problem.

2012-08-19 Thread Erick Erickson
SolrJ is completely irrelevant for using DIH,
the only time you need it would be
if you're going to write a Java program to push
data into your index. Which can be done using
a JDBC driver to connect to your SQL server
and then pushing docs to Solr, see:

http://searchhub.org/dev/2012/02/14/indexing-with-solrj/

Best
Erick



On Sat, Aug 18, 2012 at 10:22 AM, Val  wrote:
> Hi Gora,
>
> First of all thank you, and I will try to look closely at example-DIH (so I
> guess the rest of my email can be ignored), thanks!
>
> I'm using DataImportHandler as it's described here:
> http://wiki.apache.org/solr/DataImportHandler. And I have the binary
> distribution, not the compiled one.
>
> I meant that I'm using the example/ folder which is included with the
> binary Solr archive to create a DataImportHandler which imports from MySQL
> database.
>
> I'm running  "java -jar start.jar" from
> /home/my/projects/apache-solr-4.0.0-BETA/example.
>
> And, the example-DIH is really working for me. I just wanted to use the
> above folder in order to experience and try to configure the dataimport by
> myself.
>
> On the thread I mentioned, someone wrote:
> [[You need to find "apache-solr-solrj-4.0.jar" from your distribution and
> put it in the classpath somewhere. Perhaps the easiest thing is to include
> it in your core's "lib" directory.]]
> So I tried that too, and therefore I mentioned SolrJ.
>
> Thanks.
>
>
> On Sat, Aug 18, 2012 at 6:23 PM, Gora Mohanty  wrote:
>
>> On 18 August 2012 19:50, Val  wrote:
>> > Hi all,
>> >
>> > I'm having trouble using dataimport, so maybe you can help me. I've
>> > downloaded beta version of Solr 4.
>> > I already posted a question
>> > here<
>> http://stackoverflow.com/questions/12018422/classnotfoundexception-dataimport-dataimporthandler
>> >,
>> > so I don't want to repeat it. But in short:
>> > I want to import from MySQL, and I configured everything as needed. I'm
>> > getting  a DataImportHandler exception, with no more output about the
>> > nature of the error.
>> [...]
>>
>> Are you indexing data using the DataImportHandler or SolrJ?
>> The error, and your post seem to refer to DIH but the
>> StackOverflow thread mentions SolrJ libraries.
>>
>> Are you building Solr 4.0.0-BETA from source, or are you using
>> the binary distribution? Could you clarify what you mean by
>> "example folder for my MySQL DB" in your StackOverflow question,
>> i.e., please provide the filesystem path from where you are doing
>> a "java -jar start.jar". If you are in
>> apache-solr-4.0.0-BETA/example/example-DIH please read the
>> README.txt there on how to start Solr for the
>> DataImportHandler example configuration: You need to specify
>> solr.solr.home. Everything should be ready to run from the binary
>> distribution without needing to change any configuration files.
>>
>> Regards,
>> Gora
>>
>
>
>
> --
>
> Regards,
>
> Val
>
> *
> *
> * *
> *
> *
> *
> webdesignpatterns.org
> *
> *
>  | twitter 
> *


Re: Solr 4 dataimport problem.

2012-08-18 Thread Val
Hi Gora,

First of all thank you, and I will try to look closely at example-DIH (so I
guess the rest of my email can be ignored), thanks!

I'm using DataImportHandler as it's described here:
http://wiki.apache.org/solr/DataImportHandler. And I have the binary
distribution, not the compiled one.

I meant that I'm using the example/ folder which is included with the
binary Solr archive to create a DataImportHandler which imports from MySQL
database.

I'm running  "java -jar start.jar" from
/home/my/projects/apache-solr-4.0.0-BETA/example.

And, the example-DIH is really working for me. I just wanted to use the
above folder in order to experience and try to configure the dataimport by
myself.

On the thread I mentioned, someone wrote:
[[You need to find "apache-solr-solrj-4.0.jar" from your distribution and
put it in the classpath somewhere. Perhaps the easiest thing is to include
it in your core's "lib" directory.]]
So I tried that too, and therefore I mentioned SolrJ.

Thanks.


On Sat, Aug 18, 2012 at 6:23 PM, Gora Mohanty  wrote:

> On 18 August 2012 19:50, Val  wrote:
> > Hi all,
> >
> > I'm having trouble using dataimport, so maybe you can help me. I've
> > downloaded beta version of Solr 4.
> > I already posted a question
> > here<
> http://stackoverflow.com/questions/12018422/classnotfoundexception-dataimport-dataimporthandler
> >,
> > so I don't want to repeat it. But in short:
> > I want to import from MySQL, and I configured everything as needed. I'm
> > getting  a DataImportHandler exception, with no more output about the
> > nature of the error.
> [...]
>
> Are you indexing data using the DataImportHandler or SolrJ?
> The error, and your post seem to refer to DIH but the
> StackOverflow thread mentions SolrJ libraries.
>
> Are you building Solr 4.0.0-BETA from source, or are you using
> the binary distribution? Could you clarify what you mean by
> "example folder for my MySQL DB" in your StackOverflow question,
> i.e., please provide the filesystem path from where you are doing
> a "java -jar start.jar". If you are in
> apache-solr-4.0.0-BETA/example/example-DIH please read the
> README.txt there on how to start Solr for the
> DataImportHandler example configuration: You need to specify
> solr.solr.home. Everything should be ready to run from the binary
> distribution without needing to change any configuration files.
>
> Regards,
> Gora
>



-- 

Regards,

Val

*
*
* *
*
*
*
webdesignpatterns.org
*
*
 | twitter 
*


Re: Solr 4 dataimport problem.

2012-08-18 Thread Gora Mohanty
On 18 August 2012 19:50, Val  wrote:
> Hi all,
>
> I'm having trouble using dataimport, so maybe you can help me. I've
> downloaded beta version of Solr 4.
> I already posted a question
> here,
> so I don't want to repeat it. But in short:
> I want to import from MySQL, and I configured everything as needed. I'm
> getting  a DataImportHandler exception, with no more output about the
> nature of the error.
[...]

Are you indexing data using the DataImportHandler or SolrJ?
The error, and your post seem to refer to DIH but the
StackOverflow thread mentions SolrJ libraries.

Are you building Solr 4.0.0-BETA from source, or are you using
the binary distribution? Could you clarify what you mean by
"example folder for my MySQL DB" in your StackOverflow question,
i.e., please provide the filesystem path from where you are doing
a "java -jar start.jar". If you are in
apache-solr-4.0.0-BETA/example/example-DIH please read the
README.txt there on how to start Solr for the
DataImportHandler example configuration: You need to specify
solr.solr.home. Everything should be ready to run from the binary
distribution without needing to change any configuration files.

Regards,
Gora


Re: DataImport problem

2010-09-04 Thread Lance Norskog
The RSS example does not do this. It declares only the source, and gives 
all of the parameters in the entity.


You can have different entities with different uses of the datasource.

In general, the DIH is easier to use when starting with one of the 
examples and slowing changing one thing at a time.


Lance

Jason Chaffee wrote:

I am getting the following error with the DataImport and I am not sure why as I 
following the documentation.  I am trying to use XPath and the URLDataSource 
but it fails to load the datasource.

SEVERE: Full Import failed
org.apache.solr.handler.dataimport.DataImportHandlerException: No dataSource 
:null available for entity :store Processing Document # 1
at 
org.apache.solr.handler.dataimport.DataImporter.getDataSourceInstance(DataImporter.java:279)
at 
org.apache.solr.handler.dataimport.ContextImpl.getDataSource(ContextImpl.java:94)
at 
org.apache.solr.handler.dataimport.XPathEntityProcessor.init(XPathEntityProcessor.java:78)
at 
org.apache.solr.handler.dataimport.EntityProcessorWrapper.init(EntityProcessorWrapper.java:71)
at 
org.apache.solr.handler.dataimport.DocBuilder.buildDocument(DocBuilder.java:319)
at 
org.apache.solr.handler.dataimport.DocBuilder.doFullDump(DocBuilder.java:242)
at 
org.apache.solr.handler.dataimport.DocBuilder.execute(DocBuilder.java:180)
at 
org.apache.solr.handler.dataimport.DataImporter.doFullImport(DataImporter.java:331)
at 
org.apache.solr.handler.dataimport.DataImporter.runCmd(DataImporter.java:389)
at 
org.apache.solr.handler.dataimport.DataImporter$1.run(DataImporter.java:370)
Sep 4, 2010 7:12:51 PM org.apache.solr.update.DirectUpdateHandler2 rollback


Here is my dataconfig.xml:


   http://localhost:8080/app"; encoding="UTF-8" 
connectionTimeout="5000" readTimeout="6" />
   
 
   
   
 
   

   


DataImport problem

2010-09-04 Thread Jason Chaffee
I am getting the following error with the DataImport and I am not sure why as I 
following the documentation.  I am trying to use XPath and the URLDataSource 
but it fails to load the datasource.

SEVERE: Full Import failed
org.apache.solr.handler.dataimport.DataImportHandlerException: No dataSource 
:null available for entity :store Processing Document # 1
at 
org.apache.solr.handler.dataimport.DataImporter.getDataSourceInstance(DataImporter.java:279)
at 
org.apache.solr.handler.dataimport.ContextImpl.getDataSource(ContextImpl.java:94)
at 
org.apache.solr.handler.dataimport.XPathEntityProcessor.init(XPathEntityProcessor.java:78)
at 
org.apache.solr.handler.dataimport.EntityProcessorWrapper.init(EntityProcessorWrapper.java:71)
at 
org.apache.solr.handler.dataimport.DocBuilder.buildDocument(DocBuilder.java:319)
at 
org.apache.solr.handler.dataimport.DocBuilder.doFullDump(DocBuilder.java:242)
at 
org.apache.solr.handler.dataimport.DocBuilder.execute(DocBuilder.java:180)
at 
org.apache.solr.handler.dataimport.DataImporter.doFullImport(DataImporter.java:331)
at 
org.apache.solr.handler.dataimport.DataImporter.runCmd(DataImporter.java:389)
at 
org.apache.solr.handler.dataimport.DataImporter$1.run(DataImporter.java:370)
Sep 4, 2010 7:12:51 PM org.apache.solr.update.DirectUpdateHandler2 rollback


Here is my dataconfig.xml:


  http://localhost:8080/app"; encoding="UTF-8" connectionTimeout="5000" 
readTimeout="6" />