スケジュール タスクを使用して以下の xqy コードを実行しています。この xqy コードでは、put 呼び出しで method="digest" username = admin password = admin を使用して認証ノードの値を手動で渡しています。
1. ユーザー名とパスワードの暗号化されたトークンを実行時に渡すことができます
。 ) 8000 ポートで。
xquery version "1.0-ml";
declare namespace hst = 'http://marklogic.com/xdmp/status/host';
declare namespace c = 'http://example.com/abc';
declare variable $Collection := 'collection';
let $query :=
cts:and-query((
cts:collection-query($Collection),
cts:element-range-query(xs:QName('c:element'), '<=', fn:current-dateTime())
))
let $uris := cts:uris('',(), $query)
let $total-uri := count($uris)
return
if ($total-uri) then
let $PORT := '8000'
let $database := xdmp:database()
let $host-list := xdmp:hosts()
let $hosts :=
for $hosts-online in $host-list
where xdmp:host-status($hosts-online)/hst:hosts/hst:host[.//hst:online/fn:string() = 'true']
return $hosts-online
let $cluster-size := fn:count($hosts)
return
for $host at $index in $hosts
let $page-size := fn:ceiling($total-uri div $cluster-size)
let $start-index := ($index - 1) * $page-size + 1
let $end-index :=
if ($cluster-size eq $index) then
$total-uri
else
($index - 1) * $page-size +$page-size
let $urisforHost := string-join($uris[$start-index to $end-index],',')
let $url := fn:concat('http://',xdmp:host-name($host),':',$PORT,'/v1/resources/example?rs:uris=',$urisforHost,'&rs:db=',$database)
return
xdmp:spawn-function(function()
{xdmp:http-put($url,
<options xmlns="xdmp:http">
<authentication method="digest">
<username>admin</username>
<password>admin</password>
</authentication>
</options>
)
}
)