com.nvidia.spark.rapids.GpuSparkPartitionID.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rapids-4-spark_2.13 Show documentation
Show all versions of rapids-4-spark_2.13 Show documentation
Creates the distribution package of the RAPIDS plugin for Apache Spark
The newest version!
/*
* Copyright (c) 2020-2023, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.nvidia.spark.rapids
import ai.rapids.cudf.{ColumnVector, Scalar}
import com.nvidia.spark.rapids.Arm.withResource
import org.apache.spark.TaskContext
import org.apache.spark.sql.types.{DataType, IntegerType}
import org.apache.spark.sql.vectorized.ColumnarBatch
/**
* An expression that returns the current partition id just like
* `org.apache.spark.sql.catalyst.expressions.SparkPartitionID`
*/
case class GpuSparkPartitionID() extends GpuLeafExpression {
/**
* We need to recompute this if something fails.
*/
override lazy val deterministic: Boolean = false
override def foldable: Boolean = false
override def nullable: Boolean = false
override def dataType: DataType = IntegerType
@transient private[this] var partitionId: Int = _
@transient private[this] var wasInitialized: Boolean = _
override val prettyName = "SPARK_PARTITION_ID"
override def columnarEval(batch: ColumnarBatch): GpuColumnVector = {
if (!wasInitialized) {
partitionId = TaskContext.getPartitionId()
wasInitialized = true
}
val numRows = batch.numRows()
withResource(Scalar.fromInt(partitionId)) { part =>
GpuColumnVector.from(ColumnVector.fromScalar(part, numRows), dataType)
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy