[ 
https://issues.apache.org/jira/browse/HIVE-9359?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14283082#comment-14283082
 ] 

Alan Gates commented on HIVE-9359:
----------------------------------

One question: in EximUtil.createExportDump - is there a streaming JSON writer 
you could use so that we're not forced to hand-code JSON.  Maybe the JSON we're 
writing is simple enough, but this looks like it could end in a mess if our 
JSON gets complex.

> Export of a large table causes OOM in Metastore and Client
> ----------------------------------------------------------
>
>                 Key: HIVE-9359
>                 URL: https://issues.apache.org/jira/browse/HIVE-9359
>             Project: Hive
>          Issue Type: Bug
>          Components: Import/Export, Metastore
>            Reporter: Sushanth Sowmyan
>            Assignee: Sushanth Sowmyan
>         Attachments: HIVE-9359.patch
>
>
> Running hive export on a table with a large number of partitions winds up 
> making the metastore and client run out of memory. The number of places we 
> wind up having a copy of the entire partitions object wind up being as 
> follows:
> Metastore
>    * (temporarily) Metastore MPartition objects
>    * List<Partition> that gets persisted before sending to thrift
>    * thrift copy of all of those partitions
> Client side
>    * thrift copy of partitions
>    * deepcopy of above to create List<Partition> objects
>    * JSONObject that contains all of those above partition objects
>    * List<ReadEntity> which each encapsulates the aforesaid partition objects.
> This memory usage needs to be drastically reduced.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to