You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Peng Meng (JIRA)" <ji...@apache.org> on 2017/07/13 12:55:00 UTC

[jira] [Updated] (SPARK-21401) add poll function for BoundedPriorityQueue

     [ https://issues.apache.org/jira/browse/SPARK-21401?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Peng Meng updated SPARK-21401:
------------------------------
    Description: 
The most of BoundedPriorityQueue usages in ML/MLLIB are:
Get the value of BoundedPriorityQueue, then sort it.
For example, in Word2Vec: pq.toSeq.sortBy(-_._2)
in ALS, pq.toArray.sorted()

The test results show using pq.poll() is much faster than sort the value.
For example, in PR https://github.com/apache/spark/pull/18624
We get the sorted value of pq by the following code:
{quote}
var size = pq.size
while(size > 0) {
size -= 1
val factor = pq.poll
}{quote} 

If using the generally used methods: pq.toArray.sorted() to get the sorted value of pq. There is about 10% performance reduction. 

It is good to add the poll function for BoundedPriorityQueue, since many usages of PQ need  the sorted value.


  was:
The most of BoundedPriorityQueue usages in ML/MLLIB are:
Get the value of BoundedPriorityQueue, then sort it.
For example, in Word2Vec: pq.toSeq.sortBy(-_._2)
in ALS, pq.toArray.sorted()

The test results show using pq.poll() is much faster than sort the value.
For example, in PR https://github.com/apache/spark/pull/18624
We get the sorted value of pq by the following code:
{quote}
var size = pq.size
while(size > 0) {
     size -= 1
     val factor = pq.poll
}{quote} 

If using the generally used methods: pq.toArray.sorted() to get the sorted value of pq. There is about 10% performance reduction. 

It is good to add the poll function for BoundedPriorityQueue, since many usages of PQ need  the sorted value.



> add poll function for BoundedPriorityQueue
> ------------------------------------------
>
>                 Key: SPARK-21401
>                 URL: https://issues.apache.org/jira/browse/SPARK-21401
>             Project: Spark
>          Issue Type: Improvement
>          Components: ML, MLlib
>    Affects Versions: 2.3.0
>            Reporter: Peng Meng
>            Priority: Minor
>
> The most of BoundedPriorityQueue usages in ML/MLLIB are:
> Get the value of BoundedPriorityQueue, then sort it.
> For example, in Word2Vec: pq.toSeq.sortBy(-_._2)
> in ALS, pq.toArray.sorted()
> The test results show using pq.poll() is much faster than sort the value.
> For example, in PR https://github.com/apache/spark/pull/18624
> We get the sorted value of pq by the following code:
> {quote}
> var size = pq.size
> while(size > 0) {
> size -= 1
> val factor = pq.poll
> }{quote} 
> If using the generally used methods: pq.toArray.sorted() to get the sorted value of pq. There is about 10% performance reduction. 
> It is good to add the poll function for BoundedPriorityQueue, since many usages of PQ need  the sorted value.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org