I no sooner hit "Post" when the Websolr folks responded: Hi Chris,
Thanks for reaching out. There are really two ways to get the data into Websolr. One way is to simply reindex. Presumably your client is using another data store like Postgres or MySQL; reindexing from the source would be the standard way to populate the new index. Alternatively, you could try using the Replication API. A simple bash script for this: #!/bin/bash SRC=http://your_clients_AWS_index/replication <http://your_clients_aws_index/replication> DST=https://index.websolr.com/solr/<your id>/replication curl -XPOST $DEST \ -d command=fetchindex \ -d masterUrl=$SRC Something like that should let you migrate the data to the new index, assuming the network allows it. Hope that helps. Let me know if you have any other questions or run into any issues. Thanks! Rob -- -- SD Ruby mailing list [email protected] http://groups.google.com/group/sdruby --- You received this message because you are subscribed to the Google Groups "SD Ruby" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
