Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

Will RTC 5.0.2 server support work item # count over 1 million?

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?

0 votes


Accepted answer

Permanent link
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

1 vote

Comments

Ralph, can you confirm the work item ID is a signed integer?  Thanks in advance, Mike.

Here the API:

    /*
     * Returns the work item with the given id or null if not found
     * 
     * @param id the id
     * @param profile the profile of the returned work item
     * @param monitor a progress monitor or null
     * @return the work item with the given profile
     * @throws TeamRepositoryException if anything goes wrong,
     *  and {@link PermissionDeniedException} if the
     *  authenticated user's privileges are not sufficient
     * @see IWorkItem#getId()
     /
    IWorkItem findWorkItemById(int id, ItemProfile<iworkitem> profile, IProgressMonitor monitor) throws TeamRepositoryException;

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

Register or log in to post 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.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 457
× 57
× 40
× 12
× 4
× 3

Question asked: May 13 '15, 10:49 a.m.

Question was seen: 3,322 times

Last updated: May 13 '15, 11:13 a.m.

Confirmation Cancel Confirm