2

团队,

我正在寻找 java 程序来获取给定项目的用户故事、测试用例和缺陷总数的计数。

我试图转储所有分层数据 - 并对其进行数据挖掘 - 以构建数据指标 - 但它花费了太多时间 - 我有大量数据(2000 个项目,每个项目有 3/4 千个用户故事)

是否有任何查询 - 我可以在哪里获得一个项目所需的数据?

请帮忙。

谢谢VG

4

1 回答 1

3

对于每个项目,对于每种类型,只需执行一个页面大小为 1 的查询并检查 TotalResultCount 属性。这将为您提供匹配记录的总数,而无需实际检索所有数据。

以下示例显示了如何使用Rally REST Toolkit for Java执行此操作:

RallyRestApi restApi = new RallyRestApi(new URI("https://rally1.rallydev.com"), "user@company.com", "password");

//retrieve only 1   
QueryRequest defectCount = new QueryRequest("defect");
defects.setPageSize(1);
defects.setLimit(1);

//for a specific project
defectCount.setProject("/project/12345");
defectCount.setScopedUp(false);
defectCount.setScopedDown(false);

QueryResponse defectCountResponse = restApi.query(defectCount);
int total = defectCountResponse.getTotalResultCount();
于 2013-07-29T03:06:42.333 回答