Re: DIH for sharded database?

2010-12-20 Thread Grijesh.singh
} - - - - - /entity /entity - Grijesh -- View this message in context: http://lucene.472066.n3.nabble.com/DIH-for-sharded-database-tp2113767p2119370.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: DIH for sharded database?

2010-12-19 Thread Dennis Gearon
, December 18, 2010 6:20:54 PM Subject: DIH for sharded database? I have a table that is broken up into many virtual shards. So basically I have N identical tables: Document1 Document2 . . Document36 Currently these tables all live in the same database, but in the future they may be moved

Re: DIH for sharded database?

2010-12-19 Thread Dennis Gearon
/security/?p=4501tag=nl.e036' EARTH has a Right To Life, otherwise we all die. - Original Message From: Andy angelf...@yahoo.com To: solr-user@lucene.apache.org Sent: Sat, December 18, 2010 6:20:54 PM Subject: DIH for sharded database? I have a table that is broken up into many virtual

Re: DIH for sharded database?

2010-12-19 Thread Andy
This is helpful. Thank you. --- On Sun, 12/19/10, Dennis Gearon gear...@sbcglobal.net wrote: From: Dennis Gearon gear...@sbcglobal.net Subject: Re: DIH for sharded database? To: solr-user@lucene.apache.org Date: Sunday, December 19, 2010, 11:56 AM Some talk on giant databases in postgres

Re: DIH for sharded database?

2010-12-19 Thread Lance Norskog
You said: Currently these tables all live in the same database, but in the future they may be moved to different servers to scale out if the needs arise. That's why I concentrated on the JDBC url problem. But you can use a file as a list of tables. Read each line, and a sub-entity can substitute

Re: DIH for sharded database?

2010-12-19 Thread Andy
--- On Mon, 12/20/10, Lance Norskog goks...@gmail.com wrote: You said: Currently these tables all live in the same database, but in the future they may be moved to different servers to scale out if the needs arise. That's why I concentrated on the JDBC url problem. But you can use a

DIH for sharded database?

2010-12-18 Thread Andy
I have a table that is broken up into many virtual shards. So basically I have N identical tables: Document1 Document2 . . Document36 Currently these tables all live in the same database, but in the future they may be moved to different servers to scale out if the needs arise. Is there any

Re: DIH for sharded database?

2010-12-18 Thread Lance Norskog
You can have a file with 1,2,3 on separate lines. There is a line-by-line file reader that can pull these as separate drivers. Inside that entity the JDBC url has to be altered with the incoming numbers. I don't know if this will work. It also may work for single-threaded DIH but not during

Re: DIH for sharded database?

2010-12-18 Thread Andy
--- On Sat, 12/18/10, Lance Norskog goks...@gmail.com wrote: You can have a file with 1,2,3 on separate lines. There is a line-by-line file reader that can pull these as separate drivers. Inside that entity the JDBC url has to be altered with the incoming numbers. I don't know if this