Export request handler via SolrJ

2016-02-01 Thread deniz
I have been trying to export the whole resultset via SolrJ but till now everything (Including the tricks here: http://stackoverflow.com/questions/33540577/how-can-use-the-export-request-handler-via-solrj) has failed... On curl, it is working totally fine to query with server:port/solr/core/export b

Solr 6 / Solrj RuntimeException: First tuple is not a metadata tuple

2016-05-04 Thread deniz
select params={q=(tits:"1")&distrib=false&fl=id,text,score&sort=score+desc&rows=5&wt=json&version=2.2} hits=5624 status=0 QTime=1 The error is happening because of some missing handlers on errors on the code or because of some strict checks on IDE(Ideaj)? Anyone h

Re: Solr 6 / Solrj RuntimeException: First tuple is not a metadata tuple

2016-05-05 Thread deniz
> The logs you shared don't seem to be the full logs. There will be a > related > exception on the Solr server side. The exception on the Solr server side > will explain the cause of the problem. The logs are the full logs which I got on the console when I run the code, and there is no exception

Re: Solr 6 / Solrj RuntimeException: First tuple is not a metadata tuple

2016-05-05 Thread deniz
could it be something with includeMetaData=true param? I have tried to set it to false but then the logs look like: webapp=/solr path=/sql params={includeMetadata=true&includeMetadata=false&numWorkers=1&wt=json&version=2.2&stmt=select+id,+text+from+test+where+tits%3D1+limit+5&aggregationMode=map_r

Re: Solr 6 / Solrj RuntimeException: First tuple is not a metadata tuple

2016-05-05 Thread deniz
Also found // JDBC requires metadata like field names from the SQLHandler. Force this property to be true. props.setProperty("includeMetadata", "true"); in org.apache.solr.client.solrj.io.sql.DriverImpl are there any other ways to get response on solrj without metaData to avoid the er

Re: Solr 6 / Solrj RuntimeException: First tuple is not a metadata tuple

2016-05-05 Thread deniz
Joel Bernstein wrote >> Can you post your classpath? classpath as follows: solr-solrj-6.0.0 commons-io-2.4 httpclient-4.4.1 httpcore-4.4.1 httpmime-4.4.1 zookeeper-3.4.6 stax2-api-3.1.4 woodstox-core-asl-4.4.1 noggit-0.6 jcl-over-slf4j-1.7.7 slf4j-api-1.7.7 - Zeki ama calismiyor... Calis

Re: Solr 6 / Solrj RuntimeException: First tuple is not a metadata tuple

2016-05-06 Thread deniz
I went on digging and debug the code and here is what I got on the point it breaks: so basically the tuple doesnt have anything for "isMetadata" hence getting null on that point... is this a bug or there is missing configs on

Re: Solr 6 / Solrj RuntimeException: First tuple is not a metadata tuple

2016-05-08 Thread deniz
Joel Bernstein wrote > It appears that the /sql handler is not sending the metadata Tuple. > According to the log the parameter includeMetadata=true is being sent. > This > should trigger the sending of the metadata Tuple. > > Is it possible that you are using a pre 6.0 release version of Solr fro

Re: Solr 6 / Solrj RuntimeException: First tuple is not a metadata tuple

2016-05-09 Thread deniz
was able to get "gettingstarted" example running with sql, on my local only with a single zk... still not sure why the core/collection i have tried, didnt work till now... thanks a lot for pointing out for the version related issues, it made me change my focus from client to server side :) -

Core mismatch in org.apache.solr.update.StreamingSolrClients Errors for ConcurrentUpdateSolrClient

2015-08-10 Thread deniz
I have a simple 2-node(5.1) cloud env with 6 different cores. One of the cores(CoreB) has some update issue which I am aware of, but the error logs on solr, I am seeing these below: ERROR - 2015-08-11 05:04:34.592; [*CoreA shard1 core_node2 CoreA*] org.apache.solr.update.StreamingSolrClients$1; er

Re: Core mismatch in org.apache.solr.update.StreamingSolrClients Errors for ConcurrentUpdateSolrClient

2015-08-10 Thread deniz
mp;version=2 So this is also normal? Anshum Gupta wrote > Hi Deniz, > > Seems like the update that's being forwarded from a non-leader (original > node that received the request) is failing. This could be due to multiple > reasons, including issue with your schema vs document

Re: Core mismatch in org.apache.solr.update.StreamingSolrClients Errors for ConcurrentUpdateSolrClient

2015-08-10 Thread deniz
I have created by simply creating configs and then using upconfig to upload to zookeeper, then adding it on admin interface of solr. I have only changed the ips of server and server1 and changed the core/collection names to CoreA and CoreB, in the logs CoreA and CoreB are different collections wit

Re: Core mismatch in org.apache.solr.update.StreamingSolrClients Errors for ConcurrentUpdateSolrClient

2015-08-10 Thread deniz
okay, to make everything clear, here are the steps: - Creating configs etc and then running: ./zkcli.sh -cmd upconfig -n CoreA -d /path/to/core/configs/CoreA/conf/ -z zk1:2181,zk2:2182,zk3:2183 - Then going to http://someserver:8983/solr/#/~cores - Clicking Add Core:

Re: Core mismatch in org.apache.solr.update.StreamingSolrClients Errors for ConcurrentUpdateSolrClient

2015-08-11 Thread deniz
thanks for the details Anshum :) I got one more question, could this kind of error logging might be also triggered by the amount of incoming requests? I can see these errors only on prod env, but testing env is totally fine, although the creation process is exactly the same - Zeki ama calis

Re: stats component performance

2015-06-09 Thread deniz
would be really nice if there are any... i am also looking for some detailed explanation about the stats on solr, couldnt find anything yet though... - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/stats-component-performance-tp4

[Solr 5.1.0] - Ignoring Whitespaces as delimiters

2016-10-12 Thread deniz
Hello, Are there any built-in tokenizers which will do sth like StandardTokenizer, but will not tokenize on whitespace? e.g field:abc cde-rfg will be tokenized as "abc cde" and "rfg", not "abc", "cde", "rfg" I have checked the existing tokenizers/analyzers and it seems like there is no other w

Re: [Solr 5.1.0] - Ignoring Whitespaces as delimiters

2016-10-16 Thread deniz
thanks a lot... prepared one regex, which seems like doing what i am looking for :) - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-5-1-0-Ignoring-Whitespaces-as-delimiters-tp4300939p4301344.html Sent from the Solr - User ma

Spatial Search based on the amount of docs, not the distance

2017-06-21 Thread deniz
I am trying to figure out if it is possible to have the spatial search limit itself based on the amount of docs rather than the distance... What I want is, sth like "closest XXX documents from point(x,y)" in dependent from "d" value in the query... would this need a custom plugin, or there are a

Re: Spatial Search based on the amount of docs, not the distance

2017-06-21 Thread deniz
it is for sure possible to use d value for limiting the distance, however, it might not be very efficient, as some of the coords may not have any docs around for a large value of d... so it is hard to determine a default value for d. though it sounds like havinga default d and gradual increments

Interval Facets with JSON

2017-02-07 Thread deniz
Hello, I am trying to run JSON facets with on interval query as follows: "json.facet":{"height_facet":{"interval":{"field":"height","set":["[160,180]","[180,190]"]}}} And related field is But I keep seeing errors like: o.a.s.h.RequestHandlerBase org.apache.solr.common.SolrException: Un

Re: Interval Facets with JSON

2017-02-07 Thread deniz
I have taken a look at the class solr/core/src/test/org/apache/solr/search/facet/TestJsonFacets.java but it seems like there are no tests for interval facets on json... - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/Interval-

Re: Interval Facets with JSON

2017-02-08 Thread deniz
Tom Evans-2 wrote > I don't think there is such a thing as an interval JSON facet. > Whereabouts in the documentation are you seeing an "interval" as JSON > facet type? > > > You want a range facet surely? > > One thing with range facets is that the gap is fixed size. You can > actually do your

Solr 4.7.2 Core Creation Issue on SC - ZK

2014-05-19 Thread deniz
Hello, I am using SC with version 4.7.2. There is already one collection/core running on the cloud, and I am trying to add a new core according to https://wiki.apache.org/solr/CoreAdmin#CREATE When I add the core, I can see that it is added to collections in Cloud/file menu, but the config part

Re: how to avoid recover? how to ensure a recover success?

2013-10-28 Thread deniz
I have had a similar problem before but the patch which was included with the version 4.1 fixed that... I couldnt reproduce the problem with the patch... anyone is able to reproduce this exception? - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.47

Searching with special chars

2014-02-26 Thread deniz
Hello, We are facing some kinda weird problem. So here is the scenario: We have a frontend and a middle-ware which is dealing with user input search queries before posting to Solr. So when a user enters city:Frankenthal_(Pfalz) and then searches, there is no result although there are fields on s

Re: Searching with special chars

2014-03-03 Thread deniz
So as there was no quick work around to this issue, we simply change the http method from get to post, to avoid further problems which could be triggered by user input too. though this violates the restful standards... at least we have something running properly - Zeki ama calismiyor... Cali

Retrieving and updating large set of documents on Solr 4.7.2

2014-08-17 Thread deniz
0 down vote favorite I am trying to implement an activity feed for a website, and planning to use Solr for this case. As it does not have any follower/following relation, Solr is fitting for the requirements. There is one point which makes me concerned about performance. So as user A, I

Grouping based on multiple filters/criterias

2014-08-18 Thread deniz
is it possible to have multiple filters/criterias on grouping? I am trying to do something like those, and I am assuming that from the statuses of the tickets, it doesnt seem possible? https://issues.apache.org/jira/browse/SOLR-2553 https://issues.apache.org/jira/browse/SOLR-2526 https://issues.ap

Re: Grouping based on multiple filters/criterias

2014-08-21 Thread deniz
umeshprasad wrote > Grouping supports group by queries. > > https://cwiki.apache.org/confluence/display/solr/Result+Grouping > > However you will need to form the group queries before hand. > > Thanks & Regards > Umesh Prasad > Search > Lead@ > > in.linkedin.com/pub/umesh-prasad/6/5bb/580/

Re: Grouping based on multiple filters/criterias

2014-08-24 Thread deniz
umeshprasad wrote > Solr does support date mathematics in filters / queries . So your > timestamps intervals can be dynamic .. how would it be done for this case then? retrieving bunch of documents sorted by timestamp, then depending on some interval like 1 hour, those should be grouped all togeth

Re: zk disconnects and failure to retry?

2015-01-22 Thread deniz
bumping an old entry... but are there any improvements on this issue? - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/zk-disconnects-and-failure-to-retry-tp4065877p4181370.html Sent from the Solr - User mailing list archive at Na

Using tmpfs for Solr index

2015-01-22 Thread deniz
Would it boost any performance in case the index has been switched from RAMDirectoryFactory to use tmpfs? Or it would simply do the same thing like MMap? And in case it would be better to use tmpfs rather than RAMDirectory or MMap, which directory factory would be the most feasible one for this p

DIH and tinyint(1) Field

2013-07-21 Thread deniz
Hello, I have exactly the same problem as here http://lucene.472066.n3.nabble.com/how-to-avoid-DataImportHandler-from-interpreting-quot-tinyint-1-unsigned-quot-value-as-quot-Boolean--td4035241.html#a4036967 however for the solution there, it is ruining my date type fields... are there any oth

Re: DIH and tinyint(1) Field

2013-07-22 Thread deniz
Shalin Shekhar Mangar wrote > Your database's JDBC driver is interpreting the tinyint(1) as a boolean. > > Solr 4.4 fixes the problem affected date fields with convertType=true. It > should be released by the end of this week. > > > On Mon, Jul 22, 2013 at 12:18 PM

Full Import and Most up to date data

2013-08-01 Thread deniz
Hello, I have some questions about full importing. So lets say that i have some kinda large data to index and it takes around 2 hours to finish the full import. When I start full import at 1pm, what happens if some data in db is updated at 1:15 or 2pm while full import is still going on? will t

Re: Unexpected character '<' (code 60) expected '='

2013-08-01 Thread deniz
Vineet Mishra wrote > I am using Solr 3.5 with the posting XML file size of just 1Mb. > > > On Wed, Jul 31, 2013 at 8:19 PM, Shawn Heisey < > solr@ > > wrote: > >> On 7/31/2013 7:16 AM, Vineet Mishra wrote: >> > I checked the File. . .nothing is there. I mean the formatting is >> correct, >> >

Field with default value and stored=false, will be reset back to the default value in case of updating other fields

2013-10-09 Thread deniz
hi all, I have encountered some problems and post it on stackoverflow here: http://stackoverflow.com/questions/19285251/solr-field-with-default-value-resets-itself-if-it-is-stored-false as you can see from the response, does it make sense to open a bug ticket for this? because, although i can w

Re: Field with default value and stored=false, will be reset back to the default value in case of updating other fields

2013-10-09 Thread deniz
Billnbell wrote > You have to update the whole record including all fields... so what is the point of having atomic updates if i need to update everything? - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/Field-with-default-valu

Field exist in schema.xml but returns

2013-04-08 Thread deniz
hi all, I am using solrcloud and running some simple test queries... though i am getting a undefined field error for a field that I have in my schema.xml so the query is myField:* and response is: 400 3 xml myField:* undefined field myField 400

Re: Field exist in schema.xml but returns

2013-04-09 Thread deniz
Raymond Wiker wrote > You have misspelt the tag name in the field definition... you have "fiald" > instead of "field". thank you Raymond, it was really hard to find it out in a massive schema file - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.4720

Solr and Encoding Issue?

2011-09-02 Thread deniz
I am trying to implement multi accented search on solr... basically i am using asciifolderfilter to provide this feature... but i have a problem... http://localhost:8983/solr/select/?q=*francois*&version=2.2&start=0&rows=10&indent=on http://localhost:8983/solr/select/?q=*francois**&version=2.2&sta

Re: Solr and Encoding Issue?

2011-09-03 Thread deniz
thank you for your advices guys... i have tried analysis, without wildcards by the way and it ws working smoothly ( cant check it now coz its sunday :) ) so in this case it is not possible to support wildcards with accented letters? I have tried many other words too and when i use accented letter

Field with No data

2011-09-05 Thread deniz
hi all, I have a problem with solr fields and feeling totally confused about that... the situation is this: I have two different environments for a web site, one is for testing issues and the other is the real site which is on live... but both of them are identical - except there are using separa

Re: Field with No data

2011-09-05 Thread deniz
http://lucene.472066.n3.nabble.com/file/n3312511/Screen_shot_2011-09-06_at_11.56.47.png http://lucene.472066.n3.nabble.com/file/n3312511/Screen_shot_2011-09-06_at_11.57.04.png screenshots to make it clear how it looksl like on analysis - Zeki ama calismiyor... Calissa yapar... -- View

Re: Field with No data

2011-09-06 Thread deniz
well... the problem was... a silly typo in config... case is over guys :P - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/Field-with-No-data-tp3312488p3312785.html Sent from the Solr - User mailing list archive at Nabble.com.

synonyms.txt: different results on admin and on site..

2011-09-07 Thread deniz
hi all... i have checked the list about the issue in the title, but couldnt find any related info... so my problem is: i change sysnonyms.txt and then reload the core without restarting the server. new synonyms works smoothly if i use admin interface of solr, however when i use the site which is

Re: synonyms.txt: different results on admin and on site..

2011-09-07 Thread deniz
could it be related with analysis issue about synonyms once again? - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/synonyms-txt-different-results-on-admin-and-on-site-tp3318338p3318464.html Sent from the Solr - User mailing list

Re: synonyms.txt: different results on admin and on site..

2011-09-07 Thread deniz
synonyms.txt file which contains deniz,denis,denise After posting here, I have checked some stuff that I have faced before, while trying to add accented letters to the system... so it seems like same or similar stuff... so... As i want to support partial matches, the search string is modified on

Re: synonyms.txt: different results on admin and on site..

2011-09-08 Thread deniz
you are right about wildcards and analysis stuff... so any way of putting wildcards in for analysis? - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/synonyms-txt-different-results-on-admin-and-on-site-tp3318338p3322026.html Sent

Re: hi. allowLeadingWildcard is it possible or not yet?

2011-09-15 Thread deniz
i wonder the same thing... so wanna "re-animate" the topic is it possible? - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/hi-allowLeadingWildcard-is-it-possible-or-not-yet-tp495457p3340838.html Sent from the Solr - User mailing

searching documents partially

2011-10-09 Thread deniz
hi all i would like to let users make partial searches on my documents. let me explain i have a site in which i have some documents to store information like title, category, number of pages, contents and so on. i want to make some part of my documents invisible to users. lets say i have 100 doc

RE: searching documents partially

2011-10-10 Thread deniz
Brandon Ramirez wrote: > > I may not be understanding the question correctly, but I think the dismax > parser would solve this since you can specify the fields that you want to > search against. So you just need a pre-login field list and a post-login > field list in your application logic. Or

upgrading 1.4 to 3.x

2011-10-12 Thread deniz
hi all is there any kind of tutorials or sample upgrades that i can follow and learn how to do so? i have been trying to upgrade since morning checking on web and so on but couldnt find anything efficient... and also my other question; should i use nightly versions or building from the source is

Re: upgrading 1.4 to 3.x

2011-10-12 Thread deniz
I have checked the links both pravesh and otis sent, however still i am stucked and confused... i just put the 3.1 war file in webapps of tomcat and change the home directory to a solr directory that i has indexes and cores and other settings from 1.4, just to see what happens... so at the end w

Re: upgrading 1.4 to 3.x

2011-10-13 Thread deniz
Hi Otis, I know it is coming from Tomcat and was curious if anyone had the same problem before... and as for details it is the only thing i got in the logs as an error... i can put more details if you tell me what exactly you want to see... i am confused and dunno what else i can put other than er

Re: upgrading 1.4 to 3.x

2011-10-18 Thread deniz
well i made a little diggin on web... so the problem is also described here too https://issues.apache.org/bugzilla/show_bug.cgi?id=40719 basically there was no details in the tomcat logs (maybe in some other logs but well i dont know) i came up with the same problem while implementing something

Error while upgrading from 1.4 to 3.1

2011-11-08 Thread deniz
Hi all, I am trying to upgrade solr... I have tried to find resources or tutorials but couldnt find any - yes there is changes.txt in solr but it is a list, not a tutorial... so here is the error that i get: SEVERE: java.lang.NoClassDefFoundError: org/apache/lucene/search/FieldComparatorSource

Re: Error while upgrading from 1.4 to 3.1

2011-11-08 Thread deniz
i have tried putting lucene core 3.1 to tomcat common/lib folder... and the error message is changed into this: SEVERE: java.lang.RuntimeException: org.apache.lucene.index.CorruptIndexException: Unknown format version: -9 at org.apache.solr.core.SolrCore.getSearcher(SolrCore.java:960)

Re: Error while upgrading from 1.4 to 3.1

2011-11-09 Thread deniz
well fixed for now... just ignore this thread - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/Error-while-upgrading-from-1-4-to-3-1-tp3492373p3492887.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: SolrCloud Error after leader restarts

2012-11-19 Thread deniz
i know facts about ramdirectory actually.. just running some perf tests on our dev env right now.. so in case i use ramdir with 5x cloud, it will still not do the recovery? i mean it will not get the data from the leader and fill its ramdir again? - Zeki ama calismiyor... Calissa yapar... -

Re: SolrCloud Error after leader restarts

2012-11-19 Thread deniz
Mark Miller-3 wrote > On Nov 19, 2012, at 9:11 PM, deniz < > denizdurmus87@ > > wrote: > >> so in case i use ramdir with 5x cloud, it will still not do the recovery? >> i >> mean it will not get the data from the leader and fill its ramdir again? > >

Weird Behaviour on Solr 5x (SolrCloud)

2012-11-19 Thread deniz
Hi all, after Mark Miller made it clear to me that 5x is supporting cloud with ramdir, I have started playing with it and it seemed working smoothly, except a weird behaviour.. here is the story of it: Basically, I have pulled the code and built solr 5x, and the replace the war file in webapps d

SolrCloud(5x) - Detects all of the Solr insrances on a machine

2012-11-20 Thread deniz
Hello, I am running a Solr instance (4.0), without invoking anything about zookeeper and solrcloud, as a standalone server on a machine. then for testing Solr 5x trunk, i have set 2 Solr (5x) instances, running with -DzkHost= someaddress:port and when i check zookeeper logs, i can see that the s

Re: SolrCloud(5x) - Detects all of the Solr insrances on a machine

2012-11-20 Thread deniz
well here are more details about my starting commands This is the standalone SolrServer: (port 8983) java -server -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:+UseCompressedStrings -Dcom.sun.management.jmxremote -d64 -Xmx4096m -Dcom.sun.management.jmxremote.port= -Dcom.sun.manage

Re: SolrCloud(5x) - Detects all of the Solr insrances on a machine

2012-11-20 Thread deniz
so another test result: i have set up a similar environment on another virtual machine which is running on the same hard machine with my previous example... so basically my standalone solr is running on virtual1:8983 and i set up 3 solr instances which are on virtual2:8995,8996,8997... those vir

Re: SolrCloud(5x) - Detects all of the Solr insrances on a machine

2012-11-20 Thread deniz
Mark Miller-3 wrote > How are you specifying the port? I don't see jetty.port in there. That > is critical - it sets the hostPort in solr.xml. > - Mark setting it with -Djetty.port=blabla or directly in etc/jetty.xml - Zeki ama calismiyor... Calissa yapar... -- View this message in context:

Re: SolrCloud(5x) - Detects all of the Solr insrances on a machine

2012-11-20 Thread deniz
Mark Miller-3 wrote > It must be passes with -D as a system prop with the default setup. > That feeds hostPort in solr.xml. If you use etc/jetty.xml, but sure to > still pass it on the cmd line or also put the port in solr.xml for > hostPort. > - Mark basically I should add the port info to the so

Re: Weird Behaviour on Solr 5x (SolrCloud)

2012-11-20 Thread deniz
is this because of zookeeper's load balancer or something like that? because the results are returning totally randomly... - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/Weird-Behaviour-on-Solr-5x-SolrCloud-tp4021219p4021500.ht

Re: Weird Behaviour on Solr 5x (SolrCloud)

2012-11-20 Thread deniz
well... i find a way to avoid this... i dont know if it is the correct way or i am simply bypassing the problem instead of fixing it.. when i delete the data/ folders contents before restarting, it can get the index information from cloud without any problem... so it is the way how solrcloud work

Re: Weird Behaviour on Solr 5x (SolrCloud)

2012-11-21 Thread deniz
Mark Miller-3 wrote > I'm not sure - I guess I'll have to look into it - could you file a > JIRA issue with these details? sure... but before that could it be because of using RAM dir? because basically when you restart solr the ram is gone and it tries to checks the old folder that it had used..

Re: SolrCloud(5x) - Detects all of the Solr insrances on a machine

2012-11-21 Thread deniz
after putting the port information to solr.xml too, it seems properly... i dont know why this thing only happens on remote machines not on local, but could this be a minor bug related with solr? basically if we are giving the port information in the starting command, then we shouldnt be dealing wit

Re: SolrCloud - Fails to read db config file

2012-11-26 Thread deniz
Marcin Rzewucki wrote > Hi, > > It seems like the file is missing from Zookeeper. Can you confirm ? > > Regards. nope, i can see my db-config file on the admin interface of solr as well as zk client on command line, i dont think it is missing from zookeeper - Zeki ama calismiyor... Calis

Re: SolrCloud - Fails to read db config file

2012-11-26 Thread deniz
okay, after changing it to db-config from the full path above, i am able to see dataimport page, but still data import is failing... i see this in the logs SEVERE: Full Import failed:org.apache.solr.handler.dataimport.DataImportHandlerException: Unable to PropertyWriter implementation:ZKProper

Re: SolrCloud - Fails to read db config file

2012-11-26 Thread deniz
Mark Miller-3 wrote > It looks like your original path had a double / in it that was causing > problems. my original path in the config file doesnt have any double quotes, but when it is on solrcloud, it adds additional slash to the path... i am not an zookeeper expert or something but could it be

Re: SolrCloud - Fails to read db config file

2012-11-26 Thread deniz
Mark Miller-3 wrote > It looks like your original path had a double / in it that was causing > problems. my original path in the config file doesnt have any double quotes, but when it is on solrcloud, it adds additional slash to the path... i am not an zookeeper expert or something but could it be

Re: SolrCloud - Fails to read db config file

2012-11-26 Thread deniz
Mark Miller-3 wrote > It looks like your original path had a double / in it that was causing > problems. my original path in the config file doesnt have any double quotes, but when it is on solrcloud, it adds additional slash to the path... i am not an zookeeper expert or something but could it be

SolrCloud(5x) - Errors while recovering

2012-11-26 Thread deniz
Here is briefly what is happening: I have a simple SolrCloud environment for test purposes, running with a zookeeper ensemble, not the ones embedded in Solr. I have 3 instances in the cloud, all of them are using RAMDirectory (which is enabled by new Solr release to use with cloud) After running

SolrCloud Performance - Indexing

2012-11-26 Thread deniz
As I am some kinda confused, I wanna check if anyone else has same confusions like mine about solrcloud.. I have set up an environment with 3 solr instances and 2 zookeepers, amd tried to index some documents from mysql db. the total amount the docs are around 3.5M. before indexing i was expecting

RE: SolrCloud(5x) - Errors while recovering

2012-11-27 Thread deniz
Markus Jelsma-2 wrote > Seems you got this issue: > https://issues.apache.org/jira/browse/SOLR-4032 > thank you for the heads up and a surprising thing about my error.. when i use smaller size of documents, i do not get any errors at all... I dont know why but I have just tried to index only

RE: SolrCloud(5x) - Errors while recovering

2012-11-27 Thread deniz
another update having 300K docs causes the same error... I think there is something going on with the size of the index stored... after some point replication fails... any ideas how to bypass this? - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.

RE: SolrCloud(5x) - Errors while recovering

2012-11-27 Thread deniz
i have that issue with some larger size of indexes only... 12 - 14K docs are working totally okay even after a node dies and then starts again but if index is bigger, somehow i keep getting the lines above - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://luc

Re: Solr - Jetty Form Too Large Exception

2012-11-29 Thread deniz
Marcin Rzewucki wrote > > I think you should change/set value for multipartUploadLimitInKB attribute > of requestParsers in solrconfig.xml the value for multiPartUploadLimit is shown as 2048000 in the config and in the error logs i see 20, related with jetty... I have changed some part in th

SolrCloud - Sorting Problem

2012-11-29 Thread deniz
Hello, I am having a weird problem with solrcloud and sorting, I will open a bug ticket about this too, but wondering if anyone had similar problems like mine Background: Basically, I have added a new feature to Solr after I got the source code. Similar to the we get "score" in the resultset, I a

Re: SolrCloud - Sorting Problem

2012-11-29 Thread deniz
After playing with this more, i think I have some clue... on the standalone solr, when i give start 11 and rows 20, i can see documents with positions ranging from 12 to 31, which is correct... on the cloud, when i give the same parameters, again i get the same documents, but this time position ra

Re: SolrCloud(5x) - Errors while recovering

2012-12-02 Thread deniz
Mark Miller-3 wrote > FYI, I've fixed this 5x issue a few days ago. > > - Mark Yep, after the patch, it is not occuring anymore, thank you - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/SolrCloud-5x-Errors-while-recovering-tp

Re: SolrCloud - Sorting Problem

2012-12-02 Thread deniz
Chris Hostetter-3 wrote > w/o more information about how/where you add this information, it's going > to be really hard to give you suggestions on how to fix your problem. The modifications I made is nearly the same with score field. Basically I have added a PositionAugmenter class, modified Retu

Re: SolrCloud - Sorting Problem

2012-12-02 Thread deniz
deniz wrote > after these, I guess i need to check how the request is distributed on > cloud... any ideas where I should start checking? as for replying my own question (hopefully correct) I have started digging org.apache.solr.handler.component.SearchHandler.handleRequestBody which lo

Re: SolrCloud - Sorting Problem

2012-12-02 Thread deniz
I think I have figured out this... at least some kinda.. After putting logs here there in the code, especially in SolrCore, HttpShardHandler, SearchHandler classes, it seems like sorting is done after all of the shards finish "responding" and then before we see the results the result set is sorte

Solr Query Parameter : ids - What is this used for?

2012-12-03 Thread deniz
Hello, as it is clear in the title too, i wanna know for what solr uses this parameter... i see it on a sharding env on cloud, so i guess it is related with cloud but still there is no explanation about it in any of wiki pages that i have checked... can someone explain the usage and aim of this par

Re: Solr Query Parameter : ids - What is this used for?

2012-12-03 Thread deniz
Yonik Seeley-4 wrote > It's an internal implementation detail of distributed search - the > second phase selects specific ids on each shard via the "ids" > parameter. > > -Yonik > http://lucidworks.com so i suppose it us unique field? or it depends on which field we are using for querying on shar

Re: ids parameter decides the result set and order, no matter what kind of query you enter

2012-12-05 Thread deniz
replying my own question. ids is used in responsebuilders some internal mapping structure which is used for sorting and reordering document list before it is shown to the end user... simply it stores unique field values from documents which are to be shown to the user, and each mapping of these ids

How does fq skip score value?

2012-12-09 Thread deniz
Hello, I would like to know fq parameters doesnt deal with scoring so on,,, I have been digging the code, to see where it separates and executes fq parameters but couldnt find yet... anyone knows how does fq work to skip score information? - Zeki ama calismiyor... Calissa yapar... -- View

Analysing Solr Log Files

2013-01-08 Thread deniz
Hi All, i want to analyze the solr log file... the thing i want to do is, putting all the queries coming to the server to a log file, on a daily or hourly basis, and then running a tool to make analysis like most used field or queries, the queries which have hits and so on... are there any tools t

Re: Analysing Solr Log Files

2013-01-08 Thread deniz
thank you Otis I have used sematext's trial version but it requires sending log files to another url(correct me if i am wrong :) ), but i need something which could run on local, something would be triggrered by cronjob or something could be integrated(somehow) with the admin interface -

Solr with Scala

2012-02-05 Thread deniz
Hi all, I have a question about scala and solr... I am curious if we can use solr with scala (plugins etc) to improve performance. anybody used scala on solr? could you tell me opinions about them? - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472

Is it possible to use sub-fields or multivalued fields for boosting?

2011-05-04 Thread deniz
okay... let me make the situation more clear... I am trying to create an universal field which includes information about users like firstname, surname, gender, location etc. When I enter something e.g London, I would like to match any users having 'London' in any field firstname, surname or locati

copyField

2011-05-04 Thread deniz
another question if i define different fields with different boosts and then copy them into another field and make a search by using this universal field, the boosting will be done? -- View this message in context: http://lucene.472066.n3.nabble.com/copyField-tp2902242p2902242.html Sent from the

Solr Search fails

2011-05-05 Thread deniz
Hi all. have been trying to implement a universal search on a field but somehow it fails... when I make a full import everything is ok I can see the indexed field. But when i make a query like universal:Male it shows no match any ideas? -- View this message in context: http://lucene.4720

Re: Is it possible to use sub-fields or multivalued fields for boosting?

2011-05-05 Thread deniz
it seems like I will use dismax... I have tried some other ways but dismax seems the best :) -- View this message in context: http://lucene.472066.n3.nabble.com/Is-it-possible-to-use-sub-fields-or-multivalued-fields-for-boosting-tp2901992p2907094.html Sent from the Solr - User mailing list archiv

Re: Solr Search fails

2011-05-05 Thread deniz
type is string and i use standard analyzer ( i am not sure what you mean by the word chain ) -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Search-fails-tp2907093p2907104.html Sent from the Solr - User mailing list archive at Nabble.com.

  1   2   >