seatunnel
seatunnel copied to clipboard
scala.util.matching.Regex.<init>(Ljava/lang/String;Lscala/collection/Seq;)V
Search before asking
- [X] I had searched in the issues and found no similar issues.
What happened
import hive data to clickhouse
SeaTunnel Version
2.3.0-beta
SeaTunnel Config
env {
spark.app.name = "dmp"
spark.executor.instances = 5
spark.executor.cores = 2
spark.executor.memory = "4g"
spark.sql.catalogImplementation = "hive"
}
source {
Hive {
pre_sql = "select * from dmp_release.t1"
result_table_name = "t1"
}
}
transform {
}
sink {
clickhouse {
host = "localhost:8123"
database = "dmp_release"
table = "t1"
fields = ["id", "name"]
username = "default"
password = ""
}
}
Running Command
./bin/start-seatunnel-spark.sh --config config/spark.batch.conf -e client -m 'local[*]'
Error Exception
Exception in thread "main" java.lang.NoSuchMethodError: scala.util.matching.Regex.<init>(Ljava/lang/String;Lscala/collection/Seq;)V
Flink or Spark Version
spark version: 3.3.0
Java or Scala Version
jdk version: 1.8
Screenshots
No response
Are you willing to submit PR?
- [X] Yes I am willing to submit a PR!
Code of Conduct
- [X] I agree to follow this project's Code of Conduct
Spark3 is not supported for now, but I don't know if this has anything to do with this, I'm not familiar with scala.
only spark2?
This issue has been automatically marked as stale because it has not had recent activity for 30 days. It will be closed in next 7 days if no further activity occurs.
This issue has been closed because it has not received response for too long time. You could reopen it if you encountered similar problems in the future.