0

我正在使用 curl 运行 AQL:

curl -vv  -u 'admin':'password' -X POST -H "Content-Type: application/json" -d @e.txt http://somecompany.com:8081/artifactory/api/search/aql

这是 e.txt 文件:

items.find(
    {
        "repo":{"$eq":"yum-repo"},
        "type":{"$eq":"file"},
        "name":{"$match":"*.rpm"}
    }
).include("repo", "path", "name", "@rpm.metadata.name")

这是我的输出的一部分:

 "range" : {
    "start_pos" : 0,
    "end_pos" : 1000,
    "limit" : 1000
  }

它将输出限制为 1000 我尝试过limit(9999)它没有帮助

4

1 回答 1

1

Artifactory 默认配置为将 AQL 查询返回的结果数限制为 1000。
您可以在文件中更改此配置$ARTIFACTORY_HOME/etc/artifactory.system.properties

## Maximum number of results to return when searching through the UI
artifactory.search.maxResults=500

## The backend limit of maximum results to return from sql queries issued by users. Should be higher than maxResults.
artifactory.search.userQueryLimit=1000

有关更多信息,请参阅有关搜索的文档

于 2015-11-30T10:39:02.040 回答