H13-723-ENU Exam Question 46
In FusionInsight HD, regarding Oozie's job operation commands, which of the following descriptions are correct? (multiple choice)
H13-723-ENU Exam Question 47
In the HBase table design, for multiple businesses sharing the rowkey, which leads to data access contradictions, what strategies can be used to deal with it?
H13-723-ENU Exam Question 48
Regarding the file format provided by Hive in the FusionInsight HD system, which is not a columnar file?
H13-723-ENU Exam Question 49
Spark Streaming can receive data from Kafka and perform calculations. The calculation results can only be stored in HDFS and cannot be written back to Kafka.
H13-723-ENU Exam Question 50
In HBase application development, when the Rowkey range and distribution of a table are known, it is recommended to pre-divide regions. After calling the following code (fragment) to pre-divide a table into regions, this table will create several regions.
//Create a table of pre-partitioned regions
byte[][] splits=new byte[4][];
splits[0] = Bytes.toBytes("A");
splits[1] = Bytes.toBytes("H");
splits[2] = Bytes.toBytes("O");
splits[3] = Bytes.toBytes("U");
admin.createTable (htd, splits);
//Create a table of pre-partitioned regions
byte[][] splits=new byte[4][];
splits[0] = Bytes.toBytes("A");
splits[1] = Bytes.toBytes("H");
splits[2] = Bytes.toBytes("O");
splits[3] = Bytes.toBytes("U");
admin.createTable (htd, splits);