Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Preferences objects present a way to store arbitrary data into Rally which can be combined with other Rally information.

For example, if I want to calculate defect density and see a graph in Rally, I can't because I don't have KLOC information in Rally. But if I write a script that periodically drops my current line count every iteration or so into a preference object of a well know ID, I can do this easily.

But should I? And if so what are the limitations of preferences objects in Rally? How much data can I safely store in them, and how many preferences objects can the system reasonable handle? Is it hundreds, thousands, tens of thousands? Our instance already has thousands of these just from standard apps that are installed, so it looks like the answer is at least thousands.

share|improve this question

1 Answer

up vote 4 down vote accepted

We currently do not place any restrictions on the use of preferences and frankly, I don't think we know the limits if its use. For the load that you are suggesting, I suspect you will not exceed those limits.

On another front, I'd love to hear more about the analysis that you have in mind. Before coming to Rally, I have done a bit of work using LOC to normalize metrics as well as to heuristically determine artifact dependency. Now at Rally, I have both the analytics features as well as the connector features within my domain of responsibility as a Product Owner and I've been exploring ways to responsibly use LOC at Rally.

share|improve this answer
Thanks for the response-- based on this we will move forward. Also, I found in the doc says you can include 32K of data in each preference object. There are two things we are looking at tracking for LOC to begin with. The first is defect density. The first application will be to put a line on a "total open defects" chart that indicates the max number of open defect that keeps us below our defect density standard. The second is to track the ratio of test lines added vs. payload lines, breaking it down by component and potentially even team. – kimon Mar 27 '12 at 19:14
That sounds like an interesting use of LOC. Be sure that the folks recording the defects are not the same folks who will be monitoring the chart. These such uses tend to be self-fulfilling. – Larry Maccherone Mar 27 '12 at 21:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.