Will RTC 5.0.2 server support work item # count over 1 million?
Michael Stucchi (13●6●8)
| asked May 13 '15, 10:49 a.m.
JAZZ DEVELOPER edited May 13 '15, 10:50 a.m.
We have a RTC 5.0.2 server which is at WI # count 917991. If we add another 83k work items will the system handle over 1 million work items? If not, how should we proceed?
|
Accepted answer
Ralph Schoon (63.5k●3●36●46)
| answered May 13 '15, 10:55 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER
I think the work item ID is an integer so if it is a signed int your max is 2147483647 see
http://en.wikipedia.org/wiki/2147483647 Michael Stucchi selected this answer as the correct answer
Comments Ralph, can you confirm the work item ID is a signed integer? Thanks in advance, Mike.
Ralph Schoon
commented May 13 '15, 11:11 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER
Here the API:
/* * Returns the work item with the given id or The ID is also a key in the DB. Which is at least 32bit. MAXINT in Java is: 2^31-1 which is 2147483647 and what the API can handle today. That is half that fits into 32 bit. there is no unsigned int in Java. Thanks Ralph for your work on this. The customer appreciates your quick response.
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.