Exception: Momento::Error::ClientResourceExhaustedError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Momento::Error::ClientResourceExhaustedError
- Includes:
- Momento::Error
- Defined in:
- lib/momento/error/types.rb
Overview
A client resource (most likely memory) was exhausted.
Instance Attribute Summary
Attributes included from Momento::Error
#cause, #context, #details, #transport_details
Instance Method Summary collapse
-
#error_code ⇒ Symbol
A Momento-specific code for the type of error.
-
#message ⇒ String
The error message.
Methods included from Momento::Error
Instance Method Details
#error_code ⇒ Symbol
A Momento-specific code for the type of error.
70 71 72 |
# File 'lib/momento/error/types.rb', line 70 def error_code :CLIENT_RESOURCE_EXHAUSTED end |
#message ⇒ String
The error message.
75 76 77 |
# File 'lib/momento/error/types.rb', line 75 def "A client resource (most likely memory) was exhausted. If you are executing a high volume of concurrent requests or using very large object sizes, your Configuration may need to be updated to allocate more memory. Please contact Momento for assistance." end |