Skip to content Skip to sidebar Skip to footer

Unable To Insert 5k/sec Records Into Impala?

I am exploring Impala for a POC, however I can't see any significant performance. I can't insert 5000 records/sec, at max I was able to insert mere 200/sec. This is really slow con

Solution 1:

You can't benchmark on a VM with 12GB. Look at the Impala's hardware requirements and you'll see you need 128GB of memory minimum.

  • Memory

128 GB or more recommended, ideally 256 GB or more. If the intermediate results during query processing on a particular node exceed the amount of memory available to Impala on that node, the query writes temporary work data to disk, which can lead to long query times. Note that because the work is parallelized, and intermediate results for aggregate queries are typically smaller than the original data, Impala can query and join tables that are much larger than the memory available on an individual node.

Also, the VM is used to familiarize yourself with the toolset but it is not powerful enough to even be a development environment.

References

Post a Comment for "Unable To Insert 5k/sec Records Into Impala?"