Let there is a Black Friday sale coming up for a very popula…

Let there is a Black Friday sale coming up for a very popular item in an online store that you have been implemented using a Kafka cluster comprised of three brokers. For the sale, you created a topic named black_friday_orders with with one partition with 1 replica count. Based on the amount of the incoming traffic to handle, you realize that the current configuration is not scalable. What changes will you make to yield higher throughput?

How many properties does this Student class have? class Stud…

How many properties does this Student class have? class Student {      fullName: string;      constructor (public firstname: string, public middleInitial: string, public lastName: string) {              this.fullName = firstName + ” ” + middleInitial + ” ” + lastName;      }