report this exception to solr-user@lucene.apache.org
Any help is appreciated.
Reagrds,
Paresh
--
Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html
#x27;.
Is there any way to get field from collection1 while performing query from
collection2 joining with collection1?
Regards,
Paresh
--
Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html
Hi,
I am able to get it done using following way -
Thanks,
Paresh
--
Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html
Hi,
I am able to get it done using following way -
Thanks,
Paresh
--
Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html
Hi,
I am able to get it done using following way -
Thanks,
Paresh
--
Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html
come from query executed on RDBMS -
select columnName from Table where state = 'deleted'
This columnName is the value populated in Solr for SolrColulmnName.
Regards,
Paresh
--
Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html
.
I want to debug if the query getting formed is correct or not -
Here is the snippet of entity -
The said entity, I am not able to delete the docs from solr using
delta-import operation, so wanted to debug it.
Regards,
Paresh
--
Sent from: https
How can we see SQL in log file?
--
Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html
In my environment I was creating a windows service for Solr and there I
forgot to specify -Dsolr.log.dir as a command line for Windows Service.
After defining it to correct path and reinstalling solr as service solved
the issue.
--
Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068
in RDBMS Table1
using state column value of 1.
ColName is Solr column-name for the collection. dbCol - database column name
in Table1
I am trying to use $deleteDocByQuery clause to remove documents.
Any help is appreciated.
Regards,
Paresh
--
Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html
Thanks Paras. It solved my problem. I am now able to see the logs.
--
Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html
appreciated.
Thanks,
Paresh
--
Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html
E.g. In query, join with wild-card query using parenthesis I get error -
"error-class","org.apache.solr.common.SolrException",
"root-error-class","org.apache.solr.parser.ParseException"],
"msg":"org.apache.solr.search.SyntaxError: Cannot parse
'solrField:(12*': Encountered \"\" at line 1
; --> doesn't work
(-) wild-card like (12*) in filter query with &fq={!join to=...
from=...}field:(12*) --> works well
Why wild-card query does not work with {!join}?
Regards,
Paresh
--
Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html
sed_filter_queries":["TC_0Y0_Occurrence_Name:6935 style
rear MY11+",
"TC_0Y0_ProductScope:xtWNf_fTAaLUgD",
"JoinQuery({!join
from=TC_0Y0_ItemRevision_0Y0_awp0Item_item_id to=TC_0Y0_Item_ID
fromIndex=collection1}TC_0Y0_ItemRevision_0Y0_awp0Item_item_id:92138773)"],
"timing":{
"time":1487.0, ..
I am trying to see why fromTermCount is so high when fromSetSize and
toSetSize is less?
Where can I find the details about all the contents of debugQuery and how
to read each component?
Any help is appreciated.
Regards,
Paresh
sed_filter_queries":["TC_0Y0_Occurrence_Name:6935 style
rear MY11+",
"TC_0Y0_ProductScope:xtWNf_fTAaLUgD",
"JoinQuery({!join
from=TC_0Y0_ItemRevision_0Y0_awp0Item_item_id to=TC_0Y0_Item_ID
fromIndex=collection1}TC_0Y0_ItemRevision_0Y0_awp0Item_item_id:92138773)"],
"timing":{
"time":1487.0, ..
I am trying to see why fromTermCount is so high when fromSetSize and
toSetSize is less?
Where can I find the details about all the contents of debugQuery and how
to read each component?
Any help is appreciated.
Regards,
Paresh
Hi,
I have two collections - collection1 and collection2.
I am doing HTTP request on collection2 using
http://localhost:8983/solr/collection1/tcfts/?params={q=col:value AND
_query_:{!join}...AND _query_:{!join}..}
If my query is like - fieldOnCollection1:somevalue AND INNER JOIN (with
collection1
Hi,
I have two collections - collection1 and collection2.
I am doing HTTP request on collection2 using
http://localhost:8983/solr/collection1/tcfts/?params={q=col:value AND
_query_:{!join}...AND _query_:{!join}..}
If my query is like - fieldOnCollection1:somevalue AND INNER JOIN (with
collection1
They are logically different that is why kept in different collections.
Collection1: The purpose is to do Global Text Search for all objects through
multiple document types
Collection3: The purpose is to have search for some other type of objects
whose documents are in Millions and takes GBs size.
I am actually able to make this work by doing multiple JOINs -
1. Do query on Collection1
2. JOIN with Collection3 (document type1 field)
3. JOIN with Collection3 (document type2 field)
4. Do not fetch any data except faceting information
But the other problem is, it is very slow.
Are there any o
Hi Erick,
I am able to achieve querying on Collection3 with INNER JOIN between two
document types and JOIN across collection1 using below mechanism. I am also
getting facetting information from collection3 along with data.
http://localhost:8983/solr/collection3/tcfts?wt=json&indent=on&start=0&row
Hi Erick,
I am able to achieve querying on Collection3 with INNER JOIN between two
document types and JOIN across collection1 using below mechanism. I am also
getting facetting information from collection3 along with data.
http://localhost:8983/solr/collection3/tcfts?wt=json&indent=on&start=0&row
Hi,
I have two collections both having different schema.
Collection1: ID, Field1, Field2
Collection3: ID, Oc1, OC2, col3_Field1
ID1, col3_Oc1
I want to do following JOINs
(-)Query on Collection1
(-)Field2:value2
(-)JOIN across collection3 Field1 = collection3.col3_Field1
Paresh
--
View this message in context:
http://lucene.472066.n3.nabble.com/Solr-Core-not-able-access-latest-data-indexed-by-multiple-server-tp3919113p3919113.html
Sent from the Solr - User mailing list archive at Nabble.com.
24 matches
Mail list logo