Archive for March, 2010
Rails ActiveRecord MySql varbinary
Although ActiveRecord has the following warning about database specific column types: “You may use a type not in this list as long as it is supported by your database (for example, “polygon” in MySQL), but this will not be database agnostic and should usually be avoided. ActiveRecord” You may have optimizations specific to a database server like MySql’s varbinary. Here is how to create the a table with a varbinary(1000) column.
create_table :page_error_sources do |t| t.column :source, 'varbinary(1000)', :null => false t.timestamps end
Solr 1.4 Upgrade P2 – Out with Rsync CollectionDistribution in with JavaReplication
Solr 1.4 made replication from Master to Slave servers a whole lot easier. Before solr1.4 we were using rsync via the snapshooter and snappuller scripts As seen here. This method worked OK, but intermittently we would see the snapshooter or puller fail for various Java reasons (Memory usually).
Please see Solr Java-Based Replication for setup overview. I will cover specific modification I had to make compared to what is in their documentation. In my solrconfig.xml on my Master server, I have the following:
<requestHandler name="/replication" class="solr.ReplicationHandler" > <lst name="master"> <!--Replicate on 'startup' and 'commit'. 'optimize' is also a valid value for replicateAfter. --> <str name="replicateAfter">startup</str> <str name="replicateAfter">commit</str> </lst> </requestHandler>
Then on the slave servers, I have:
<requestHandler name="/replication" class="solr.ReplicationHandler" > <lst name="slave"> <!--fully qualified url for the replication handler of master . It is possible to pass on this as a request param for the fetchindex command--> <str name="masterUrl">http://{solr_host}:{solr_port}/solr/${solr.core.name}/replication</str> <!--Interval in which the slave should poll master .Format is HH:mm:ss . If this is absent slave does not poll automatically. But a fetchindex can be triggered from the admin or the http API --> <str name="pollInterval">00:00:30</str> <str name="httpReadTimeout">10000</str>--> </lst> </requestHandler>
Substitute {solr_host} and {solr_port} with your specific settings. IMPORTANT: Note the ${solr.core.name} variable. This makes it so the slaves will poll from the correct MultiCore path on the Master server.
3 comments