dongjoon-hyun commented on a change in pull request #34547: URL: https://github.com/apache/spark/pull/34547#discussion_r747157684
########## File path: sql/core/src/test/scala/org/apache/spark/sql/streaming/StreamingSessionWindowSuite.scala ########## @@ -43,12 +43,17 @@ class StreamingSessionWindowSuite extends StreamTest val mergingSessionOptions = Seq(true, false).map { value => (SQLConf.STREAMING_SESSION_WINDOW_MERGE_SESSIONS_IN_LOCAL_PARTITION.key, value) } - val providerOptions = Seq( + var providerOptions = Seq( classOf[HDFSBackedStateStoreProvider].getCanonicalName, classOf[RocksDBStateStoreProvider].getCanonicalName ).map { value => (SQLConf.STATE_STORE_PROVIDER_CLASS.key, value.stripSuffix("$")) } + // RocksDB doesn't support Apple Silicon yet + if (System.getProperty("os.name").equals("Mac OS X") && + System.getProperty("os.arch").equals("aarch64")) { + providerOptions = providerOptions.take(1) Review comment: Sure. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org