- Community Home
- >
- Software
- >
- HPE Ezmeral Software platform
- >
- Data Access Gateway Direct memory
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2021 12:07 PM
06-22-2021 12:07 PM
Data Access Gateway Direct memory
I am not sure about where to fix or modify the direct memory for Data Access gateway.
Assuming below errors are there in logs which I am not sure.
ERROR [MapR GRPC Service Executor -2815] GrpcThreadPoolExecutor - io.grpc.internal.SerializingExecutor.run() leaked an exception. io.grpc.netty.shaded.io.netty.util.internal.OutOfDirectMemoryError: failed to allocate 16777216 byte(s) of direct memory (used: 3003121951, max: 3014656000)
Do we need to update the heap memory here which is under warden.data-access-gateway.conf in data-access-gateway conf directory?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2021 01:47 PM
06-22-2021 01:47 PM
Re: Data Access Gateway Direct memory
This typically happens when a streaming argument in grpc has too much data passed too quickly.
Others more expert in the ways of the gateway need to comment.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2021 07:10 PM
06-24-2021 07:10 PM
Re: Data Access Gateway Direct memory
Thanks Ted. I finally got to the solution. OJAI query generally gets allocated some direct memory via Jetty/library and in case of extensive query this memory saturates which goes beyond the heap memory of the Data Access Gateway process.
Two ways to handle is either increase the heap of the DAG to accumulate more results or limit the number of results via grpc.service.ojai.query.result-limit parameter under properties.cfg.
ANy one of these should take care of the same. For now there is no way like Drill where we can set direct memoery for DAG.
Let me know if someone thinks otherwise or has some more pointers.