Skip to main content

Questions tagged [scala]

Scala is a general-purpose programming language principally targeting the Java Virtual Machine. Designed to express common programming patterns in a concise, elegant, and type-safe way, it fuses both imperative and functional programming styles. Its key features are: an advanced static type system with type inference; function types; pattern-matching; implicit parameters and conversions; operator overloading; full interoperability with Java; concurrency

scala
0 votes
0 answers
19 views

Input that .repeat() takes in Gatling simulation

I have a scenario where for array size I need to repeat some code piece in Gatling. While .repat() works with integer provided for items.size.toInt , it does not honour the provided value and repeat ...
Ankit2201's user avatar
0 votes
1 answer
31 views

Spark-Scala vs Pyspark Dag is different?

I am converting pyspark job to Scala and jobs executes in emr. The parameter and data and code is same. However I see the run time is different and so also the dag getting created is different. Here I ...
user3858193's user avatar
  • 1,438
0 votes
1 answer
46 views

Output is not giving as Range(1,2,3,4) for val from1Until5 = 1 until 5 println(s"Range from 1 until 5 where 5 is excluded = $from1Until5")

I am executing println("\nStep 2: Create a numeric range from 1 to 5 but excluding the last integer number 5") val from1Until5 = 1 until 5 println(s"Range from 1 until 5 where 5 is ...
bigdata spark's user avatar
0 votes
1 answer
31 views

nested case class generic filter method

I have some nested case classes that may look like the following: case class Lowest(intVal: Int, stringVal: String) case class Mid (lowestSeq: Seq[Lowest]) case class High (midSeq: Seq[Mid]) So if ...
l Steveo l's user avatar
1 vote
0 answers
62 views

How to address the performance impact of executing multiple functions dynamically compiled with Scala 2's runtime reflection?

I have an entity that generates Scala functions compiled dynamically using Scala 2's runtime reflection. My case is slightly more convoluted, but the following showcases the issue: import scala....
jcazevedo's user avatar
  • 217
0 votes
1 answer
34 views

Create Flow[ByteString, ByteString, NotUsed] by piping through InputStream

I need decompress data using compression not supported by akka, but supported by other library which provided InputStream interface. To make it work with akka stream, I need to implement function: def ...
Vistritium's user avatar
-1 votes
0 answers
19 views

How to run MySQL scripts when I run docker compose? [duplicate]

I have a Scala backend and Javascript frontend applications and MySQL database. I want to create docker images for every one of them with one docker-compose.yml file and I want to run the scripts for ...
Davor Homa's user avatar
1 vote
0 answers
34 views

Scala 3 reflection: collect all members that are singleton objects

I have a method in Scala 2 that uses reflection. It doesn't work in Scala 3, and I would like to reimplement it so it works for Scala 3. (I will no longer need it for Scala 2 anymore, so it need not ...
kes's user avatar
  • 6,113
1 vote
0 answers
29 views

Chisel Template Not Functioning Windows 11 - Cannot run program "which": CreateProcess error=2, The system cannot find the file specified

After having cloned the template project for Chisel (https://github.com/chipsalliance/chisel-template) I tried running sbt test, and I got the following error in the file /src/test/scala/gcd/GCDSpec: &...
BurgerMan's user avatar
1 vote
1 answer
49 views

multiple pattern matching on iteration

val subjectpairs = IndexedSeq((8,0),(3,4),(0,9),(6,1)) val priors = subjectpairs.map { case( f,_) => f}.filter{ _ >0.0} val posts = subjectpairs.map { case( _,l) => l}.filter{ _ >0.0} ...
IUnknown's user avatar
  • 9,645
1 vote
0 answers
19 views

Encrypt Spark Libsvm Dataframe

I have a libsvm file that I want to load into Spark and then encrypt it. I want to iterate over every element in the features to apply my encrypt function, but there doesn't seem to be any way to ...
Landor3000's user avatar
0 votes
1 answer
17 views

Adding new Rows to Spark Partition while using forEachPartition

I am trying to add a new Row to each Partition in my Spark Job. I am using the following code to achieve this: StructType rowType = new StructType(); rowType.add(DataTypes.createStructField("...
Sateesh K's user avatar
  • 1,081
0 votes
0 answers
25 views

IntelliJ Scala warning with parameterized type in compiled JAR

I have Scala code with parameterized types like this: val foo: SomeParameterizedType[_ <: Product with Serializable] = new SomeParameterizedType[Foo](arguments) val bar: SomeParameterizedType[_ &...
wrschneider's user avatar
  • 18.5k
1 vote
0 answers
30 views

Unable to connect to MongoDB replicaset from scala mongodb driver

I am running mongodb replicaset in docker on localhost and I am able to connect to it from both command line and Mongodb Compass. When I try to connect from code I get Connection Refused. I am unable ...
Shwetanka's user avatar
  • 5,036
0 votes
0 answers
28 views

Scala can't find imported file from same directory

I'm fairly new to scala, having troubles compiling my code. So I have a project structure like this topdir/ com/ name/ final/ file1.scala file2.scala Both files are in the same package ...
NeverSayEver's user avatar

15 30 50 per page
1
2 3 4 5
7508