Are you sure that SOLR is rounding incorrectly, and not simply differently
from what you expect? I was surprised myself at some of the rounding
behaviour I saw with SOLR, but according to
http://en.wikipedia.org/wiki/Rounding , the results were valid (just not
the round-up-from-half that I naively
Regular expressions is a text-matching mechanism, so you shouldn't expect
to be able to use it on numeric data. If your timestamps are of the form
you indicate, you should be able to filter on pubdateraw:[2005 TO
2005].
On Thu, Mar 13, 2014 at 11:45 AM, Priti Solanki wrote:
> Hi,
>
>
> I
"literal.id" should contain a unique identifier for each document (assuming
that the unique identifier field in your solr schema is called "id"); see
http://wiki.apache.org/solr/ExtractingRequestHandler .
I'm guessing that the url for the ExtractinRequestHandler is incorrect, or
maybe you haven't
Looks like you might be able to use sub-documents (or whatever it is called in
SOLR) for this; create the parent document without any dates, and a child
document for each date range.
On 01 Mar 2014, at 19:41 , Thomas Scheffler
wrote:
> Am 01.03.14 18:24, schrieb Erick Erickson:
>> I'm not cle
A few things:
1) If your database uses a BLOB, you should not use clobtransformer;
FieldStreamDataSource should be sufficient.
2) In a previous message, it showed that the converted/etxracted document
was empty (except for an html boilerplate wrapper). This was using the
configuration I suggested
B type, then indexing is done smoothly.
> But, I am trying to index binary data which are stored in DB in BLOB type.
>
> Need help.
>
> Thanking you,
> Chandan
>
>
>
> -Original Message-
> From: Raymond Wiker [mailto:rwi...@gmail.com]
> Sent: Monday, Febru
ot;
> format="text"
> >
>
>
>
>
>
>
>
>
>
>
>
> This is looks like similar to your configuration. But when xml data are in
> BLOB in database, indexing is done. But, when binary data are in
I've done something like this; the key was to use a FieldStreamDataSource
to read from the BLOB field.
Something like
then
...
On Mon, Feb 24, 2014 at 11:04 AM, Chandan khatua wrote:
> Hi Gora !
>
> Your concern was "What is the t
That could be because the second condition does not do what you think it
does... have you tried running the second condition separately?
You may have to add a "base term" to the second condition, like what you
have for the "bq" parameter in your config file; i.e, something like
(*:* -organisation
Maybe you could move (field2:val2 or field4:val4) into a filter? E.g,
q=(field1:val1 OR field2:val2 OR field3:val3 OR
field4:val4)&fq=(field2:val2 OR field4:val4)
If I have this correctly, the fq part should be evaluated first, and may
even be found in the filter cache.
On Thu, Jan 23, 2014 at
Speaking for myself, I avoid using "client apis" like SolrNet, SolrJ and
FAST DSAPI for the simple reason that I feel that the abstractions they
offer are so thin that I may just as well talk directly to the HTTP
interface. Doing that also lets me build web applications that maintain
their own stat
We're using Apache with mod_auth_sspi, mod_rewrite and mod_proxy to handle
authentication and (limited) parameter validation. On the inside, we have a
wrapper process that builds filters for document-level security based on
the user's identity/identities and groups, does some more parameter
validat
Followup: I *think* something like this should work:
$results = $solr->search($query, $start, $rows, array('sort' => 'price_min
asc,update_date desc', 'facet.query' => 'price_min:[* TO 1300]'));
On Mon, Jan 20, 2014 at 11:05 AM, Raymond Wiker
That's exactly what I would expect from url-encoding '&'. So, the thing
that you're doing works as it should, but you're probably doing something
that you should not do (in this case, urlencode).
I have not used SolrPHPClient myself, but from the example at
http://code.google.com/p/solr-php-client
What Erick is saying is that the facet.query seen by solr is
price_min:[*+TO+1300]
rather than
price_min:[* TO 1300]
Having done this sort of thing myself, my guess is that you're probably
doing a urlencode operation more than you should be (on the facet.query
value).
On Fri, Jan 17, 2014 at
To start with, you have "+"-coded spaces in the range part, but the sort
parameter has an unencoded space character.
Not sure if this is the reason that it fails, but it is certainly a reason to
look closer at how you encode your queries...
On 16 Jan 2014, at 12:29 , rachun wrote:
> Hi Gurus
Indeed it is - but you'll also need mod_proxy ("just" rewriting will not be
sufficient).
On Tue, Jan 7, 2014 at 3:42 AM, Otis Gospodnetic wrote:
> Apache url_rewrite can help with this and it's only a few minutes to set
> up.
>
> Otis
> --
> Performance Monitoring * Log Analytics * Search Analy
On 06 Jan 2014, at 19:37 , Shawn Heisey wrote:
> On 1/6/2014 11:18 AM, Shawn Heisey wrote:
>> Even if you disable admin handlers so that it's impossible to gather full
>> information about your schema and other settings, generating legitimate
>> queries is probably enough for an attacker to ge
On Thu, Dec 19, 2013 at 10:01 AM, Charlie Hull wrote:
> On 18/12/2013 09:03, Alexandre Rafalovitch wrote:
>
>> Charlie,
>>
>> Does it mean you are talking to it from a client program? Or are you
>> running Tika in a listen/server mode and build some adapters for standard
>> Solr processes?
>>
>
>
On 17 Dec 2013, at 17:30 , manju16832003 wrote:
> Hi Raymond,
> You mean during the DIH execution?
Yes; as part of the sql statement.
To me, the obvious way of doing this would be to CAST the DATETIME to
CHAR(n), or (probably better) use DATE_FORMAT().
On Tue, Dec 17, 2013 at 5:21 AM, Shalin Shekhar Mangar <
shalinman...@gmail.com> wrote:
> I'm sorry. I thought you wanted to parse a date stored as string into
> a java.util.Dat
I think you're wrong about this; both the "literal.*"parameters and the file
will be sent as part of the body, as "multipart/form-data". It is possible that
whatever library you're using are placing the "literal.*" parameters in the
url, but that is by no means necessary (or even a good idea).
I think you're wrong about this; both the "literal.*"parameters and the file
will be sent as part of the body, as "multipart/form-data". It is possible that
whatever library you're using are placing the "literal.*" parameters in the
url, but that is by no means necessary (or even a good idea).
I would index all attachments separately, but with some sort of reference
back to the mail message. That way, I could use the update handler for the
text and metadata of the mail message, and the the update/extract handler
for the binary attachment(s) and a restricted set of metadata (file name,
co
On 09 Dec 2013, at 17:20 , neerajp wrote:
>
> 2) Your binary content is encoded in some way inside XML, right? Not just
> random binary, which would make it invalid XML? Like base64 or something?
>
> [Neeraj]: I want to use random binary(*not base64 encoded*) in some of the
> XML fields insi
We have been doing exactly that through several versions of Solr: we unpack the
new version on one set of replicas, install empty directories for the core(s)
we want to use, and create empty core.properties files in these. Then, we start
the new replicas, using a (stand-alone) zookeeper for the
You mentioned earlier that you are not setting -Xms/-Xmx; the values actually
in use would then depend on the Java version, whether you're running 32- or
64-bit Java, whether Java thinks your machines are "servers", and whether you
have specified the "-server" flag – and possibly a few other thi
A few options:
1) Check what the response times are if you return only a small number of
fields from the query (e.g, just the "id" field). If the response times improve
greatly, you are probably returning some very long fields, and you may be able
to drop some of these from the query result.
2
As far as I understand, the filter terms (fq parameters) should be
automatically cached.
On 06 Nov 2013, at 19:08 , PeterKerk wrote:
> Hi Raymond,
>
> Thanks.
> This caching of the main query you mention, is that done automatically or do
> I have to do something for that?
>
>
>
> --
> View
One way of getting the min/max values is to fire off two additional queries,
using the current query and filter params, a field list ("fl") containing just
the field you want to find min/max for, asking for a single hit (rows=1), and
sorting by that field - asc in one query, desc in the other. T
We have a somewhat similar case; what we will do is to have one analysed
field in conjunction with a string field (possibly with case folding). That
way, we can use the original field values for displaying as facets, but
also allow searches for parts of the facet values.
On Tue, Nov 5, 2013 at 1:
Are you restricting the set of fields that you return from the queries? If
not, it could be that you are returning fields that are potentially very
large, and may affect query performance that way.
On Tue, Nov 5, 2013 at 11:38 AM, michael.boom wrote:
> Thank you!
>
> I suspect that maybe my box
The parameters indicate a jQuery.ajax call with result type "jsonp" - a
On 28 Oct 2013, at 01:19 , Bayu Widyasanyata wrote:
> request: http://localhost:8080/solr/update?wt=javabin&version=2
I think this url is incorrect: there should be a core name between "solr" and
"update".
On Oct 22, 2013, at 19:29 , Shawn Heisey wrote:
> On 10/22/2013 8:09 AM, Raheel Hasan wrote:
>> This sounds like trouble.
>>
>> I have used Solr in my script (php) such that I curl it for query (using
>> "solr/automata/select?q="). If I make it completely off-public, how will my
>> own site acces
On Oct 22, 2013, at 15:32 , Raheel Hasan wrote:
> Hi,
>
> I want to know how to secure the admin section. The site "
> http://wiki.apache.org/solr/SolrSecurity"; has a lot of stuff, but I want to
> put htaccess based restriction.
>
> Can anyone tell me where to place the htaccess?
>
> I am usin
It looks like your select statement does not return any rows... have you
verified it with some sort of SQL client?
On Tue, Oct 8, 2013 at 8:57 AM, Prasi S wrote:
> Hi ,
> I have setup solrcloud with solr4.4. The cloud has 2 tomcat instances with
> separate zookeeper.
>
> i execute the below co
On Sep 26, 2013, at 11:13 , uwe72 wrote:
> Hi there,
>
> how can i prevent that everybody who knows the URL of our solr admin page,
> has the right to access it?
>
> Thanks in advance!
> Uwe
I'd restrict access to the jetty server to localhost, and use an Apache httpd
instance (or some other
You can also define multiple dataimporthandlers in solrconfig.xml, each
with their own data-config.
On Wed, Sep 18, 2013 at 7:45 AM, Alexandre Rafalovitch
wrote:
> You can create multiple entities in DIH definition and they will all run.
> Means duplicating the mapping definition apart from data
On Sep 12, 2013, at 20:55 , phanichaitanya wrote:
> Apologies again. But here is another try :
>
> I want to make sure that documents that are indexed are committed in say an
> hour. I agree that if you pass commitWithIn params and the like will make
> sure of that based on the time configuration
w.com/questions/4168494/resultset-getstring-on-varchar2-column-returns-empty-string
>
> I don't think this is specific to DataImportHandler.
>
>
> On Thu, Sep 12, 2013 at 12:43 PM, Raymond Wiker wrote:
> > Followup: I just tried modifying the select with
> >
>
e gave me this: http://bugs.caucho.com/view.php?id=4224(via
http://forum.caucho.com/showthread.php?t=27574).
On Thu, Sep 12, 2013 at 8:25 AM, Raymond Wiker wrote:
> I'm trying to index a view in an Oracle database, and have come across
> some strange behaviour: all the VARCHAR2 fie
I'm trying to index a view in an Oracle database, and have come across some
strange behaviour: all the VARCHAR2 fields are being returned as empty
strings; this also applies to a datetime field converted to a string via
TO_CHAR, and the url field built by concatenating two constant strings and
a nu
On Sep 2, 2013, at 17:39 , Mysurf Mail wrote:
> Hi,
> I am having problems parsing suggest json response in c#.
> Here is an example
>
> {
>
> - responseHeader:
> {
> - status: 0,
> - QTime: 1
> },
> - spellcheck:
> {
> - suggestions:
> [
> - "at",
>
On Aug 22, 2013, at 19:53 , Kamaljeet Kaur wrote:
> On Thu, Aug 22, 2013 at 10:56 PM, SolrLover [via Lucene]
> wrote:
>>
>> Now use DIH to get the data from MYSQL database in to SOLR..
>>
>> http://wiki.apache.org/solr/DataImportHandler
>
>
> These are for versions 1.3, 1.4, 3.6 or 4.0.
> Why
wheezed AND NOT "not wheezed"
or
+wheezed -"not wheezed"
perhaps?
Note: this assumes that you meant to search with the keyword "wheezed" and
not "wheeze".
On Mon, Aug 19, 2013 at 2:38 PM, venkatesham.gu...@igate.com <
venkatesham.gu...@igate.com> wrote:
> I am searching with a keyword and if
I'm guessing that this will only be a partial solution, as you'll want to
use the "real" field name for filtering, and the encoding problems will
still have to be solved (since there will be a need to support the national
characters in the field values as well as the field names...)
Personally, I
It will probably have better performance than having a "plan b" query that
executes if the first query fails...
On Mon, Aug 12, 2013 at 2:27 PM, PoM wrote:
> That would actually be a decent solution, although it isn't the best i will
> try if it gives any performance issues
>
>
>
> --
> View th
base64-encode the binary data? That will give you strings, at the expense
of some storage overhead.
On Mon, Aug 12, 2013 at 2:38 PM, Mathias Lux wrote:
> Hi!
>
> I'm basically searching for a method to put byte[] data into Lucene
> DocValues of type BINARY (see [1]). Currently only primitives an
On Aug 9, 2013, at 17:36 , Neal Ensor wrote:
> So, I have an oddball question I have been battling with in the last day or
> two.
>
> I have an 8 million document solr index, roughly divided down the middle by
> an identifying "product" value, one of two distinct values. The documents
> in both
On Aug 8, 2013, at 15:57 , Spadez wrote:
> Hi,
>
> QUESTION 1
>
>
> First things first, for the dataimport handler. Is it correct that when I
> visit it from the admin panel it takes me to this URL:
>
> *http://x.com:8080/solr/#/collection1/dataimport//dataimport
> *
> When I visit it on this
I think the problem is that you have the wrong name for the jar file: you
have apache-solr-dataimporthandler instead of simply
solr-dataimporthandler.
In my solrconfig.xml, I have
--- which may or may not work for you.
Assuming that you're doing this in a Windows environment, you could define
your spreadsheet as an ODBC data source and define a datasource for it in
DIH. Then, you would extract the main documents from your database, and the
keywords from the ODBC datasource layered on top of your spreadsheet.
No
On Aug 7, 2013, at 18:10 , Lee Carroll wrote:
> Hi
>
> I've 2 tables with the following data
>
> table 1
> id treatment_list
> 1 a,b
> 2 b,c
>
> table 2
> treatment id, name
> a name1
> b name 2
> c name 3
>
> Using DIH can you create an index
You're explicitly asking for only 10 search results - that's what the
"rows=10" parameter does.
If you want to see alll results, you can either increase "rows", or run
multiple queries, increasing "offset" each time.
On Wed, Aug 7, 2013 at 12:21 PM, Kamaljeet Kaur wrote:
> Hello,
> I am a newbi
You said earlier that you had 6 zookeeper instances, but the zkHost param
only shows 5 instances... is that correct?
On Tue, Aug 6, 2013 at 11:23 PM, Joshi, Shital wrote:
> Machines are definitely up. Solr4 node and zookeeper instance share the
> machine. We're using -DzkHost=zk1,zk2,zk3,zk4,zk
user@lucene.apache.org
>> Subject: Re: Knowing what field caused the retrival of the document
>>
>> But what if this for multiple words ?
>> I am guessing solr knows why the document is there since I get to see the
>> paragraph in the highlight.(hl) section.
>&g
Another option might be to use a pre-existing web service... it should be
relatively easy to add that to your dataimporthandler configuration (if
you're using DIH, that is :-)
A quick google search gave me http://www.geonames.org; see
http://www.geonames.org/export/ for API information.
On Tue,
If you were searching for single words (terms), you could use the 'tf'
function, by adding something like
matchesinname:tf(name, "whatever")
to the 'fl' parameter - if the 'name' field contains "whatever", the
(result) field 'matchesinname' will be 1.
On Tue, Aug 6, 2013 at 10:24 AM, Mysurf M
ico Chiacchiaretta <
federico.c...@gmail.com> wrote:
> No, the content has no XML tags included (hope I understood what you were
> asking here).
>
> Federico
>
>
> 2013/8/5 Raymond Wiker
>
> > On Aug 5, 2013, at 20:12 , Federico Chiacchiaretta <
> > federico.
On Aug 5, 2013, at 20:12 , Federico Chiacchiaretta
wrote:
> Hi Raymond,
> I agree with you, 0xfffe is a special character, that is why I was asking
> how it's handled in solr.
> In my document, 0xfffe does not appear at the beginning, it's in the
> content.
>
> Just an update about testing I'm d
I think #xfffe is special; it is used as a "byte order mark" to identify the
encoding used. In that case, it should only appear at the beginning of the
document.
Sent from my iPhone
On 5 Aug 2013, at 17:19, Federico Chiacchiaretta
wrote:
> Hi Shawn,
> thanks for your answer.
> From the docs
Don't know about "best practice", but to me, the obvious solution would be
to have a database table holding the relationships between countries and
continents, and using a join to get the continent.
On Mon, Aug 5, 2013 at 9:59 AM, Christian Köhler - ZFMK
wrote:
> Hi,
>
> I am indexing data from
That query searches for ratings in the range 2.0 to 2.5, which does not
include 1.75. The fl setting only affects the returned value, and not the
search.
If you want to search for ratings that would round to 2, your query should
be something like
fq=[1.5 TO 2.5]
Note: the exact boundaries should
's no BlobTransformer in DataImportHandler. You'll have to write one.
> Also, you'd probably need to write a FieldInputStreamDataSource instead of
> FieldReaderDataSource.
>
>
> On Tue, Jul 30, 2013 at 12:30 PM, Raymond Wiker wrote:
>
> > I have a case where I
On Aug 1, 2013, at 17:36 , Thyagaraj wrote:
> Hello Raymond Wiker,
>
> I just want to change the value while returning from the index (i.e, at
> query time). I tried the one like below but it's not working and showing
> same fraction value instead any nearest integer,
>
You don't say whether you want to change the value in the index, or the
value that you return from the index (i.e, at query time).
If you want to change the value that you place in the index, you could
modify your SQL query to use the ROUND() function on the "ratings" value.
For Oracle, you could
On Jul 30, 2013, at 22:05 , Luis Cappa Banda wrote:
> Anyway, I still need to do a query like the following to retrieve those
> documents with at least one E-mail detected:
>
> http://localhost:8080/mysolr/select?q=emails:[* TO
> *]&start=0&rows=10&sort=mydate desc
Can't you just use emails:* ?
I have a case where I want to documents and metadata content from a
datebase. The metadata is is not a problem, but it does not appear that I
can handle the document content (held as BLOBS in the database) with
out-of-the-box SOLR 4.4 functionality.
I was hoping to to be able to solve this by doin
The query syntax is case sensitive; "and" is treated as a search term and
not as an operator.
On Thu, Jul 25, 2013 at 1:00 PM, Payal.Mulani <
payal.mul...@highqsolutions.com> wrote:
> Hi,
>
> I am using solr14 and when I search with 'and' the it searches the
> documents
> containing 'and' as a t
Simple: the field needs to be "indexed" in order to search (or filter) on
it.
On Tue, Jul 23, 2013 at 3:26 PM, Mysurf Mail wrote:
> I want to restrict the returned results to be only the documents that were
> created by the user.
> I then load to the index the createdBy attribute and set it to
On Jul 3, 2013, at 05:48 , huasanyelao wrote:
> Nowdays, I've got a urgent task to improve the "OR" query performance with
> solr.
> I have deployed 9 shards with solr-cloud in two server(each server : 16
> cores, 32G RAM).
> The total document count: 60,000,000, total index size : 9G.
> Accord
On Jun 20, 2013, at 18:26 , Abhishek Bansal wrote:
> Yeah I know, out of the box there is one id field. I removed it from
> schema.xml
>
> I have also added below code to automatically generate an ID.
>
> multiValued="false"/>
>
>
Is that a valid configuration for an id field (assuming t
It looks like I haven't paid sufficient attention to your earlier messages
- sorry. It is quite clear that "content" contains bing, and you should
have gotten results back if the default search field was content.
It could be that your solrconfig.xml file sets df to a field that does not
contain "b
Hmmm did you restart SOLR after changing the schema? And did you try
searching for content:bing (alternatively, setting the df parameter to
"content" (without quotes)?
On Wed, Jun 12, 2013 at 12:12 PM, coderslay wrote:
> Apologies Raymond for the Name.
>
> I have tried doing that also and st
I'm not Jack, but...
... locate the line in schema.xml that says
content
and replace "content" with "text".
You may also have to edit solrconfig.xml if the request handler defines the
parameter "df" - this, too, should point to your default field.
On Wed, Jun 12, 2013 at 10:44 AM, coderslay w
There's your problem, then - you have "content" as the default search
field, but your copyField nodes treat "text" as the default search field.
If you change the default search field to text, you should be able to
search for "bing"; otherwise, you'll need to use something like
"content:bing".
On
It appears that the word "bing" appears in the title; is the title field
copied into the default search field (assuming that you even have a default
search field)? If not, you need to somehow specify the field(s) that you
want to search in.
On Wed, Jun 12, 2013 at 7:52 AM, coderslay wrote:
> Hi
A better option would be to use POST instead of GET.
On Mon, Jun 10, 2013 at 8:50 AM, Aloke Ghoshal wrote:
> True, the container's request header size limit must be the reason then.
> Try:
>
> http://serverfault.com/questions/136249/how-do-we-increase-the-maximum-allowed-http-get-query-length-i
I think you'd be better off using field names that look like Java
identifiers - e.g, mark10 instead of 10th_mark.
Actually, let me rephrase that: you SHOULD be using field names that look
like Java identifiers - less headache, all round.
On Thu, Jun 6, 2013 at 4:01 PM, anurag.jain wrote:
> I h
On Jun 5, 2013, at 20:39 , Stavros Delisavas wrote:
> Thanks so far.
>
> This change makes Solr work over the title-entries too, yay! Unfortunatly
> they don't get processed(skipped rows). In my log it says
> "missing required field id" for every entry.
>
> I checked my schema.xml. In there "id
3) Use the parameter facet.prefix, e.g, facet.prefix=dotan-. Note: this
particular case will not work if the field you're facetting on is tokenised
(with "-" being used as a taken separator).
4) Use the parameter facet.mincount - looks like you want to set it to 1,
instead of the default which is
On May 29, 2013, at 18:09 , jignesh wrote:
> Solr returning error 500, when i post data with ascent chars...
>
> Any solution for that?
The solution probably involves using the correct encoding, and ensuring that
the HTTP request sets the appropriate header values accordingly.
In other words,
On May 23, 2013, at 14:25 , gpssolr2020 wrote:
> Thanks Erick..
>
>
> i hope we cant do q also on non-indexed field.
>
> Whats is the difference between q and fq other than cache .
>
>
>
> Thanks.
How do you expect to search on a field that is non-indexed (and thus
non-searchable)?
On May 20, 2013, at 05:05 , Kamal Palei wrote:
> I have put the code to add these fields in document object and index it.
> I have not deleted whole indexed data and reindex it. But I expect whatever
> new documents are added, for those documents these two fields salary and
> experience should be
On May 13, 2013, at 14:15 , Polhodzik Peter (ext)
wrote:
> In the source code of Apache Solr 4.2.0 there is an unclear license reference
> in
>
> · \solr-4.2.0\solr\webapp\web\js\lib\jquery-1.7.2.min.js
> and
> · \solr-4.2.0\solr\webapp\web\js\require.jstxt
>
> Can you please
If you're using zookeeper, this should not be allowed to happen (I think).
On Thu, May 2, 2013 at 2:12 PM, Furkan KAMACI wrote:
> Thanks for the answer. This is what I try to say:
>
> time = t
> Node A (Leader): version is 100
> Node B (Replica): version is 90
>
> time = t+1
> Node A (Killing):
On May 1, 2013, at 19:07 , johnmu...@aol.com wrote:
> Are you saying because I'm subscribed to dev, which I'm, is why I'm getting
> JIRA mails too, and the only way I can stop JIRA mails is to unsubscribe from
> dev? I don't think so. I'm subscribed to other projects, both dev and user,
> and
You have
--- I think this needs to be "long".
On Mon, Apr 29, 2013 at 10:01 AM, heaven wrote:
> Hi, seems like I have exactly the same error:
>
> Apr 28, 2013 11:41:57 PM org.apache.solr.common.SolrException log
> SEVERE: null:java.lang.UnsupportedOperationException
> at
>
> org.apache.lucene.queries.function.FunctionValues.longVal(F
On Fri, Apr 26, 2013 at 2:45 PM, Furkan KAMACI wrote:
>
> I use that command to post:
> java -Durl=http://localhost:8983/solr/update/extract -Dauto -jar post.jar
> 523387.pdf
>
I think you need to have the collection name in the url... something like
http://localhost:8983/solr/mycollection/update
You could start by doing
java post.jar -help
--- the 7th example shows exactly what you need to do to add a document id.
On Fri, Apr 26, 2013 at 11:30 AM, Furkan KAMACI wrote:
> I use Solr 4.2.1 and these are my fields:
>
> multiValued="false" />
>
>
>
>
> multiValued="true"/>
>
> stored=
On Apr 20, 2013, at 05:03 , Otis Gospodnetic wrote:
> Yeah, but as far as I know, there is nothing Solr-specific about that.
>
> See http://www.acnc.com/raid
>
There's a hw-specific dimension to this, too: for my company's enterprise
search solution, we had to replace our initial RAID setup (R
On Apr 19, 2013, at 16:59 , vicky desai wrote:
> I want to do a phrase search in solr without analyzers being applied to it
> eg - If I search for *"DelhiDareDevil"* (i.e - with inverted commas)it
> should search the exact text and not apply any analyzers or tokenizers on
> this field
> However i
On Tue, Apr 16, 2013 at 3:13 PM, Montu v Boda wrote:
> hi
>
> we are trying to return 10,000 rows
>
> it is necessary to return 1 rows because from that 1, we are pick
> only top 100 record based on the user permission and permission is stored
> in
> database not on solr.
>
> and if we tr
On Apr 11, 2013, at 17:12 , adfel70 wrote:
> Hi
> I need to implement security in solr as follows:
> 1. prevent unauthorized users from accessing to solr admin pages.
> 2. prevent unauthorized users from performing solr operations - both /admin
> and /update.
>
>
> Is the conclusion of this thre
On Wed, Apr 10, 2013 at 10:35 AM, Max Bo wrote:
> Just for information: I indicate that the problem occurs when I try to add
> the fields, created, last_modified, issued (all three have the type date)
> and the field rightsholder.
>
> Maybe it is helpful!
>
>From the example you sent earlier, it
You have misspelt the tag name in the field definition... you have "fiald"
instead of "field".
On Tue, Apr 9, 2013 at 7:43 AM, deniz wrote:
> 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
On Apr 8, 2013, at 19:09 , "Jack Krupansky" wrote:
> "replace with UpdateRequestHandler"
>
> Just compare your solrconfig to the new one and consider updating yours and
> using the newer Solr update API that automatically uses the content type to
> internally dispatch to the proper update handl
99 matches
Mail list logo