我有一个我为生成序列号而编写的函数。功能如下:
declare function generate-instrument-Id( $cnt as xs:int? )
as xs:int {
let $count := if( $cnt and $cnt > 0 ) then $cnt else 1
let $url := '/private/instrumentId-Sequence.xml'
(: this redirection is needed to write id in another
transaction context :)
return xdmp:invoke-function( function() {
let $id := fn:doc( $url )/instrument/@nextId
let $_ := xdmp:node-replace( $id
, attribute nextId { $id + $count } )
return $id
}
)
};
该函数使用以下测试代码在 qconsole 窗口中正常工作:
let res := util:generate-instrument-Id( 1 )
return fn:error( fn:QName("test", $res ) )
即它在另一个事务上下文中执行并正确更新文档。但是,当我尝试从 REST 服务调用相同的函数时,它会返回以下错误消息:
XDMP-LOCKED: xdmp:node-replace(fn:doc("/private/instrumentId-Sequence.xml")/instrument/@nextId, attribute{fn:QName("","nextId")}{"1228"}) -- Document or Directory is locked
请注意,我清理了服务接口中的所有其他代码以隔离问题,但仍然收到相同的错误消息。
所以这是我的问题:
- 在什么情况下会发出此错误?
- 我确信没有任何其他进程对该文档(或它所在的目录)进行锁定,那么什么可能会触发这样的误报?
- 由于它在 qconsole 中工作,我假设如果我复制它在执行程序时所做的事情,我也可以解决这个问题。关于 qconsole 如何执行程序的任何文档?
非常感谢
K。
PS:我在 Windows 服务器上使用 MarkLogic 9