Re: Exception importing multi-valued UUID field

2012-02-20 Thread Erick Erickson
I don't think escaping is your problem, you probably want to take that bit out. Try adding f..split=true when importing. You might also have to specify something like f..separator=, but probably not, I suspect it's the default. See the "split" heading at: http://wiki.apache.org/solr/UpdateCSV A

Re: Exception importing multi-valued UUID field

2012-02-20 Thread Yonik Seeley
On Mon, Feb 20, 2012 at 7:26 PM, Greg Pelly wrote: > I exported a csv file from SOLR and made some changes, I then tried to > reimport the file and got the exception below. It seems UUID field type > can't import multi-values, I removed all of the multi-values and it > imported without an issue.

Re: Exception importing multi-valued UUID field

2012-02-20 Thread Greg Pelly
I also tried it with the comma escaped, so: '845b9db2-2a25-44e3-8eb4-3bf17cd16738\,c5477d5d-e77c-45e9-ab61-f7ca05499b37' So that's in the same format as it was exported, Excel must have removed the slash. But I still get the error with the slash. On Tue, Feb 21, 2012 at 11:26 AM, Greg Pelly wro