Skip to content

Commit dbc6e1f

Browse files
committed
support spark 3.5.2/3
1 parent 3fae143 commit dbc6e1f

File tree

6 files changed

+17
-367
lines changed

6 files changed

+17
-367
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,6 @@ examples/.ipynb_checkpoints/
2323
*.parquet
2424
*.crc
2525
_SUCCESS
26+
27+
.metals/
28+
.bloop/

core/shims/spark350/src/main/scala/com/intel/raydp/shims/SparkShimProvider.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ import com.intel.raydp.shims.{SparkShims, SparkShimDescriptor}
2222
object SparkShimProvider {
2323
val SPARK350_DESCRIPTOR = SparkShimDescriptor(3, 5, 0)
2424
val SPARK351_DESCRIPTOR = SparkShimDescriptor(3, 5, 1)
25-
val DESCRIPTOR_STRINGS = Seq(s"$SPARK350_DESCRIPTOR", s"$SPARK351_DESCRIPTOR")
25+
val SPARK352_DESCRIPTOR = SparkShimDescriptor(3, 5, 2)
26+
val SPARK353_DESCRIPTOR = SparkShimDescriptor(3, 5, 3)
27+
val DESCRIPTOR_STRINGS = Seq(s"$SPARK350_DESCRIPTOR", s"$SPARK351_DESCRIPTOR", s"$SPARK352_DESCRIPTOR",
28+
s"$SPARK353_DESCRIPTOR")
2629
val DESCRIPTOR = SPARK350_DESCRIPTOR
2730
}
2831

python/raydp/spark/__init__.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,3 @@
3333
"from_spark_recoverable"
3434
]
3535

36-
try:
37-
import ray.util.data
38-
from .dataset import RayMLDataset
39-
__all__.append("RayMLDataset")
40-
except ImportError:
41-
# Ray MLDataset is removed in Ray 2.0
42-
pass

0 commit comments

Comments
 (0)