Re: Need Help with Solr 6.0 Cross Data Center Replication

2016-06-08 Thread Renaud Delbru

Hi,

unfortunately no, I haven't had the time to reproduce your settings with 
separated zookeeper instances.


I'll update if I have something.
--
Renaud Delbru

On 07/06/16 16:55, Satvinder Singh wrote:

Hi,

Any updates on this??

Thanks

Satvinder Singh



   Security Systems Engineer
 satvinder.si...@nc4.com
 804.744.9630  x273 direct
 703.989.8030 cell



 www.NC4.com <http://www.NC4.com>



   <https://www.linkedin.com/company/nc4>  
<https://plus.google.com/+Nc4worldwidesolutions/posts> 
<https://twitter.com/NC4worldwide>









On 5/19/16, 8:41 AM, "Satvinder Singh"  wrote:


Hi,

So this is what I did:

I created solr as a service. Below are the steps I followed for that:--

$ tar xzf solr-X.Y.Z.tgz solr-X.Y.Z/bin/install_solr_service.sh 
--strip-components=2

$ sudo bash ./install_solr_service.sh solr-X.Y.Z.tgz -i /opt/solr1 -d 
/var/solr1 -u solr -s solr1 -p 8501
$ sudo bash ./install_solr_service.sh solr-X.Y.Z.tgz -i /opt/solr2 -d 
/var/solr2 -u solr -s solr2 -p 8502

Then to start it in cloud I modified the solr1.cmd.in and solr2.cmd.in in 
/etc/defaults/
I added ZK_HOST=192.168.56.103:2181,192.168.56.103:2182,192.168.56.103:2183 
(192.168.56.103 is where my 3 zookeeper instances are)

Then I started the 2 solr services solr1 and solr2

Then I created the configset
/bin/solr zk -upconfig -z 
192.168.56.103:2181,192.168.56.103:2182,192.168.56.103:2183 -n Liferay -d 
server/solr/configsets/sample_techproducts_configs/conf

Then I created the collection using:
http://192.168.56.101:8501/solr/admin/collections?action=CREATE&name=dingdong&numShards=1&replicationFactor=2&collection.configName=liferay
This created fine

Then I deleted the solrconfig.xml from the zookeeper Liferay configset

Then I uploaded the new solrconfig.xml to the configset.

When when I do a reload on the collections I get the error. Or I created a new 
collection I get the error.

Thanks

Satvinder Singh



Security Systems Engineer
satvinder.si...@nc4.com
703.682.6000 x276 direct
703.989.8030 cell
www.NC4.com





?


-Original Message-
From: Renaud Delbru [mailto:renaud@siren.solutions]
Sent: Thursday, May 19, 2016 7:13 AM
To: solr-user@lucene.apache.org
Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication

I have reproduced your steps and the cdcr request handler started successfully. 
I have attached to this mail the config sets I have used.
It is simply the sample_techproducts_config configset with your solrconfig.xml.

I have used solr 6.0.0 with the following commands:

$ ./bin/solr start -cloud

$ ./bin/solr create_collection -c test_cdcr -d cdcr_configs

Connecting to ZooKeeper at localhost:9983 ...
Uploading /solr-6.0.0/server/solr/configsets/cdcr_configs/conf for config 
test_cdcr to ZooKeeper at localhost:9983

Creating new collection 'test_cdcr' using command:
http://localhost:8983/solr/admin/collections?action=CREATE&name=test_cdcr&numShards=1&replicationFactor=1&maxShardsPerNode=1&collection.configName=test_cdcr

{
   "responseHeader":{
 "status":0,
 "QTime":5765},
   "success":{"127.0.1.1:8983_solr":{
   "responseHeader":{
 "status":0,
 "QTime":4426},
   "core":"test_cdcr_shard1_replica1"}}}

$ curl http://localhost:8983/solr/test_cdcr/cdcr?action=STATUS



03stoppedenabled 



The difference is that I have used the embedded zookeeper, not a separate 
ensemble.

Could you please provide the commands you used to create the collection ?

Kind Regards
--
Renaud Delbru

On 16/05/16 16:55, Satvinder Singh wrote:

I also am using a zk ensemble with 3 nodes on each side.

Thanks


Satvinder Singh



Security Systems Engineer
satvinder.si...@nc4.com
703.682.6000 x276 direct
703.989.8030 cell
www.NC4.com





?


-----Original Message-
From: Satvinder Singh [mailto:satvinder.si...@nc4.com]
Sent: Monday, May 16, 2016 11:54 AM
To: solr-user@lucene.apache.org
Subject: RE: Need Help with Solr 6.0 Cross Data Center Replication

Hi,

So the way I am doing it is, for both for the Target and Source side, I took a 
copy of the sample_techproducts_config configset, can created one configset. 
Then I modified the solrconfig.xml in there, both for the Target and Source 
side. And then created the collection, and I get the errors. I get the error if 
I create a new collection or try to reload an existing collection after the 
solrconfig update.
Attached is the log and configs.
Thanks

Satvinder Singh



Security Systems Engineer
satvinder.si...@nc4.com
703.682.6000 x276 direct
703.989.8030 cell
www.NC4.com





?


-Original Message-----
From: Renaud Delbru [mailto:renaud@siren.solutions]
Sent: Monday, May 16, 2016 11:45 AM
To: solr-user@lucene.apache.org
Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication

Hi,

Re: Need Help with Solr 6.0 Cross Data Center Replication

2016-06-07 Thread Satvinder Singh
Hi,

Any updates on this??

Thanks

Satvinder Singh
 
 
   
  Security Systems Engineer
satvinder.si...@nc4.com
804.744.9630  x273 direct
703.989.8030 cell



www.NC4.com <http://www.NC4.com>
   
   
  
  <https://www.linkedin.com/company/nc4>  
<https://plus.google.com/+Nc4worldwidesolutions/posts> 
<https://twitter.com/NC4worldwide>









On 5/19/16, 8:41 AM, "Satvinder Singh"  wrote:

>Hi,
>
>So this is what I did:
>
>I created solr as a service. Below are the steps I followed for that:--
>
>$ tar xzf solr-X.Y.Z.tgz solr-X.Y.Z/bin/install_solr_service.sh 
>--strip-components=2
>
>$ sudo bash ./install_solr_service.sh solr-X.Y.Z.tgz -i /opt/solr1 -d 
>/var/solr1 -u solr -s solr1 -p 8501
>$ sudo bash ./install_solr_service.sh solr-X.Y.Z.tgz -i /opt/solr2 -d 
>/var/solr2 -u solr -s solr2 -p 8502
>
>Then to start it in cloud I modified the solr1.cmd.in and solr2.cmd.in in 
>/etc/defaults/
>I added ZK_HOST=192.168.56.103:2181,192.168.56.103:2182,192.168.56.103:2183 
>(192.168.56.103 is where my 3 zookeeper instances are)
>
>Then I started the 2 solr services solr1 and solr2
>
>Then I created the configset
>/bin/solr zk -upconfig -z 
>192.168.56.103:2181,192.168.56.103:2182,192.168.56.103:2183 -n Liferay -d 
>server/solr/configsets/sample_techproducts_configs/conf
>
>Then I created the collection using:
>http://192.168.56.101:8501/solr/admin/collections?action=CREATE&name=dingdong&numShards=1&replicationFactor=2&collection.configName=liferay
>This created fine
>
>Then I deleted the solrconfig.xml from the zookeeper Liferay configset
>
>Then I uploaded the new solrconfig.xml to the configset. 
>
>When when I do a reload on the collections I get the error. Or I created a new 
>collection I get the error.
>
>Thanks
>
>Satvinder Singh
> 
> 
> 
>Security Systems Engineer
>satvinder.si...@nc4.com
>703.682.6000 x276 direct
>703.989.8030 cell
>www.NC4.com
> 
> 
>
>  
> 
>?
>
>
>-Original Message-
>From: Renaud Delbru [mailto:renaud@siren.solutions] 
>Sent: Thursday, May 19, 2016 7:13 AM
>To: solr-user@lucene.apache.org
>Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication
>
>I have reproduced your steps and the cdcr request handler started 
>successfully. I have attached to this mail the config sets I have used. 
>It is simply the sample_techproducts_config configset with your solrconfig.xml.
>
>I have used solr 6.0.0 with the following commands:
>
>$ ./bin/solr start -cloud
>
>$ ./bin/solr create_collection -c test_cdcr -d cdcr_configs
>
>Connecting to ZooKeeper at localhost:9983 ...
>Uploading /solr-6.0.0/server/solr/configsets/cdcr_configs/conf for config 
>test_cdcr to ZooKeeper at localhost:9983
>
>Creating new collection 'test_cdcr' using command:
>http://localhost:8983/solr/admin/collections?action=CREATE&name=test_cdcr&numShards=1&replicationFactor=1&maxShardsPerNode=1&collection.configName=test_cdcr
>
>{
>   "responseHeader":{
> "status":0,
> "QTime":5765},
>   "success":{"127.0.1.1:8983_solr":{
>   "responseHeader":{
> "status":0,
> "QTime":4426},
>   "core":"test_cdcr_shard1_replica1"}}}
>
>$ curl http://localhost:8983/solr/test_cdcr/cdcr?action=STATUS
>
>
>
>0name="QTime">3name="process">stoppedenabled 
>
>
>
>The difference is that I have used the embedded zookeeper, not a separate 
>ensemble.
>
>Could you please provide the commands you used to create the collection ?
>
>Kind Regards
>--
>Renaud Delbru
>
>On 16/05/16 16:55, Satvinder Singh wrote:
>> I also am using a zk ensemble with 3 nodes on each side.
>>
>> Thanks
>>
>>
>> Satvinder Singh
>>
>>
>>
>> Security Systems Engineer
>> satvinder.si...@nc4.com
>> 703.682.6000 x276 direct
>> 703.989.8030 cell
>> www.NC4.com
>>
>>
>>
>>
>>
>> ?
>>
>>
>> -Original Message-
>> From: Satvinder Singh [mailto:satvinder.si...@nc4.com]
>> Sent: Monday, May 16, 2016 11:54 AM
>> To: solr-user@lucene.apache.org
>> Subject: RE: Need Help with Solr 6.0 Cross Data Center Replication
>>
>> Hi,
>>
>> So the way I am doing it is, for both for the Target and Source side, I took 
>> a copy of the sample_techproducts_config configset, can created one 
>> configset. Then I modified the solrconfig.xml in there, both for the Target 
>>

Re: Need Help with Solr 6.0 Cross Data Center Replication

2016-05-19 Thread Abdel Belkasri
Hi Renaud,

I was not reloading the collection, but I just did. It didn't help.

The error is always the same:


   - *gettingstarted_shard1_replica2:*
org.apache.solr.common.SolrException:org.apache.solr.common.SolrException:
   Error Instantiating Update Handler, solr.DirectUpdateHandler2 failed to
   instantiate org.apache.solr.update.UpdateHandler


On Thu, May 19, 2016 at 9:17 AM, Renaud Delbru 
wrote:

> Hi Abdel,
>
> have you reloaded the collection [1] after uploading the configuration to
> zookeeper ?
>
> [1]
> https://cwiki.apache.org/confluence/display/solr/Collections+API#CollectionsAPI-api2
>
> --
> Renaud Delbru
>
>
> On 16/05/16 17:29, Abdel Belkasri wrote:
>
>> Thanks Renaud.
>>
>> Here is my setup:
>>
>> 1- I have created 2 sites: Main (source) and DR (traget).
>> 2- Both sites are the same before configuring CDCR
>> 3- The collections (source and target) are created before configuring CDCR
>> 4- collections are created using interactive mode: accepting most defaults
>> except the ports (gettingstarted collection)
>> 5- I have a zookeeper ensemble too.
>> 6- I change the solrconfig.xml, then I upload using the command:
>> # upload configset to zookeeper
>> zkcli.bat -cmd upconfig -zkhost  localhost:2181 -confname gettingstarted
>> -solrhome C:\solr\solr-6-cloud\solr-6.0.0 -confdir
>> C:\solr\solr-6-cloud\solr-6.0.0\server\solr\configsets\basic_configs\conf
>>
>> Renaud can you send your confi files...
>>
>> Thanks,
>> --Abdel.
>>
>> On Mon, May 16, 2016 at 12:16 PM, Satvinder Singh <
>> satvinder.si...@nc4.com>
>> wrote:
>>
>> Thank you.
>>>
>>> To summarize this is what I have, all VMS running on Centos7 :
>>>
>>> Source Side
>>>  |___ 1 VM running 3 Zookeeper instances on port 2181, 2182 and
>>> 2183 (ZOOKEEPER 3.4.8)(Java 1.8.0_91)
>>>  |___ 1 VM running 2 solr 6.0 instances on port 8501, 8502 (Solr
>>> 6.0) (Java 1.8.0_91)
>>>  |___ sample_techproducts_config copied as 'liferay', and used to
>>> create collections, that is where I am
>>>   modifying the solrconfig.xml
>>>
>>>
>>> Target Side
>>>  |___ 1 VM running 3 Zookeeper instances on port 2181, 2182 and
>>> 2183 (ZOOKEEPER 3.4.8)(Java 1.8.0_91)
>>>  |___ 1 VM running 2 solr 6.0 instances on port 8501, 8502 (Solr
>>> 6.0) (Java 1.8.0_91)
>>>  |___ sample_techproducts_config copied as 'liferay', and used to
>>> create collections, that is where I am
>>>   modifying the solrconfig.xml
>>>
>>>
>>> Thanks
>>> Satvinder Singh
>>> Security Systems Engineer
>>> satvinder.si...@nc4.com
>>> 703.682.6000 x276 direct
>>> 703.989.8030 cell
>>> www.NC4.com
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> -Original Message-
>>> From: Renaud Delbru [mailto:renaud@siren.solutions]
>>> Sent: Monday, May 16, 2016 11:59 AM
>>> To: solr-user@lucene.apache.org
>>> Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication
>>>
>>> Thanks Satvinder,
>>> Tomorrow, I'll try to reproduce the issue with your steps and will let
>>> you
>>> know.
>>>
>>> Regards
>>> --
>>> Renaud Delbru
>>>
>>> On 16/05/16 16:53, Satvinder Singh wrote:
>>>
>>>> Hi,
>>>>
>>>> So the way I am doing it is, for both for the Target and Source side, I
>>>>
>>> took a copy of the sample_techproducts_config configset, can created one
>>> configset. Then I modified the solrconfig.xml in there, both for the
>>> Target
>>> and Source side. And then created the collection, and I get the errors. I
>>> get the error if I create a new collection or try to reload an existing
>>> collection after the solrconfig update.
>>>
>>>> Attached is the log and configs.
>>>> Thanks
>>>>
>>>> Satvinder Singh
>>>>
>>>>
>>>>
>>>> Security Systems Engineer
>>>> satvinder.si...@nc4.com
>>>> 703.682.6000 x276 direct
>>>> 703.989.8030 cell
>>>> www.NC4.com
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> -Original Message-
>>>> From: Renaud Delbru [mailto:renau

Re: Need Help with Solr 6.0 Cross Data Center Replication

2016-05-19 Thread Abdel Belkasri
Thanks Renaud.

For me I did this:

1) I created solr cloud using the interactive mode (accepting most default):
$ bin/solr -e cloud

I do that for both the DataCenter1 (DC1) and DataCenter2 (DC2) (in fact
both are on the same machine, just different ports)
By now both clouds have a collection called gettingstarted, each cloud has
2 nodes, 2 shards

2) Each dc is using an ensemble of 3 zookeepers

3) I used the basic config that comes with the install and I upload
configset to zookeeper using:
zkcli.bat -cmd upconfig -zkhost  localhost:2181 -confname gettingstarted
-solrhome C:\solr\solr-6-cloud\solr-6.0.0 -confdir
C:\solr\solr-6-cloud\solr-6.0.0\server\solr\configsets\basic_configs\conf

4) I tested the sites both works fine

5) Then I shut them all (except the zookeepers)

6) change the solrconfig.xml for DC1 to be source

7) change the solrconfig.xml for DC2 to be destination

8) I upload the confg again (update) to zookepper using command in 3

9) then start the 2 clouds using:
# start node 1
solr.cmd start -cloud -p 8985 -s
"C:\solr\solr-6-cloud\solr-6.0.0-dr\example\cloud\node1\solr" -z
localhost:3181
# start node 2
solr.cmd start -cloud -p 7575 -s
"C:\solr\solr-6-cloud\solr-6.0.0-dr\example\cloud\node2\solr" -z
localhost:3181

10) do the same for DC2

The clouds both throw that error about update log that we started with


A Question at what time you enable CDCR ?

Best Regards,
--Abdel.




On Thu, May 19, 2016 at 7:12 AM, Renaud Delbru 
wrote:

> I have reproduced your steps and the cdcr request handler started
> successfully. I have attached to this mail the config sets I have used. It
> is simply the sample_techproducts_config configset with your solrconfig.xml.
>
> I have used solr 6.0.0 with the following commands:
>
> $ ./bin/solr start -cloud
>
> $ ./bin/solr create_collection -c test_cdcr -d cdcr_configs
>
> Connecting to ZooKeeper at localhost:9983 ...
> Uploading /solr-6.0.0/server/solr/configsets/cdcr_configs/conf for config
> test_cdcr to ZooKeeper at localhost:9983
>
> Creating new collection 'test_cdcr' using command:
>
> http://localhost:8983/solr/admin/collections?action=CREATE&name=test_cdcr&numShards=1&replicationFactor=1&maxShardsPerNode=1&collection.configName=test_cdcr
>
> {
>   "responseHeader":{
> "status":0,
> "QTime":5765},
>   "success":{"127.0.1.1:8983_solr":{
>   "responseHeader":{
> "status":0,
> "QTime":4426},
>   "core":"test_cdcr_shard1_replica1"}}}
>
> $ curl http://localhost:8983/solr/test_cdcr/cdcr?action=STATUS
>
> 
> 
> 0 name="QTime">3 name="process">stoppedenabled
> 
>
>
>
> The difference is that I have used the embedded zookeeper, not a separate
> ensemble.
>
> Could you please provide the commands you used to create the collection ?
>
> Kind Regards
> --
> Renaud Delbru
>
>
> On 16/05/16 16:55, Satvinder Singh wrote:
>
>> I also am using a zk ensemble with 3 nodes on each side.
>>
>> Thanks
>>
>>
>> Satvinder Singh
>>
>>
>>
>> Security Systems Engineer
>> satvinder.si...@nc4.com
>> 703.682.6000 x276 direct
>> 703.989.8030 cell
>> www.NC4.com
>>
>>
>>
>>
>>
>>
>>
>> -Original Message-
>> From: Satvinder Singh [mailto:satvinder.si...@nc4.com]
>> Sent: Monday, May 16, 2016 11:54 AM
>> To: solr-user@lucene.apache.org
>> Subject: RE: Need Help with Solr 6.0 Cross Data Center Replication
>>
>> Hi,
>>
>> So the way I am doing it is, for both for the Target and Source side, I
>> took a copy of the sample_techproducts_config configset, can created one
>> configset. Then I modified the solrconfig.xml in there, both for the Target
>> and Source side. And then created the collection, and I get the errors. I
>> get the error if I create a new collection or try to reload an existing
>> collection after the solrconfig update.
>> Attached is the log and configs.
>> Thanks
>>
>> Satvinder Singh
>>
>>
>>
>> Security Systems Engineer
>> satvinder.si...@nc4.com
>> 703.682.6000 x276 direct
>> 703.989.8030 cell
>> www.NC4.com
>>
>>
>>
>>
>>
>>
>>
>> -Original Message-
>> From: Renaud Delbru [mailto:renaud@siren.solutions]
>> Sent: Monday, May 16, 2016 11:45 AM
>> To: solr-user@lucene.apache.org
>> Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication
>>
>> Hi,
>>
>> I have tried to reproduce the problem, but was unable t

Re: Need Help with Solr 6.0 Cross Data Center Replication

2016-05-19 Thread Renaud Delbru

Hi Abdel,

have you reloaded the collection [1] after uploading the configuration 
to zookeeper ?


[1] 
https://cwiki.apache.org/confluence/display/solr/Collections+API#CollectionsAPI-api2


--
Renaud Delbru

On 16/05/16 17:29, Abdel Belkasri wrote:

Thanks Renaud.

Here is my setup:

1- I have created 2 sites: Main (source) and DR (traget).
2- Both sites are the same before configuring CDCR
3- The collections (source and target) are created before configuring CDCR
4- collections are created using interactive mode: accepting most defaults
except the ports (gettingstarted collection)
5- I have a zookeeper ensemble too.
6- I change the solrconfig.xml, then I upload using the command:
# upload configset to zookeeper
zkcli.bat -cmd upconfig -zkhost  localhost:2181 -confname gettingstarted
-solrhome C:\solr\solr-6-cloud\solr-6.0.0 -confdir
C:\solr\solr-6-cloud\solr-6.0.0\server\solr\configsets\basic_configs\conf

Renaud can you send your confi files...

Thanks,
--Abdel.

On Mon, May 16, 2016 at 12:16 PM, Satvinder Singh 
wrote:


Thank you.

To summarize this is what I have, all VMS running on Centos7 :

Source Side
 |___ 1 VM running 3 Zookeeper instances on port 2181, 2182 and
2183 (ZOOKEEPER 3.4.8)(Java 1.8.0_91)
 |___ 1 VM running 2 solr 6.0 instances on port 8501, 8502 (Solr
6.0) (Java 1.8.0_91)
 |___ sample_techproducts_config copied as 'liferay', and used to
create collections, that is where I am
  modifying the solrconfig.xml


Target Side
 |___ 1 VM running 3 Zookeeper instances on port 2181, 2182 and
2183 (ZOOKEEPER 3.4.8)(Java 1.8.0_91)
 |___ 1 VM running 2 solr 6.0 instances on port 8501, 8502 (Solr
6.0) (Java 1.8.0_91)
 |___ sample_techproducts_config copied as 'liferay', and used to
create collections, that is where I am
  modifying the solrconfig.xml


Thanks
Satvinder Singh
Security Systems Engineer
satvinder.si...@nc4.com
703.682.6000 x276 direct
703.989.8030 cell
www.NC4.com








-Original Message-
From: Renaud Delbru [mailto:renaud@siren.solutions]
Sent: Monday, May 16, 2016 11:59 AM
To: solr-user@lucene.apache.org
Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication

Thanks Satvinder,
Tomorrow, I'll try to reproduce the issue with your steps and will let you
know.

Regards
--
Renaud Delbru

On 16/05/16 16:53, Satvinder Singh wrote:

Hi,

So the way I am doing it is, for both for the Target and Source side, I

took a copy of the sample_techproducts_config configset, can created one
configset. Then I modified the solrconfig.xml in there, both for the Target
and Source side. And then created the collection, and I get the errors. I
get the error if I create a new collection or try to reload an existing
collection after the solrconfig update.

Attached is the log and configs.
Thanks

Satvinder Singh



Security Systems Engineer
satvinder.si...@nc4.com
703.682.6000 x276 direct
703.989.8030 cell
www.NC4.com








-Original Message-
From: Renaud Delbru [mailto:renaud@siren.solutions]
Sent: Monday, May 16, 2016 11:45 AM
To: solr-user@lucene.apache.org
Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication

Hi,

I have tried to reproduce the problem, but was unable to.
I have downloaded the Solr 6.0 distribution, added to the solr config

the cdcr request handler and modified the update handler to register the
CdcrUpdateLog, then start Solr in cloud mode and created a new collection
using my solr config. The cdcr request handler starts properly and does not
complain about the update log.


Could you provide more background on how to reproduce the issue ? E.g.,

how do you create a new collection with the cdcr configuration.

Are you trying to configure CDCR on collections that were created prior

to the CDCR configuration ?


@Erik: I have noticed a small issue in the CDCR page of the reference

guide. In the code snippet in Configuration -> Source Configuration, the
 element is nested within the .


Thanks
Regards
--
Renaud Delbru

On 15/05/16 23:13, Abdel Belkasri wrote:

Erick,

I tried the new configuration. The same issue that Satvinder is
having. The log updater cannot be instantiated...

class="solr.CdcrUpdateLog"

for some reason that class is causing a problem!

Anyway, anyone has a config that works?

Regards,
--Abdel

On Fri, May 13, 2016 at 11:57 AM, Erick Erickson

wrote:


I changed the CDCR doc, Oliver could you take a glance and see if it
is clear now? All I changed was the sample solrconfig sections

https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=626
8
7462

Thanks,
Erick

On Fri, May 13, 2016 at 6:23 AM, Oliver Rudolph
 wrote:

Hi,

I had the same problem. The documentation is kind of missleading here.

You

must not add a new  element to your config but
update the existing . All you need to do is add the
class="solr.CdcrUpdateLog" element to the  element
inside your existing . Hope this helps!


Mit freundl

RE: Need Help with Solr 6.0 Cross Data Center Replication

2016-05-19 Thread Satvinder Singh
Hi,

So this is what I did:

I created solr as a service. Below are the steps I followed for that:--

$ tar xzf solr-X.Y.Z.tgz solr-X.Y.Z/bin/install_solr_service.sh 
--strip-components=2

$ sudo bash ./install_solr_service.sh solr-X.Y.Z.tgz -i /opt/solr1 -d 
/var/solr1 -u solr -s solr1 -p 8501
$ sudo bash ./install_solr_service.sh solr-X.Y.Z.tgz -i /opt/solr2 -d 
/var/solr2 -u solr -s solr2 -p 8502

Then to start it in cloud I modified the solr1.cmd.in and solr2.cmd.in in 
/etc/defaults/
I added ZK_HOST=192.168.56.103:2181,192.168.56.103:2182,192.168.56.103:2183 
(192.168.56.103 is where my 3 zookeeper instances are)

Then I started the 2 solr services solr1 and solr2

Then I created the configset
/bin/solr zk -upconfig -z 
192.168.56.103:2181,192.168.56.103:2182,192.168.56.103:2183 -n Liferay -d 
server/solr/configsets/sample_techproducts_configs/conf

Then I created the collection using:
http://192.168.56.101:8501/solr/admin/collections?action=CREATE&name=dingdong&numShards=1&replicationFactor=2&collection.configName=liferay
This created fine

Then I deleted the solrconfig.xml from the zookeeper Liferay configset

Then I uploaded the new solrconfig.xml to the configset. 

When when I do a reload on the collections I get the error. Or I created a new 
collection I get the error.

Thanks

Satvinder Singh
 
 
 
Security Systems Engineer
satvinder.si...@nc4.com
703.682.6000 x276 direct
703.989.8030 cell
www.NC4.com
 
 

  
 



-Original Message-
From: Renaud Delbru [mailto:renaud@siren.solutions] 
Sent: Thursday, May 19, 2016 7:13 AM
To: solr-user@lucene.apache.org
Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication

I have reproduced your steps and the cdcr request handler started successfully. 
I have attached to this mail the config sets I have used. 
It is simply the sample_techproducts_config configset with your solrconfig.xml.

I have used solr 6.0.0 with the following commands:

$ ./bin/solr start -cloud

$ ./bin/solr create_collection -c test_cdcr -d cdcr_configs

Connecting to ZooKeeper at localhost:9983 ...
Uploading /solr-6.0.0/server/solr/configsets/cdcr_configs/conf for config 
test_cdcr to ZooKeeper at localhost:9983

Creating new collection 'test_cdcr' using command:
http://localhost:8983/solr/admin/collections?action=CREATE&name=test_cdcr&numShards=1&replicationFactor=1&maxShardsPerNode=1&collection.configName=test_cdcr

{
   "responseHeader":{
 "status":0,
 "QTime":5765},
   "success":{"127.0.1.1:8983_solr":{
   "responseHeader":{
 "status":0,
 "QTime":4426},
   "core":"test_cdcr_shard1_replica1"}}}

$ curl http://localhost:8983/solr/test_cdcr/cdcr?action=STATUS



03stoppedenabled 



The difference is that I have used the embedded zookeeper, not a separate 
ensemble.

Could you please provide the commands you used to create the collection ?

Kind Regards
--
Renaud Delbru

On 16/05/16 16:55, Satvinder Singh wrote:
> I also am using a zk ensemble with 3 nodes on each side.
>
> Thanks
>
>
> Satvinder Singh
>
>
>
> Security Systems Engineer
> satvinder.si...@nc4.com
> 703.682.6000 x276 direct
> 703.989.8030 cell
> www.NC4.com
>
>
>
>
>
> 
>
>
> -Original Message-
> From: Satvinder Singh [mailto:satvinder.si...@nc4.com]
> Sent: Monday, May 16, 2016 11:54 AM
> To: solr-user@lucene.apache.org
> Subject: RE: Need Help with Solr 6.0 Cross Data Center Replication
>
> Hi,
>
> So the way I am doing it is, for both for the Target and Source side, I took 
> a copy of the sample_techproducts_config configset, can created one 
> configset. Then I modified the solrconfig.xml in there, both for the Target 
> and Source side. And then created the collection, and I get the errors. I get 
> the error if I create a new collection or try to reload an existing 
> collection after the solrconfig update.
> Attached is the log and configs.
> Thanks
>
> Satvinder Singh
>
>
>
> Security Systems Engineer
> satvinder.si...@nc4.com
> 703.682.6000 x276 direct
> 703.989.8030 cell
> www.NC4.com
>
>
>
>
>
> 
>
>
> -Original Message-
> From: Renaud Delbru [mailto:renaud@siren.solutions]
> Sent: Monday, May 16, 2016 11:45 AM
> To: solr-user@lucene.apache.org
> Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication
>
> Hi,
>
> I have tried to reproduce the problem, but was unable to.
> I have downloaded the Solr 6.0 distribution, added to the solr config the 
> cdcr request handler and modified the update handler to register the 
> CdcrUpdateLog, then start Solr in cloud mode and created a new collection 
> using my solr config. The cdcr request handler starts properly and does not 
> co

Re: Need Help with Solr 6.0 Cross Data Center Replication

2016-05-16 Thread Abdel Belkasri
Thanks Renaud.

Here is my setup:

1- I have created 2 sites: Main (source) and DR (traget).
2- Both sites are the same before configuring CDCR
3- The collections (source and target) are created before configuring CDCR
4- collections are created using interactive mode: accepting most defaults
except the ports (gettingstarted collection)
5- I have a zookeeper ensemble too.
6- I change the solrconfig.xml, then I upload using the command:
# upload configset to zookeeper
zkcli.bat -cmd upconfig -zkhost  localhost:2181 -confname gettingstarted
-solrhome C:\solr\solr-6-cloud\solr-6.0.0 -confdir
C:\solr\solr-6-cloud\solr-6.0.0\server\solr\configsets\basic_configs\conf

Renaud can you send your confi files...

Thanks,
--Abdel.

On Mon, May 16, 2016 at 12:16 PM, Satvinder Singh 
wrote:

> Thank you.
>
> To summarize this is what I have, all VMS running on Centos7 :
>
> Source Side
> |___ 1 VM running 3 Zookeeper instances on port 2181, 2182 and
> 2183 (ZOOKEEPER 3.4.8)(Java 1.8.0_91)
> |___ 1 VM running 2 solr 6.0 instances on port 8501, 8502 (Solr
> 6.0) (Java 1.8.0_91)
> |___ sample_techproducts_config copied as 'liferay', and used to
> create collections, that is where I am
>  modifying the solrconfig.xml
>
>
> Target Side
> |___ 1 VM running 3 Zookeeper instances on port 2181, 2182 and
> 2183 (ZOOKEEPER 3.4.8)(Java 1.8.0_91)
> |___ 1 VM running 2 solr 6.0 instances on port 8501, 8502 (Solr
> 6.0) (Java 1.8.0_91)
> |___ sample_techproducts_config copied as 'liferay', and used to
> create collections, that is where I am
>  modifying the solrconfig.xml
>
>
> Thanks
> Satvinder Singh
> Security Systems Engineer
> satvinder.si...@nc4.com
> 703.682.6000 x276 direct
> 703.989.8030 cell
> www.NC4.com
>
>
>
>
>
>
>
>
> -Original Message-
> From: Renaud Delbru [mailto:renaud@siren.solutions]
> Sent: Monday, May 16, 2016 11:59 AM
> To: solr-user@lucene.apache.org
> Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication
>
> Thanks Satvinder,
> Tomorrow, I'll try to reproduce the issue with your steps and will let you
> know.
>
> Regards
> --
> Renaud Delbru
>
> On 16/05/16 16:53, Satvinder Singh wrote:
> > Hi,
> >
> > So the way I am doing it is, for both for the Target and Source side, I
> took a copy of the sample_techproducts_config configset, can created one
> configset. Then I modified the solrconfig.xml in there, both for the Target
> and Source side. And then created the collection, and I get the errors. I
> get the error if I create a new collection or try to reload an existing
> collection after the solrconfig update.
> > Attached is the log and configs.
> > Thanks
> >
> > Satvinder Singh
> >
> >
> >
> > Security Systems Engineer
> > satvinder.si...@nc4.com
> > 703.682.6000 x276 direct
> > 703.989.8030 cell
> > www.NC4.com
> >
> >
> >
> >
> >
> >
> >
> >
> > -Original Message-
> > From: Renaud Delbru [mailto:renaud@siren.solutions]
> > Sent: Monday, May 16, 2016 11:45 AM
> > To: solr-user@lucene.apache.org
> > Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication
> >
> > Hi,
> >
> > I have tried to reproduce the problem, but was unable to.
> > I have downloaded the Solr 6.0 distribution, added to the solr config
> the cdcr request handler and modified the update handler to register the
> CdcrUpdateLog, then start Solr in cloud mode and created a new collection
> using my solr config. The cdcr request handler starts properly and does not
> complain about the update log.
> >
> > Could you provide more background on how to reproduce the issue ? E.g.,
> how do you create a new collection with the cdcr configuration.
> > Are you trying to configure CDCR on collections that were created prior
> to the CDCR configuration ?
> >
> > @Erik: I have noticed a small issue in the CDCR page of the reference
> guide. In the code snippet in Configuration -> Source Configuration, the
>  element is nested within the .
> >
> > Thanks
> > Regards
> > --
> > Renaud Delbru
> >
> > On 15/05/16 23:13, Abdel Belkasri wrote:
> >> Erick,
> >>
> >> I tried the new configuration. The same issue that Satvinder is
> >> having. The log updater cannot be instantiated...
> >>
> >> class="solr.CdcrUpdateLog"
> >>
> >> for some reason that class is causing a problem!
> >>
> >> Anyway, anyone has a config that works?
> >>
> >> Regards,
> >> --Ab

RE: Need Help with Solr 6.0 Cross Data Center Replication

2016-05-16 Thread Satvinder Singh
Thank you.

To summarize this is what I have, all VMS running on Centos7 :

Source Side 
|___ 1 VM running 3 Zookeeper instances on port 2181, 2182 and 2183 
(ZOOKEEPER 3.4.8)(Java 1.8.0_91)
|___ 1 VM running 2 solr 6.0 instances on port 8501, 8502 (Solr 6.0) 
(Java 1.8.0_91)
|___ sample_techproducts_config copied as 'liferay', and used to create 
collections, that is where I am modifying the 
solrconfig.xml


Target Side 
|___ 1 VM running 3 Zookeeper instances on port 2181, 2182 and 2183 
(ZOOKEEPER 3.4.8)(Java 1.8.0_91)
|___ 1 VM running 2 solr 6.0 instances on port 8501, 8502 (Solr 6.0) 
(Java 1.8.0_91)
|___ sample_techproducts_config copied as 'liferay', and used to create 
collections, that is where I am modifying the 
solrconfig.xml


Thanks
Satvinder Singh 
Security Systems Engineer
satvinder.si...@nc4.com
703.682.6000 x276 direct
703.989.8030 cell
www.NC4.com
 
 

  
 



-Original Message-
From: Renaud Delbru [mailto:renaud@siren.solutions] 
Sent: Monday, May 16, 2016 11:59 AM
To: solr-user@lucene.apache.org
Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication

Thanks Satvinder,
Tomorrow, I'll try to reproduce the issue with your steps and will let you know.

Regards
--
Renaud Delbru

On 16/05/16 16:53, Satvinder Singh wrote:
> Hi,
>
> So the way I am doing it is, for both for the Target and Source side, I took 
> a copy of the sample_techproducts_config configset, can created one 
> configset. Then I modified the solrconfig.xml in there, both for the Target 
> and Source side. And then created the collection, and I get the errors. I get 
> the error if I create a new collection or try to reload an existing 
> collection after the solrconfig update.
> Attached is the log and configs.
> Thanks
>
> Satvinder Singh
>
>
>
> Security Systems Engineer
> satvinder.si...@nc4.com
> 703.682.6000 x276 direct
> 703.989.8030 cell
> www.NC4.com
>
>
>
>
>
> 
>
>
> -Original Message-
> From: Renaud Delbru [mailto:renaud@siren.solutions]
> Sent: Monday, May 16, 2016 11:45 AM
> To: solr-user@lucene.apache.org
> Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication
>
> Hi,
>
> I have tried to reproduce the problem, but was unable to.
> I have downloaded the Solr 6.0 distribution, added to the solr config the 
> cdcr request handler and modified the update handler to register the 
> CdcrUpdateLog, then start Solr in cloud mode and created a new collection 
> using my solr config. The cdcr request handler starts properly and does not 
> complain about the update log.
>
> Could you provide more background on how to reproduce the issue ? E.g., how 
> do you create a new collection with the cdcr configuration.
> Are you trying to configure CDCR on collections that were created prior to 
> the CDCR configuration ?
>
> @Erik: I have noticed a small issue in the CDCR page of the reference guide. 
> In the code snippet in Configuration -> Source Configuration, the 
>  element is nested within the .
>
> Thanks
> Regards
> --
> Renaud Delbru
>
> On 15/05/16 23:13, Abdel Belkasri wrote:
>> Erick,
>>
>> I tried the new configuration. The same issue that Satvinder is 
>> having. The log updater cannot be instantiated...
>>
>> class="solr.CdcrUpdateLog"
>>
>> for some reason that class is causing a problem!
>>
>> Anyway, anyone has a config that works?
>>
>> Regards,
>> --Abdel
>>
>> On Fri, May 13, 2016 at 11:57 AM, Erick Erickson 
>> 
>> wrote:
>>
>>> I changed the CDCR doc, Oliver could you take a glance and see if it 
>>> is clear now? All I changed was the sample solrconfig sections
>>>
>>> https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=626
>>> 8
>>> 7462
>>>
>>> Thanks,
>>> Erick
>>>
>>> On Fri, May 13, 2016 at 6:23 AM, Oliver Rudolph 
>>>  wrote:
>>>> Hi,
>>>>
>>>> I had the same problem. The documentation is kind of missleading here.
>>> You
>>>> must not add a new  element to your config but 
>>>> update the existing . All you need to do is add the 
>>>> class="solr.CdcrUpdateLog" element to the  element 
>>>> inside your existing . Hope this helps!
>>>>
>>>>
>>>> Mit freundlichen Grüßen / Kind regards
>>>>
>>>> Oliver Rudolph
>>>>
>>>> IBM Deutschland Research & Development GmbH Vorsitzender des
>>>> Aufsichtsrats: Martina Koe

Re: Need Help with Solr 6.0 Cross Data Center Replication

2016-05-16 Thread Renaud Delbru

Thanks Satvinder,
Tomorrow, I'll try to reproduce the issue with your steps and will let 
you know.


Regards
--
Renaud Delbru

On 16/05/16 16:53, Satvinder Singh wrote:

Hi,

So the way I am doing it is, for both for the Target and Source side, I took a 
copy of the sample_techproducts_config configset, can created one configset. 
Then I modified the solrconfig.xml in there, both for the Target and Source 
side. And then created the collection, and I get the errors. I get the error if 
I create a new collection or try to reload an existing collection after the 
solrconfig update.
Attached is the log and configs.
Thanks

Satvinder Singh



Security Systems Engineer
satvinder.si...@nc4.com
703.682.6000 x276 direct
703.989.8030 cell
www.NC4.com








-Original Message-
From: Renaud Delbru [mailto:renaud@siren.solutions]
Sent: Monday, May 16, 2016 11:45 AM
To: solr-user@lucene.apache.org
Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication

Hi,

I have tried to reproduce the problem, but was unable to.
I have downloaded the Solr 6.0 distribution, added to the solr config the cdcr 
request handler and modified the update handler to register the CdcrUpdateLog, 
then start Solr in cloud mode and created a new collection using my solr 
config. The cdcr request handler starts properly and does not complain about 
the update log.

Could you provide more background on how to reproduce the issue ? E.g., how do 
you create a new collection with the cdcr configuration.
Are you trying to configure CDCR on collections that were created prior to the 
CDCR configuration ?

@Erik: I have noticed a small issue in the CDCR page of the reference guide. In the code 
snippet in Configuration -> Source Configuration, the  element is 
nested within the .

Thanks
Regards
--
Renaud Delbru

On 15/05/16 23:13, Abdel Belkasri wrote:

Erick,

I tried the new configuration. The same issue that Satvinder is
having. The log updater cannot be instantiated...

class="solr.CdcrUpdateLog"

for some reason that class is causing a problem!

Anyway, anyone has a config that works?

Regards,
--Abdel

On Fri, May 13, 2016 at 11:57 AM, Erick Erickson

wrote:


I changed the CDCR doc, Oliver could you take a glance and see if it
is clear now? All I changed was the sample solrconfig sections

https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=6268
7462

Thanks,
Erick

On Fri, May 13, 2016 at 6:23 AM, Oliver Rudolph
 wrote:

Hi,

I had the same problem. The documentation is kind of missleading here.

You

must not add a new  element to your config but update
the existing . All you need to do is add the
class="solr.CdcrUpdateLog" element to the  element inside
your existing . Hope this helps!


Mit freundlichen Grüßen / Kind regards

Oliver Rudolph

IBM Deutschland Research & Development GmbH Vorsitzender des
Aufsichtsrats: Martina Koederitz
Geschäftsführung: Dirk Wittkopp
Sitz der Gesellschaft: Böblingen / Registergericht: Amtsgericht

Stuttgart,

HRB 243294













Disclaimer: This message is intended only for the use of the individual or 
entity to which it is addressed and may contain information which is 
privileged, confidential, proprietary, or exempt from disclosure under 
applicable law. If you are not the intended recipient or the person responsible 
for delivering the message to the intended recipient, you are strictly 
prohibited from disclosing, distributing, copying, or in any way using this 
message. If you have received this communication in error, please notify the 
sender and destroy and delete any copies you may have received.





RE: Need Help with Solr 6.0 Cross Data Center Replication

2016-05-16 Thread Satvinder Singh
I also am using a zk ensemble with 3 nodes on each side.

Thanks


Satvinder Singh
 
 
 
Security Systems Engineer
satvinder.si...@nc4.com
703.682.6000 x276 direct
703.989.8030 cell
www.NC4.com
 
 

  
 



-Original Message-
From: Satvinder Singh [mailto:satvinder.si...@nc4.com] 
Sent: Monday, May 16, 2016 11:54 AM
To: solr-user@lucene.apache.org
Subject: RE: Need Help with Solr 6.0 Cross Data Center Replication

Hi,

So the way I am doing it is, for both for the Target and Source side, I took a 
copy of the sample_techproducts_config configset, can created one configset. 
Then I modified the solrconfig.xml in there, both for the Target and Source 
side. And then created the collection, and I get the errors. I get the error if 
I create a new collection or try to reload an existing collection after the 
solrconfig update.
Attached is the log and configs.
Thanks

Satvinder Singh



Security Systems Engineer
satvinder.si...@nc4.com
703.682.6000 x276 direct
703.989.8030 cell
www.NC4.com








-Original Message-
From: Renaud Delbru [mailto:renaud@siren.solutions]
Sent: Monday, May 16, 2016 11:45 AM
To: solr-user@lucene.apache.org
Subject: Re: Need Help with Solr 6.0 Cross Data Center Replication

Hi,

I have tried to reproduce the problem, but was unable to.
I have downloaded the Solr 6.0 distribution, added to the solr config the cdcr 
request handler and modified the update handler to register the CdcrUpdateLog, 
then start Solr in cloud mode and created a new collection using my solr 
config. The cdcr request handler starts properly and does not complain about 
the update log.

Could you provide more background on how to reproduce the issue ? E.g., how do 
you create a new collection with the cdcr configuration.
Are you trying to configure CDCR on collections that were created prior to the 
CDCR configuration ?

@Erik: I have noticed a small issue in the CDCR page of the reference guide. In 
the code snippet in Configuration -> Source Configuration, the  
element is nested within the .

Thanks
Regards
--
Renaud Delbru

On 15/05/16 23:13, Abdel Belkasri wrote:
> Erick,
>
> I tried the new configuration. The same issue that Satvinder is 
> having. The log updater cannot be instantiated...
>
> class="solr.CdcrUpdateLog"
>
> for some reason that class is causing a problem!
>
> Anyway, anyone has a config that works?
>
> Regards,
> --Abdel
>
> On Fri, May 13, 2016 at 11:57 AM, Erick Erickson 
> 
> wrote:
>
>> I changed the CDCR doc, Oliver could you take a glance and see if it 
>> is clear now? All I changed was the sample solrconfig sections
>>
>> https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=6268
>> 7462
>>
>> Thanks,
>> Erick
>>
>> On Fri, May 13, 2016 at 6:23 AM, Oliver Rudolph 
>>  wrote:
>>> Hi,
>>>
>>> I had the same problem. The documentation is kind of missleading here.
>> You
>>> must not add a new  element to your config but update 
>>> the existing . All you need to do is add the 
>>> class="solr.CdcrUpdateLog" element to the  element inside 
>>> your existing . Hope this helps!
>>>
>>>
>>> Mit freundlichen Grüßen / Kind regards
>>>
>>> Oliver Rudolph
>>>
>>> IBM Deutschland Research & Development GmbH Vorsitzender des
>>> Aufsichtsrats: Martina Koederitz
>>> Geschäftsführung: Dirk Wittkopp
>>> Sitz der Gesellschaft: Böblingen / Registergericht: Amtsgericht
>> Stuttgart,
>>> HRB 243294
>>>
>>>
>>>
>>>
>>>
>>
>
>
>

Disclaimer: This message is intended only for the use of the individual or 
entity to which it is addressed and may contain information which is 
privileged, confidential, proprietary, or exempt from disclosure under 
applicable law. If you are not the intended recipient or the person responsible 
for delivering the message to the intended recipient, you are strictly 
prohibited from disclosing, distributing, copying, or in any way using this 
message. If you have received this communication in error, please notify the 
sender and destroy and delete any copies you may have received.


Re: Need Help with Solr 6.0 Cross Data Center Replication

2016-05-16 Thread Erick Erickson
Thanks Renaud, fixed.

On Mon, May 16, 2016 at 8:45 AM, Renaud Delbru  wrote:
> Hi,
>
> I have tried to reproduce the problem, but was unable to.
> I have downloaded the Solr 6.0 distribution, added to the solr config the
> cdcr request handler and modified the update handler to register the
> CdcrUpdateLog, then start Solr in cloud mode and created a new collection
> using my solr config. The cdcr request handler starts properly and does not
> complain about the update log.
>
> Could you provide more background on how to reproduce the issue ? E.g., how
> do you create a new collection with the cdcr configuration.
> Are you trying to configure CDCR on collections that were created prior to
> the CDCR configuration ?
>
> @Erik: I have noticed a small issue in the CDCR page of the reference guide.
> In the code snippet in Configuration -> Source Configuration, the
>  element is nested within the .
>
> Thanks
> Regards
> --
> Renaud Delbru
>
>
> On 15/05/16 23:13, Abdel Belkasri wrote:
>>
>> Erick,
>>
>> I tried the new configuration. The same issue that Satvinder is having.
>> The
>> log updater cannot be instantiated...
>>
>> class="solr.CdcrUpdateLog"
>>
>> for some reason that class is causing a problem!
>>
>> Anyway, anyone has a config that works?
>>
>> Regards,
>> --Abdel
>>
>> On Fri, May 13, 2016 at 11:57 AM, Erick Erickson 
>> wrote:
>>
>>> I changed the CDCR doc, Oliver could you take a glance and see if it
>>> is clear now? All I changed was the sample solrconfig sections
>>>
>>> https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=62687462
>>>
>>> Thanks,
>>> Erick
>>>
>>> On Fri, May 13, 2016 at 6:23 AM, Oliver Rudolph
>>>  wrote:

 Hi,

 I had the same problem. The documentation is kind of missleading here.
>>>
>>> You

 must not add a new  element to your config but update the
 existing . All you need to do is add the
 class="solr.CdcrUpdateLog" element to the  element inside
 your
 existing . Hope this helps!


 Mit freundlichen Grüßen / Kind regards

 Oliver Rudolph

 IBM Deutschland Research & Development GmbH
 Vorsitzender des Aufsichtsrats: Martina Koederitz
 Geschäftsführung: Dirk Wittkopp
 Sitz der Gesellschaft: Böblingen / Registergericht: Amtsgericht
>>>
>>> Stuttgart,

 HRB 243294





>>>
>>
>>
>>
>


Re: Need Help with Solr 6.0 Cross Data Center Replication

2016-05-16 Thread Renaud Delbru

Hi,

I have tried to reproduce the problem, but was unable to.
I have downloaded the Solr 6.0 distribution, added to the solr config 
the cdcr request handler and modified the update handler to register the 
CdcrUpdateLog, then start Solr in cloud mode and created a new 
collection using my solr config. The cdcr request handler starts 
properly and does not complain about the update log.


Could you provide more background on how to reproduce the issue ? E.g., 
how do you create a new collection with the cdcr configuration.
Are you trying to configure CDCR on collections that were created prior 
to the CDCR configuration ?


@Erik: I have noticed a small issue in the CDCR page of the reference 
guide. In the code snippet in Configuration -> Source Configuration, the 
 element is nested within the .


Thanks
Regards
--
Renaud Delbru

On 15/05/16 23:13, Abdel Belkasri wrote:

Erick,

I tried the new configuration. The same issue that Satvinder is having. The
log updater cannot be instantiated...

class="solr.CdcrUpdateLog"

for some reason that class is causing a problem!

Anyway, anyone has a config that works?

Regards,
--Abdel

On Fri, May 13, 2016 at 11:57 AM, Erick Erickson 
wrote:


I changed the CDCR doc, Oliver could you take a glance and see if it
is clear now? All I changed was the sample solrconfig sections

https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=62687462

Thanks,
Erick

On Fri, May 13, 2016 at 6:23 AM, Oliver Rudolph
 wrote:

Hi,

I had the same problem. The documentation is kind of missleading here.

You

must not add a new  element to your config but update the
existing . All you need to do is add the
class="solr.CdcrUpdateLog" element to the  element inside your
existing . Hope this helps!


Mit freundlichen Grüßen / Kind regards

Oliver Rudolph

IBM Deutschland Research & Development GmbH
Vorsitzender des Aufsichtsrats: Martina Koederitz
Geschäftsführung: Dirk Wittkopp
Sitz der Gesellschaft: Böblingen / Registergericht: Amtsgericht

Stuttgart,

HRB 243294















Re: Need Help with Solr 6.0 Cross Data Center Replication

2016-05-15 Thread Abdel Belkasri
Erick,

I tried the new configuration. The same issue that Satvinder is having. The
log updater cannot be instantiated...

class="solr.CdcrUpdateLog"

for some reason that class is causing a problem!

Anyway, anyone has a config that works?

Regards,
--Abdel

On Fri, May 13, 2016 at 11:57 AM, Erick Erickson 
wrote:

> I changed the CDCR doc, Oliver could you take a glance and see if it
> is clear now? All I changed was the sample solrconfig sections
>
> https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=62687462
>
> Thanks,
> Erick
>
> On Fri, May 13, 2016 at 6:23 AM, Oliver Rudolph
>  wrote:
> > Hi,
> >
> > I had the same problem. The documentation is kind of missleading here.
> You
> > must not add a new  element to your config but update the
> > existing . All you need to do is add the
> > class="solr.CdcrUpdateLog" element to the  element inside your
> > existing . Hope this helps!
> >
> >
> > Mit freundlichen Grüßen / Kind regards
> >
> > Oliver Rudolph
> >
> > IBM Deutschland Research & Development GmbH
> > Vorsitzender des Aufsichtsrats: Martina Koederitz
> > Geschäftsführung: Dirk Wittkopp
> > Sitz der Gesellschaft: Böblingen / Registergericht: Amtsgericht
> Stuttgart,
> > HRB 243294
> >
> >
> >
> >
> >
>



-- 
Abdel K. Belkasri, PhD


Re: Need Help with Solr 6.0 Cross Data Center Replication

2016-05-13 Thread Erick Erickson
I changed the CDCR doc, Oliver could you take a glance and see if it
is clear now? All I changed was the sample solrconfig sections

https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=62687462

Thanks,
Erick

On Fri, May 13, 2016 at 6:23 AM, Oliver Rudolph
 wrote:
> Hi,
>
> I had the same problem. The documentation is kind of missleading here. You
> must not add a new  element to your config but update the
> existing . All you need to do is add the
> class="solr.CdcrUpdateLog" element to the  element inside your
> existing . Hope this helps!
>
>
> Mit freundlichen Grüßen / Kind regards
>
> Oliver Rudolph
>
> IBM Deutschland Research & Development GmbH
> Vorsitzender des Aufsichtsrats: Martina Koederitz
> Geschäftsführung: Dirk Wittkopp
> Sitz der Gesellschaft: Böblingen / Registergericht: Amtsgericht Stuttgart,
> HRB 243294
>
>
>
>
>


Re: Need Help with Solr 6.0 Cross Data Center Replication

2016-05-13 Thread Oliver Rudolph
Hi,

I had the same problem. The documentation is kind of missleading here. You 
must not add a new  element to your config but update the 
existing . All you need to do is add the 
class="solr.CdcrUpdateLog" element to the  element inside your 
existing . Hope this helps!


Mit freundlichen Grüßen / Kind regards

Oliver Rudolph

IBM Deutschland Research & Development GmbH 
Vorsitzender des Aufsichtsrats: Martina Koederitz 
Geschäftsführung: Dirk Wittkopp
Sitz der Gesellschaft: Böblingen / Registergericht: Amtsgericht Stuttgart, 
HRB 243294







Need Help with Solr 6.0 Cross Data Center Replication

2016-05-11 Thread Satvinder Singh
Hi,

I am trying to configure Cross Data Center Replication using solr 6.0.
I am having issue configuring solrconfig.xml on both the target and source 
side. I keep getting error 
"org.apache.solr.common.SolrException:org.apache.solr.common.SolrException: 
Solr instance is not configured with the cdcr update log"


This is my config on the Source

  
  
disabled
  
  
  


  
  
  
cdcr-proc-chain
  
  
  

${solr.ulog.dir:}
500
20
65536

  


This is the config on the Target side:

  
  
disabled
  
  
  


  
  
  
cdcr-proc-chain
  
  
  

${solr.ulog.dir:}
500
20
65536

  

Any help would be great.

Thanks
[http://www.nc4worldwide.com/_signature/nc4.png]

Satvinder Singh







Security Systems Engineer
satvinder.si...@nc4.com
703.682.6000 x276 direct
703.989.8030 cell
www.NC4.com






[http://www.nc4worldwide.com/_catalogs/masterpage/images/linkedin-sml.png] 
 
[http://www.nc4worldwide.com/_catalogs/masterpage/images/googleplus-sml.png]  
 
[http://www.nc4worldwide.com/_catalogs/masterpage/images/twitter-sml.png] 





Disclaimer: This message is intended only for the use of the individual or 
entity to which it is addressed and may contain information which is 
privileged, confidential, proprietary, or exempt from disclosure under 
applicable law. If you are not the intended recipient or the person responsible 
for delivering the message to the intended recipient, you are strictly 
prohibited from disclosing, distributing, copying, or in any way using this 
message. If you have received this communication in error, please notify the 
sender and destroy and delete any copies you may have received.