How to change encryption key value for local I O

0 votes

Hi. I have enabled encryption for local disk I/O by enabling this property: spark.io.encryption.enabled. By default it is using 128 bit encryption. How can I change it to 256?

Mar 14, 2019 in Apache Spark by Ritu
450 views

1 answer to this question.

0 votes

There another property where you can set the key size bit. The property is spark.io.encryption.keySizeBits. I don't know how you have enabled encryption, you can use the same method to set this also. But for the sake of other members, I'll show how this can be done dynamically:

val sc = new SparkContext(new SparkConf())
./bin/spark-submit <all your existing options> --spark.io.encryption.keySizeBits=256
answered Mar 14, 2019 by Raj

Related Questions In Apache Spark

0 votes
1 answer

How to change block manager port for driver only?

Yes, it is possible to change the ...READ MORE

answered Mar 10, 2019 in Apache Spark by Siri
903 views
0 votes
1 answer

How to search for a Key in a Scala Map?

Hey, The Map.contains() method will tell you if ...READ MORE

answered Jul 29, 2019 in Apache Spark by Gitika
• 65,910 points
799 views
0 votes
1 answer
0 votes
1 answer

How to find max value in pair RDD?

Use Array.maxBy method: val a = Array(("a",1), ("b",2), ...READ MORE

answered May 26, 2018 in Apache Spark by nitinrawat895
• 11,380 points
7,634 views
+1 vote
2 answers
+1 vote
1 answer

Hadoop Mapreduce word count Program

Firstly you need to understand the concept ...READ MORE

answered Mar 16, 2018 in Data Analytics by nitinrawat895
• 11,380 points
10,555 views
0 votes
1 answer

hadoop.mapred vs hadoop.mapreduce?

org.apache.hadoop.mapred is the Old API  org.apache.hadoop.mapreduce is the ...READ MORE

answered Mar 16, 2018 in Data Analytics by nitinrawat895
• 11,380 points
2,184 views
+2 votes
11 answers

hadoop fs -put command?

Hi, You can create one directory in HDFS ...READ MORE

answered Mar 16, 2018 in Big Data Hadoop by nitinrawat895
• 11,380 points
104,185 views
0 votes
1 answer

How to give user only view access for Spark application?

You can give users only view permission ...READ MORE

answered Mar 14, 2019 in Apache Spark by Raj
1,246 views
0 votes
1 answer

How to check if user has permission in Web UI?

You can implement this as follows: First, add ...READ MORE

answered Mar 14, 2019 in Apache Spark by Raj
763 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP