2010-06-17 29 views
0

我开始使用卡桑德拉,我想索引我的数据库与狮身人面像。 我写了用作xmlpipe的ruby脚本,并且配置了sphinx来使用它。狮身人面像,xmlpipe2和卡桑德拉

source xmlsrc 
{ 
    type         = xmlpipe2 
    xmlpipe_command       = /usr/local/bin/ruby /home/httpd/html/app/script/sphinxpipe.rb 
} 

当我运行从控制台输出脚本看起来不错,但是当我运行索引斯芬克斯返回错误

$ indexer test_index 
Sphinx 0.9.9-release (r2117) 
Copyright (c) 2001-2009, Andrew Aksyonoff 

using config file '/usr/local/etc/sphinx.conf'... 
indexing index 'test_index'... 
ERROR: index 'test_index': source 'xmlsrc': attribute 'id' required in <sphinx:document> (line=10, pos=0, docid=0). 
total 0 docs, 0 bytes 
total 0.000 sec, 0 bytes/sec, 0.00 docs/sec 
total 0 reads, 0.000 sec, 0.0 kb/call avg, 0.0 msec/call avg 
total 0 writes, 0.000 sec, 0.0 kb/call avg, 0.0 msec/call avg 

我的剧本是很简单

$stdout.sync = true 
puts %{<?xml version="1.0" encoding="utf-8"?>} 
puts %{<sphinx:docset>} 
puts %{<sphinx:schema>} 
puts %{<sphinx:field name="body"/>} 
puts %{</sphinx:schema>} 
puts %{<sphinx:document id="ba32c02e-79e2-11df-9815-af1b5f766459">} 
puts %{<body><![CDATA[aaa]]></body>} 
puts %{</sphinx:document>} 
puts %{</sphinx:docset>} 

我使用Ruby 1.9.2 - 头,Ubuntu 10.04,狮身人面像0.9.9

我怎样才能得到这个工作?

回答

2

我有答案,我自己quiestion :)

狮身人面像在源代码中定义文件最大ID

for 64 bit mashines 
#define DOCID_MAX  U64C(0xffffffffffffffff) 

文档ID必须小于18446744073709551615

for 32 bit mashines 
#define DOCID_MAX  0xffffffffUL 

文件ID必须小于4294967295

我用SimpleUUID th为什么它不工作