| Code |
Message |
Definition |
Suggested Solution |
| 0 |
Success |
The request was completed successfully. |
|
| -101 |
Library Init Failure |
The FAM API did not start. |
- Verify the initialize function, in 'C', or the FAM function, in Java was called.
|
| -102 |
No Service Response |
The FAM API could not locate a worker to handle the request. |
- Verify the time out parameter in the create, get, write, read, or delete functions provide adequate time to receive a response.
|
| -103 |
Space Not Found |
The FAM could not locate the specified space. |
- Verify the correct space is specified in the get, write, read, or delete functions.
- Verify the specified space should exist.
- Verify network is functioning properly.
|
| -104 |
Space Already Exists |
The space specified in the create function is already in the FAM. |
- Verify the correct space is specified in the create function.
|
| Code |
Message |
Definition |
Suggested Solution |
| -105 |
Wait Timeout |
The FAM API timed out waiting on an operation. |
- Verify the time out parameter in the create, get, write, read, or delete functions provide adequate time to receive a response.
|
| -106 |
No Lock ID Set |
The FAM API attempted to write data to a FAM space without setting the lock identifier. |
- Verify that the same lock ID set on the get function is used on the write function. The get function generates a lock ID even if a lock ID was not set using the set lock ID function.
|
| -107 |
FAM Error |
An error occurred while the FAM API was trying to create, read, write, commit, or delete data in a FAM space. |
- Verify the network is functioning properly.
- Verify FAM API call contains the correct parameters.
- Use the get error code and get error message functions to retrieve more information about this error.
|
| -108 |
Bad Chars in Space Error |
The FAM space name contains unsupported characters. |
- Verify the FAM space name consists of alphanumeric characters (upper or lower case), hyphens (-), underscores (_), periods (.), forward slashes (/), and spaces.
|
| -109 |
Bad Chars in Key Error |
The data key contains unsupported characters. |
- Verify the FAM space name consists of alphanumeric characters (upper or lower case), hyphens (-), underscores (_), periods (.), forward slashes (/), and spaces.
|
| Code |
Message |
Definition |
Suggested Solution |
| -110 |
Bad Chars in Lock ID Error |
The lock identifier contains unsupported characters. |
- Verify the FAM space name consists of alphanumeric characters (upper or lower case), hyphens (-), underscores (_), periods (.), forward slashes (/), and spaces.
|
| -111 |
Incomplete Response |
The FAM API found only one FAM space member to process a request that requires quorum. The FAM space may be lost due to down workers or a network problem may exist. |
- Verify the network is functioning properly.
- Verify fabric workers are functioning properly.
|
| -112 |
Lost Quorum |
The FAM space could not heal. In order for a FAM space to heal the majority of workers that create the FAM space must be able to communicate with each other. |
- Verify the network is functioning properly.
- Verify fabric workers are functioning properly.
|
| -113 |
Queue Error |
An error occurred while the FAM was trying to read, lock, push, or delete
data in a queue. |
- Verify the network is functioning properly.
- Use the get error code and get error message functions to retrieve more information about this error.
|
| -114 |
In Doubt |
The client did not receive information regarding the request status. |
- Verify the appropriate parameter provides adequate time to receive the request's status.
- Verify the network is functioning properly.
- Verify fabric workers are functioning properly.
|
| Code |
Message |
Definition |
Suggested Solution |
| -115 |
Lost Connection |
The client and the FAM are unable to communicate. |
- Verify the network is functioning properly.
- Verify fabric workers are functioning properly.
|
| -116 |
Session Invalid |
The session is no longer valid. |
- Verify the session timeout parameter provides adequate time to complete the event.
|
| -117 |
Empty Space Name |
The operation requires a space name. |
- Include a space name in the request.
|
| -118 |
Empty Key |
The operation requires a key. |
- Include a key in the request.
|
| -119 |
Space Size Zero |
The create operation requires a non-zero space size. |
- Change the space to a non-zero value.
|