Re: ubuntu lucid package

2010-04-30 Thread Gora Mohanty
On Thu, 29 Apr 2010 19:54:49 -0700 (PDT) Otis Gospodnetic otis_gospodne...@yahoo.com wrote: Pablo, Ubuntu Lucid is *brand* new :) try: find / -name \*solr\* or locate solr.war [...] Also, the standard Debian/Ubuntu way of finding out what files a package installed is: dpkg -l

Re: Sites with Innovative Presentation of Tags and Facets

2010-05-29 Thread Gora Mohanty
On Sat, 29 May 2010 00:00:57 -0700 (PDT) Dennis Gearon gear...@sbcglobal.net wrote: I'm interested in this stuff, but what is a 'sparkline', and can I get a URL of an example? [...] Here is one that I recently came across, and liked (look at the last example):

Database connections during data import

2010-07-10 Thread Gora Mohanty
Hi, We are indexing a large amount of data into Solr from a MS-SQL database (don't ask!). There are approximately 4 million records, and a total database size of the order of 20GB. There is also a need for incremental updates, but these are only a few % of the total. After some

Re: Database connections during data import

2010-07-12 Thread Gora Mohanty
On Sun, 11 Jul 2010 07:22:51 -0700 (PDT) osocurious2 ken.fos...@realestate.com wrote: Gora, Our environment, currently under development, is very nearly the exact same thing as yours. My DB is currently only about 10GB, but likely to grow. [...] Thanks for your response. It is good to hear

Re: Database connections during data import

2010-07-12 Thread Gora Mohanty
On Mon, 12 Jul 2010 09:20:05 +0200 Willem Van Riet willem.vanr...@sa.24.com wrote: Hi Gora Also indexing 4mil + records from a MS-SQL database - index size is about 25Gb. Thanks for some great pointers. More detailed responses below. I managed to solve both the performance and recovery

Replacing text fields with numeric fields for speed

2010-07-23 Thread Gora Mohanty
Hi, One of the things that we were thinking of doing in order to speed up results from Solr search is to convert fixed-text fields (such as values from a drop-down) into numeric fields. The thinking behind this was that searching through numeric values would be faster than searching through

Re: Replacing text fields with numeric fields for speed

2010-07-23 Thread Gora Mohanty
On Fri, 23 Jul 2010 14:44:32 +0530 Gora Mohanty g...@srijan.in wrote: [...] From some experiments, I see only a small difference between a text search on a field, and a numeric search on the corresponding numeric field. [...] Well, I take that back. Running more rigorous tests with Apache

Re: Replacing text fields with numeric fields for speed

2010-07-23 Thread Gora Mohanty
On Fri, 23 Jul 2010 14:33:54 +0200 Peter Karich peat...@yahoo.de wrote: Gora, just for my interests: does apache bench sends different queries, or from the logs, or always the same query? If it would be always the same query the cache of solr will come and make the response time super

Implementing lookups while importing data

2010-07-29 Thread Gora Mohanty
Hi, We have a database that has numeric values for some columns, which correspond to text values in drop-downs on a website. We need to index both the numeric and text equivalents into Solr, and can do that via a lookup on a different table from the one holding the main data. We are currently

Re: Reference shards by alias

2010-07-29 Thread Gora Mohanty
On Thu, 29 Jul 2010 10:49:18 +0100 Mark Allan mark.al...@ed.ac.uk wrote: [...] Is there a way to reference each core/shard by name rather than explicitly stating the host, port and path in the URL? For example, I'd like to swap: http://localhost:8983/solr/core0/select/?

Re: Implementing lookups while importing data

2010-07-29 Thread Gora Mohanty
On Thu, 29 Jul 2010 12:30:50 +0200 Chantal Ackermann chantal.ackerm...@btelligent.de wrote: Hi Gora, your suggestion is good. Two thoughts: 1. if both of the tables you are joining are in the same database under the same user you might want to check why the join is so slow. Maybe you

Re: Facets on multiple values

2010-07-29 Thread Gora Mohanty
On Thu, 29 Jul 2010 20:39:57 +0530 Shishir Jain shishir.j...@gmail.com wrote: Hi, Am using Solr facets for my data and have a field which has multiple values in its field am using ; to delimit those values. So after doing a solr search it returns me a facet array but that contains ; in the

Re: advice on creating a solr index when data source is from many unrelated db tables

2010-07-30 Thread Gora Mohanty
On Thu, 29 Jul 2010 15:33:42 -0400 S Ahmed sahmed1...@gmail.com wrote: I understand (and its straightforward) when you want to create a index for something simple like Products. But how do you go about creating a Solr index when you have data coming from 10-15 database tables, and the

Re: Indexing data on MSSQL failed: Caused by: org.apache.solr.common.SolrException: Error loading class 'com.micros oft.sqlserver.jdbc.SQLServerDriver'

2010-08-02 Thread Gora Mohanty
On Mon, 2 Aug 2010 02:22:50 -0700 (PDT) PeterKerk vettepa...@hotmail.com wrote: I'm running MSSQL Server 2008 I did this: set CLASSPATH= C:\Program Files\Microsoft SQL Server JDBC Driver 3.0\sqljdbc_3.0\enu\sqljdbc4.jar (I dont know where I can check if this has been executed correctly)

Re: how to query a string using solr URL in the browser

2010-08-09 Thread Gora Mohanty
On Mon, 9 Aug 2010 05:31:36 -0700 (PDT) e8en e...@tokobagus.com wrote: I forgot something, when I enter this: http://172.11.18.120:9000/search/select/?q=text:bracketq.op=ANDstart=0rows=1000 the result will show all ITEM_ID that contain 'bracket' word in both or one of ITEM_DESCR_SHORT

Re: Indexing large files using Solr Cell causes OutOfMemory error

2010-08-12 Thread Gora Mohanty
On Thu, 12 Aug 2010 14:32:19 +0200 Lannig Carina lan...@ssi-schaefer-noell.com wrote: Hi, I'm trying to index a txt-File (~150MB) using Solr Cell/Tika. The curl command aborts due to a java.lang.OutOfMemoryError. [...] AFAIK Tika keeps the whole file in RAM and posts it as one single

Re: Can a Solr Server be both master and slave?

2010-08-16 Thread Gora Mohanty
On Mon, 16 Aug 2010 10:43:38 -0700 Amit Nithian anith...@gmail.com wrote: I am not sure if this is the best approach to this problem but I was curious if a single solr server could be both a master and a slave without causing index corruption? It seems that you could setup multiple

Re: improving search response time

2010-08-18 Thread Gora Mohanty
On Wed, 18 Aug 2010 05:18:34 -0700 (PDT) Muneeb Ali muneeba...@hotmail.com wrote: Hi All, I need some guidance over improving search response time for our catalog search. [...] I would appreciate if anyone with similar background could shed some light on upgrading hardware in our

Re: Duplicate docs when merging indices?

2010-08-21 Thread Gora Mohanty
On Sat, 21 Aug 2010 05:26:59 -0700 (PDT) Andrew Clegg andrew.cl...@gmail.com wrote: [...] If I merge two indices with CoreAdmin, as detailed here... http://wiki.apache.org/solr/MergingSolrIndexes What happens to duplicate documents between the two? i.e. those that have the same unique key.

Re: Is there a SubstringTransformer?

2010-08-24 Thread Gora Mohanty
On Tue, 24 Aug 2010 08:46:52 +0200 Gonzalo Payo Navarro gpa...@gmail.com wrote: Hi everyone! I need to get the first 100 chars of a string-type field, but I am not able to find something like a SubstringTransformer, therefore I am using the RegexTransformer, but I suspect that it eats a

Re: Is there any strss test tool for testing Solr?

2010-08-26 Thread Gora Mohanty
On Wed, 25 Aug 2010 19:58:36 -0700 Amit Nithian anith...@gmail.com wrote: i recommend JMeter. We use that to do load testing on a search server. [...] JMeter is certainly good, but we have also found Apache bench to also be of much use. Maybe it is just us, and what we are familiar with, but

Meeting of Solr users in Delhi/NCR, India?

2010-08-31 Thread Gora Mohanty
Hi, From past postings, I understand that discussions on meetings related to Solr are acceptable on this list. We have been talking about arranging a meeting in Delhi/National Capital region (NCR) of people using Solr, or those interested in search and related technologies. This first

Re: solr

2010-08-31 Thread Gora Mohanty
On Tue, 31 Aug 2010 07:03:08 -0700 ankita shinde ankitashinde...@gmail.com wrote: hello all, I have indexed database using DIH. But I am not able to search the data using each field. Dear Ankita, Do not mean to offend, but did you not post about this earlier, and Peter Karich followed up

Solr-related meeting in Delhi, India: At Dilli Haat: 5pm, Sun., 5th Sep.

2010-09-02 Thread Gora Mohanty
Hi, A Solr-related meeting will take place in Delhi, India, as per the details below. As the FOSS community in Delhi/NCR is quite small, and getting increasingly fragmented, we have tried to combine more than one topic, in the interest of getting more attendees. Event:FOSS meeting

Re: Newbie question: no search results

2010-09-04 Thread Gora Mohanty
On Sat, 4 Sep 2010 01:15:11 -0700 (PDT) BobG b...@bitwise-bncc.nl wrote: Hi, I am trying to set up a new SOLR search engine on a windows platform. It seems like I managed to fill an index with the contents of my SQL server table. When I use the default *.* query I get a nice result:

Re: How will solr behave if data importing is called while another importing operation is still ongoing?

2010-09-15 Thread Gora Mohanty
On Wed, Sep 15, 2010 at 4:21 PM, yklxmas yklx...@gmail.com wrote: [...] I'm using standard data import handler with file data source and xpath processor. so my script will be calling http://host:8983/solr/dataimport?command=full-import I am not sure if you are aware of this, but unless you are

Re: How to make a client in JSP which will take output from Solr Server

2010-09-18 Thread Gora Mohanty
On Sat, Sep 18, 2010 at 6:22 PM, Anurag anurag.it.jo...@gmail.com wrote: Actually i have Crwaled the data using Nutch-1.0 and Indexxed it to Solr -1.3 (using this http://www.lucidimagination.com/blog/2009/03/09/nutch-solr/ tutorial ) Now i want to create a page in JSP that will be a Simple

Re: How can I delete the entire contents of the index?

2010-09-22 Thread Gora Mohanty
On Thu, Sep 23, 2010 at 9:05 AM, Igor Chudov ichu...@gmail.com wrote: Let's say that I added a number of elements to Solr (I use Webservice::Solr as the interface to do so). Then I change my mind and want to delete them all. How can I delete all contents of the database, but leave the

Re: need of projects

2009-12-19 Thread Gora Mohanty
On Fri, 18 Dec 2009 23:04:59 +0530 Naga raja jollyn...@gmail.com wrote: hi all, I am disparately in need some webpages that uses solr at backend and display the results.. Plz can u send some PHP codes tht resembles like Google that uses Solr. Im new to solr. In other words, please will

Re: Contributors - Solr in Action Case Studies

2010-01-17 Thread Gora Mohanty
On Thu, 14 Jan 2010 11:09:41 -0800 (PST) Otis Gospodnetic otis_gospodne...@yahoo.com wrote: [...] If you are using Solr in some clever, interesting, or unusual way and are willing to share this information, please get in touch. 5 to max 10 pages (soft limits) per study is what we are hoping

Re: Does specifying a smaller number of rows in search improve efficiency?

2010-01-18 Thread Gora Mohanty
On Mon, 18 Jan 2010 13:21:27 -0800 Walter Underwood wun...@wunderwood.org wrote: [...] For basic, relevance-sorted search, there are two kinds of work done by Solr: work per query term and work per document. The work per query term depends on the number of query terms. The work per document

Data storage, and textual analysis

2010-01-19 Thread Gora Mohanty
Hi, Another simple query. I have set up a field to hold phonetic equivalents, with the relevant part of schema.xml looking like: analyzer tokenizer class=solr.WhitespaceTokenizerFactory/ filter class=solr.WordDelimiterFilterFactory generateWordParts=1 generateNumberParts=0 catenateWords=1

Re: Data storage, and textual analysis

2010-01-19 Thread Gora Mohanty
On Tue, 19 Jan 2010 12:02:27 -0800 (PST) Otis Gospodnetic otis_gospodne...@yahoo.com wrote: Gora, What you are seeing are the *stored* values, which are the original, unchanged field values. Analysis is applied to text for *indexing* purposes. [...] Ah, of course. Seems obvious now, and I

Re: Need feedback on solr security

2010-02-17 Thread Gora Mohanty
On Wed, 17 Feb 2010 10:13:46 -0400 Fuad Efendi f...@efendi.ca wrote: You could set a firewall that forbid any connection to your Solr's server port to everyone, except the computer that host your application that connect to Solr. So, only your application will be able to connect to Solr.

Re: If you could have one feature in Solr...

2010-02-24 Thread Gora Mohanty
On Wed, 24 Feb 2010 15:49:15 +0100 Markus Jelsma mar...@buyways.nl wrote: Well, i don't have a specific request in mind. However, i can image a growing internet market for thai, chinese and arabic speaking people and the native languages on the african continent. Providing them with stemmers

Re: If you could have one feature in Solr...

2010-02-25 Thread Gora Mohanty
On Thu, 25 Feb 2010 07:37:33 -0500 Robert Muir rcm...@gmail.com wrote: Gora, have you tried the Hindi Analyzer in lucene? if you add it to lucene, the results exceed at least everything from FIRE 2008. [...] Oh! No, sorry, I haven't. So far, I have only looked at search through Solr, and I

Re: If you could have one feature in Solr...

2010-02-25 Thread Gora Mohanty
On Thu, 25 Feb 2010 07:54:06 -0500 Robert Muir rcm...@gmail.com wrote: Gora, I wonder perhaps if there is a documentation issue. e.g. Thai, Arabic, Chinese were mentioned here previously, these are all supported, too. Let me know if you have any ideas! Sorry, are you saying that these

Re: If you could have one feature in Solr...

2010-02-25 Thread Gora Mohanty
On Thu, 25 Feb 2010 13:06:03 -0500 Robert Muir rcm...@gmail.com wrote: Yeah, Thai and Arabic have the stuff in Solr 1.4 For Chinese, if you want to do CJK bigram indexing, this is there too. If you want to do word-based smart indexing, you need to add an additional jar file to your classpath.

Re: Features not present in Solr

2010-03-21 Thread Gora Mohanty
On Mon, 22 Mar 2010 05:12:06 +0530 Srikanth B srikanth...@gmail.com wrote: Thanks but Im looking for answers on the functional and technical front. [...] Yours is a very broad question, and the details of the answers probably depend on the domain that you are trying to use Solr in. Solr is

Re: Query interface

2010-03-22 Thread Gora Mohanty
On Mon, 22 Mar 2010 15:26:41 +0100 Sebastian Funk qbasti.f...@googlemail.com wrote: hey there, i've been using solr for some time now and set everything up the way it's supposed to.. now for the user interface: simply writing a javascript (or something else) website that passes the

Re: Where clause

2011-12-21 Thread Gora Mohanty
On Wed, Dec 21, 2011 at 4:58 PM, ayyappan ayyaba...@gmail.com wrote: In the information search in DB, the query has to be based on customer specific. Is it possible to change “where” clause value in select query based on the user who logged in. It is not clear what you are asking here? Which

Re: a question on jmx solr exposure

2011-12-21 Thread Gora Mohanty
On Wed, Dec 21, 2011 at 3:26 PM, Dmitry Kan dmitry@gmail.com wrote: Hello list, This might be not the right place to ask the jmx specific questions, but I decided to try, as we are polling SOLR statistics through jmx. We currently have two solr cores with different schemas A and B being

Re: Profiling Solr

2011-12-22 Thread Gora Mohanty
On Fri, Dec 23, 2011 at 11:36 AM, Shyam Bhaskaran shyam.bhaska...@synopsys.com wrote: Hi, Can someone suggest me on performing Solr Profiling. Have you looked at JMX: http://wiki.apache.org/solr/SolrJmx ? Regards, Gora

Re: sort issue in Solr

2011-12-25 Thread Gora Mohanty
On Mon, Dec 26, 2011 at 8:59 AM, Robert Yu robert...@morningstar.com wrote: I want Solr return results by relevancy, but it seems it does not make sense. For example, partial match does not return before exact match. Even I enabled term length in schema definition. [...] There are various

Re: Solr - Mutivalue field search on different elements

2011-12-27 Thread Gora Mohanty
On Tue, Dec 27, 2011 at 6:11 PM, meghana meghana.rav...@amultek.com wrote: Hi iorixxx, I have changed my multiValued field to single value filed.. and now my field appears as below - 1s: This is very nice day. 3s: Christmas is about come and christmas

Re: High response time after being idle

2011-12-28 Thread Gora Mohanty
On Wed, Dec 28, 2011 at 8:52 PM, Odey mariofi...@googlemail.com wrote: Hello, I'm running Solr 3.5 on a XAMPP/Tomcat environment. It's working pretty good for just one exception: when Solr remains idle without handling any requests for about 5-10 mins the first request sent again will be

Re: Frequent Indexing of same Documents

2011-12-29 Thread Gora Mohanty
On Fri, Dec 30, 2011 at 12:25 AM, Avni, Itamar itamar.a...@verint.com wrote: [...] This electronic message may contain proprietary and confidential information of Verint Systems Inc., its affiliates and/or subsidiaries. The information is intended to be for the use of the individual(s) or

Re: a question on jmx solr exposure

2011-12-29 Thread Gora Mohanty
On Thu, Dec 29, 2011 at 6:15 PM, Dmitry Kan dmitry@gmail.com wrote: Well, we don't use multicore feature of SOLR, so in our case SOLR instances are just separate web-apps. The web-app loading order probably then affects on which app gets hold of a jmx 'pipe'. We should probably start using

Re: Interpreting solr response time from log

2011-12-31 Thread Gora Mohanty
On Sun, Jan 1, 2012 at 11:57 AM, Jithin jithin1...@gmail.com wrote: [...] which indicates response time is 2 ms. But in solr log its been seen as 01/Jan/2012:06:25:16 +] GET /solr/core0/admin/ping HTTP/1.1 200 *544* Can anyone please explain to me why the logs is showing 544 ms as

Re: Interpreting solr response time from log

2012-01-01 Thread Gora Mohanty
On Sun, Jan 1, 2012 at 8:58 PM, Jithin jithin1...@gmail.com wrote: Thanks Gora for clarifying. So if my understanding is correct then the total response time is not logged in solr logs and I need to rely on the QTime in the response. If your log level is set at least to INFO, as it should be

Re: How to index documents in SOLR running in Window XP envronment

2012-01-04 Thread Gora Mohanty
On Wed, Jan 4, 2012 at 10:57 PM, dsy99 ds...@rediffmail.com wrote: Dear all, I am facing problem to index data to SOLR running in window XP environment. Can any one suggest the method similar to curl used in Unix environment? I am sorry, but the above makes little sense, and gives people no

Re: Indexing Failed.Rolled back all changes Issue

2012-01-07 Thread Gora Mohanty
On Fri, Jan 6, 2012 at 12:28 PM, Rajdeep Alapati rajdeep.alap...@benefitfocus.com wrote: Hi, I am new to this SOLR.I was digging data import request handler for past few days and now i am doing some poc after i download the solr server. [...] The dataimport.properties file should be created

Re: stopwords as privacy measure

2012-01-08 Thread Gora Mohanty
On Mon, Jan 9, 2012 at 5:03 AM, Michael Lissner mliss...@michaeljaylissner.com wrote: I have a unique use case where I have words in my corpus that users shouldn't ever be allowed to search for. My theory is that if I add these to the stopwords list, that should do the trick. Yes, that should

Re: best way to force substitutions in data

2012-01-10 Thread Gora Mohanty
On Tue, Jan 10, 2012 at 4:44 AM, geeky2 gee...@hotmail.com wrote: [...] i have a database with approximately 7Million rows that i am bringing in to solr. for a very small sub-set of these 7Million rows (about 130 rows), i need to substitute an old part number for a new part number.  i know

Re: best way to force substitutions in data

2012-01-10 Thread Gora Mohanty
On Tue, Jan 10, 2012 at 9:04 PM, geeky2 gee...@hotmail.com wrote: thank you both for the information. Gora, when you mentioned: - For keeping both values, use synonyms. what did you mean exactly. [...] Please take a look at

Re: How to debug DIH with MySQL?

2012-01-10 Thread Gora Mohanty
On Wed, Jan 11, 2012 at 12:37 AM, Walter Underwood wun...@wunderwood.org wrote: Thanks! That looks like it fixed the problem. This list continues to be awesome. Is the function of the name attribute actually described in the docs? I could not figure out what it was for. Yes, it is, though

Re: Not able to see the output when search is clicked

2012-01-11 Thread Gora Mohanty
On Wed, Jan 11, 2012 at 4:31 PM, Rajdeep Alapati rajdeep.alap...@benefitfocus.com wrote: [...] 5) Make full import http request for data to get indexed into solr server. Even though i see that all the rows are indexed but not able to find results when search is clicked on the admin page

Re: Not able to see the output when search is clicked

2012-01-11 Thread Gora Mohanty
On Wed, Jan 11, 2012 at 5:57 PM, Rajdeep Alapati rajdeep.alap...@benefitfocus.com wrote: Hi Mohanty, I have entered *:* in the search box and the url it redirected to was http://localhost:8983/solr/select/?q=*%3A*version=2.2start=0rows=10indent=on; OK, this looks fine: I was just wondering

Re: Getting started with indexing a database

2012-01-11 Thread Gora Mohanty
On Tue, Jan 10, 2012 at 7:09 AM, Mike O'Leary tmole...@uw.edu wrote: [...] My data-config.xml file looks like this: dataConfig  dataSource type=JdbcDataSource driver=com.mysql.jdbc.Driver              url=jdbc:mysql://localhost:3306/bioscope user=db_user password=/  document name=bioscope

Re: Mohanty:RE: Not able to see the output when search is clicked

2012-01-11 Thread Gora Mohanty
On Thu, Jan 12, 2012 at 12:49 PM, Rajdeep Alapati rajdeep.alap...@benefitfocus.com wrote: Hi Mohanty, Can you please guess what is happening on my side. Any help would be great [...] People have followed up to you in your original thread. Could you please respond there, and provide the

Re: ampersands in index or query

2012-01-19 Thread Gora Mohanty
On Thu, Jan 19, 2012 at 7:48 PM, Nicholas Fellows n...@djdownload.com wrote: I have some data in solr where the text string could potentially be Vic Bobs greatest hits how can i ensure that when a user query is made for Vic and Bobs greatest hits , a match is made? this also needs to

Re: How to accelerate your Solr-Lucene appication by 4x

2012-01-19 Thread Gora Mohanty
On Thu, Jan 19, 2012 at 9:32 PM, Steven A Rowe sar...@syr.edu wrote: I want to retract my objection to commercial messages.  I think Ted's position is more reasonable: on-topic commercial messages that are responsive to (and maybe even anticipatory of) users' needs will likely be welcomed by

Re: How to import data from xml files to solr

2012-01-19 Thread Gora Mohanty
On Thu, Jan 19, 2012 at 5:56 PM, solr lakshmi2...@gmail.com wrote: How to import data from xml files to solr. is this is the right command    java -jar post.jar sample.xml [...] This should work, but please take a look at the format of the sample XML files: Solr expects a specific format for

Re: How to import data from xml files to solr

2012-01-19 Thread Gora Mohanty
On Fri, Jan 20, 2012 at 11:00 AM, solr lakshmi2...@gmail.com wrote: Is indexing xml files and import data from xml is same or different in solr concept. They end up doing the same thing, which is getting the data into Solr. There are various ways of doing this, as Erick has pointed out, and

Re: Phonetic search for portuguese

2012-01-22 Thread Gora Mohanty
On Sun, Jan 22, 2012 at 5:47 PM, Anderson vasconcelos anderson.v...@gmail.com wrote: Anyone could help? Thanks 2012/1/20, Anderson vasconcelos anderson.v...@gmail.com: Hi The phonetic filters (DoubleMetaphone, Metaphone, Soundex, RefinedSoundex, Caverphone) is only for english language or

Re: Phonetic search for portuguese

2012-01-22 Thread Gora Mohanty
On Mon, Jan 23, 2012 at 5:58 AM, Anderson vasconcelos anderson.v...@gmail.com wrote: Hi Gora, thanks for the reply. I'm interesting in see how you did this solution. But , my time is not to long and i need to create some solution for my client early. If anyone knows some other simple and fast

Re: Phonetic search for portuguese

2012-01-22 Thread Gora Mohanty
On Mon, Jan 23, 2012 at 9:21 AM, Anderson vasconcelos anderson.v...@gmail.com wrote: Thanks a lot Gora. I need to delivery the first release for my client on 25 january. With your explanation, i can negociate better the date to delivery of this feature for next month, because i have other

Re: WARNING: Unable to read: dataimport.properties DHI issue

2012-01-26 Thread Gora Mohanty
On Thu, Jan 26, 2012 at 3:47 AM, Egonsith egons...@gmail.com wrote: I have tried to search for my specific problem but have not found solution. I have also read the wiki on the DHI and seem to have everything set up right but my Query still fails. Thank you for your help [...] This has nothing

Re: Solr on remote server

2012-01-28 Thread Gora Mohanty
On Sat, Jan 28, 2012 at 10:37 PM, remi tassing tassingr...@gmail.com wrote: Hi, The example works well on the local machine, but how to make that work on a remote server? Do you have to install jetty or tomcat ...? Have you taken a look at the Solr Wiki, especially

Re: solr utf8 for words like compagnieën?

2012-01-31 Thread Gora Mohanty
On Tue, Jan 31, 2012 at 1:50 PM, RT rwatollen...@gmail.com wrote: Hi, I am having a bit of trouble getting words with characters such as: ė, į, ų etc into SOLR. Programming in C++ (Using Qt's QString) I am wondering what conversion to apply before compiling words with such letters into the

Re: string encoding

2012-01-31 Thread Gora Mohanty
On Tue, Jan 31, 2012 at 11:51 PM, RT rwatollen...@gmail.com wrote: Hi, there is a post going on encoding international characters. In the mean time based on this section: http://wiki.apache.org/solr/FAQ where it states that there may be a problem with the Container Servelet, I am using

Re: On-Demanp update if using DHI

2012-01-31 Thread Gora Mohanty
On Wed, Feb 1, 2012 at 4:13 AM, Ramo Karahasan ramo.karaha...@googlemail.com wrote: This would mean, that i call somewhere in my application the url that is described in: http://wiki.apache.org/solr/DataImportHandlerDeltaQueryViaFullImport from my application? [...] Yes, if by application

Re: indexing with DIH (and with problems)

2012-02-10 Thread Gora Mohanty
On 10 February 2012 04:15, alessio crisantemi alessio.crisant...@gmail.com wrote: hi all, I would index on solr my pdf files wich includeds on my directory c:\myfile\ so, I add on my solr/conf directory the file data-config.xml like the following: [...] but this is the result: [...] Your

Re: Need help with graphing function (MATH)

2012-02-14 Thread Gora Mohanty
On 14 February 2012 23:35, Mark static.void@gmail.com wrote: Thanks I'll have a look at this. I should have mentioned that the actual values on the graph aren't important rather I was showing an example of how the function should behave. [...] either y = (100/(e^((x -50)/75)^2)) + 50

Re: problem to indexing pdf directory

2012-02-16 Thread Gora Mohanty
On 16 February 2012 14:33, alessio crisantemi alessio.crisant...@gmail.com wrote: Hi all, I have a problem to configure a pdf indexing from a directory in my solr wit DIH: with this data-config dataConfig  dataSource type=BinFileDataSource /  document  entity    name=tika-test    

Re: problem to indexing pdf directory

2012-02-16 Thread Gora Mohanty
On 16 February 2012 21:37, alessio crisantemi alessio.crisant...@gmail.com wrote: here the log: org.apache.solr.handler.dataimport.DataImporter doFullImport Grave: Full Import failed org.apache.solr.handler.dataimport.DataImportHandlerException: 'baseDir' is a required attribute Processing

Re: Securing solr

2012-03-04 Thread Gora Mohanty
On 4 March 2012 19:51, Ramo Karahasan ramo.karaha...@googlemail.com wrote: [...] i'm somehow unable to secure my  solr instance that runs on a dedicated server. I have a webapplication that needs this solr instance, but the webserver is running on another dedicated server. Is it possible to

Re: schema design help

2012-03-06 Thread Gora Mohanty
On 6 March 2012 18:01, Abhishek tiwari abhishek.tiwari@gmail.com wrote: i am new in solr  want help in shema design .  i have multiple entities like Event , Establishments and Movies ..each have different types of relations.. should i make diffrent core for each entities ? It depends on

Re: '500' : Internal server error

2012-03-07 Thread Gora Mohanty
On 7 March 2012 17:59, aditya jatnika martin ajmartin0...@gmail.com wrote: Dear Developer, I have a problem with solr, every time I add document the result message always '500' Status : Internal server error, [...] Have you looked in the Solr logs for further details on the exception?

Re: schema design help

2012-03-07 Thread Gora Mohanty
On 8 March 2012 10:40, Abhishek tiwari abhishek.tiwari@gmail.com wrote:  my page have layout in following manner  *All tab* :which will contain all entities (Establishment/Event/Movie) Establishment: contain Establishment search results Event tab : will contain Event search results Movie

Re: schema design help

2012-03-07 Thread Gora Mohanty
On 8 March 2012 11:05, Abhishek tiwari abhishek.tiwari@gmail.com wrote: Gora, we are not having the related search ... like u have mentioned ... * will a search on an Establishment also require results from Movie, such as what movies are showing at the establishment* Establishment

Re: indexing cpu utilization

2012-03-08 Thread Gora Mohanty
On 8 March 2012 15:39, gabriel shen xshco...@gmail.com wrote: Hi, I noticed that, sequential indexing on 1 solr core is only using 40% of our 8 virtual core CPU power. Why isn't it use 100% of the power? Is there a way to increase CPU utilization rate? [...] This is an open-ended question

Re: indexing cpu utilization

2012-03-08 Thread Gora Mohanty
On 8 March 2012 16:18, gabriel shen xshco...@gmail.com wrote: Our indexing process is to adding a bundle of solr documents(for example 5000) to solr each time, and we observed that before commiting(which might be io bounded) it uses less than half the CPU capacity constantly, which sounds

Re: Reporting tools

2012-03-09 Thread Gora Mohanty
On 9 March 2012 09:05, Donald Organ dor...@donaldorgan.com wrote: Are there any reporting tools out there?  So I can analyzer search term frequency, filter frequency,  etc? Do not have direct experience of any Solr reporting tool, but please see the Solr StatsComponent:

Re: List of recommendation engines with solr

2012-03-12 Thread Gora Mohanty
On 12 March 2012 16:30, Rohan rohan_kumb...@infosys.com wrote: Hi All, I would require list of recs engine which can be integrated with solr and also suggest best one out of this. any comments would be appriciated!! What exactly do you mean by that? Why is integration with Solr a

Re: schema design help

2012-03-13 Thread Gora Mohanty
On 13 March 2012 18:19, Abhishek tiwari abhishek.tiwari@gmail.com wrote: [...] My one more concern, Though Establishments, Events, Movies are not related to each other, I have to make 3 search queries to their independent cores and club the data to show, will that effect my relevancy?

Re: suggestions on automated testing for solr output

2012-03-16 Thread Gora Mohanty
On 17/03/2012, geeky2 gee...@hotmail.com wrote: hello all, i know this is never a fun topic for people, but our SDLC mandates that we have unit test cases that attempt to validate the output from specific solr queries. i have some ideas on how to do this, but would really appreciate

Re: disadvantage one field in a catchall field

2012-03-29 Thread Gora Mohanty
On 29 March 2012 13:35, elisabeth benoit elisaelisael...@gmail.com wrote: Hi all, I'm using solr 3.4 with a catchall field and an edismaw request handler. I'd like to score higher answers matching with words not contained in one of the fields copied into my catchall field. So my

Re: Must set up Solr on my web site's server, how can I fully integrate it? (noob)

2012-04-03 Thread Gora Mohanty
On 3 April 2012 21:37, mace10 waisbre...@gmail.com wrote: [...] I guess my complete question is how can I migrate the Solr package from Jetty to the server on which my site currently resides and furthermore, how can I index all of my text-containing files so they can be queried by my

Re: Wrong categorization with DIH

2012-04-17 Thread Gora Mohanty
On 17 April 2012 14:47, Ramo Karahasan ramo.karaha...@googlemail.com wrote: Hi, i currently face the followin issue: Testing the following sql statement which is also used in SOLR (DIH) leads to a wrong categorization in solr: select p.title as title, p.id, p.category_id, p.pic_thumb,

Re: HTML Indexing error

2012-04-18 Thread Gora Mohanty
On 18 April 2012 00:41, Chambeda chamb...@gmail.com wrote: Hi All, I am trying to parse some text that contains embedded HTML elements and am getting the following error: [...] According to the documentation the br should be removed correctly. Anything I am missing? How are you indexing

Re: Multiple document structure

2012-04-18 Thread Gora Mohanty
On 18 April 2012 10:05, abhijit bashetti bashettiabhi...@rediffmail.com wrote: Hi , Is it possible to have 2 document structures in solr? [...] Do not think so, but why do you need it? Use two separate indices, either in a multi-core setup, or in separate Solr instances. Regards, Gora

Re: Question concerning date fields

2012-04-20 Thread Gora Mohanty
On 21 April 2012 09:12, Bill Bell billnb...@gmail.com wrote: We are loading a long (number of seconds since 1970?) value into Solr using java and Solrj. What is the best way to convert this into the right Solr date fields? [...] There are various options, depending on the source of your

Re: Solr Indexing error in this function

2012-04-22 Thread Gora Mohanty
On 22 April 2012 15:33, vasuj vasu.j...@live.in wrote: Log is : Apr 22, 2012 2:55:17 AM org.apache.solr.update.processor.LogUpdateProcessor finish INFO: {add=[(null)]} 0 17 Apr 22, 2012 2:55:17 AM org.apache.solr.common.SolrException log SEVERE: org.apache.solr.common.SolrException:

Re: JDBC import yields no data

2012-04-24 Thread Gora Mohanty
On 24 April 2012 22:22, Hasan Diwan hasan.di...@gmail.com wrote: [...] The dataimport url I'm using is http://192.168.1.6:8995/solr/db/dataimport?command=full-import And, does it show you any output? As James mentions, it should say busy while the data import is running, and indexing completed

Re:

2012-04-27 Thread Gora Mohanty
On 27 April 2012 23:52, sol myr solmy...@yahoo.com wrote: . http://partyfuncreation.com/haveagooday765.html?xlinkFriend=1obiy Would someone who has the privileges please ban this idiot from the mailing list already? Regards, Gora

Re: dataimport handler (DIH) - notify when it has finished?

2012-05-01 Thread Gora Mohanty
On 1 May 2012 23:12, geeky2 gee...@hotmail.com wrote: Hello all, is there a notification / trigger / callback mechanism people use that allows them to know when a dataimport process has finished? we will be doing daily delta-imports and i need some way for an operations group to know when

Re: Indexing Searching MySQL table with Hindi and English data

2012-05-18 Thread Gora Mohanty
On 18 May 2012 18:43, KP Sanjailal kpsanjai...@gmail.com wrote: Hi, Even after setting the URIEncoding=UTF-8 in the tomcat /conf/server.xml, indexing and search of Hindi characters doesn't work.  The output furnished below: [...] How are you indexing your data into Solr? Where does your

Re: Sending http post to solr indexing

2012-05-20 Thread Gora Mohanty
On 21 May 2012 06:05, Mansour Al Akeel mansour.alak...@gmail.com wrote: Sorry, forgot to include the url and the error message:    private static String url = http://localhost:8080/solr/update;; As the error message indicates, the normal request handler is expecting XML. For indexing JSON,

Re: Indexing files using multi-cores - could not fix after many retries

2012-05-21 Thread Gora Mohanty
On 22 May 2012 05:12, sudarshan chakravarthy.sudars...@gmail.com wrote: [...] requestHandler name=/update/csv                  class=solr.CSVRequestHandler                  startup=lazy / [...] Response: html head meta http-equiv=Content-Type content=text/html; charset=ISO-8859-1/

  1   2   3   4   5   6   7   8   >