Question
Once new DataNodes are added, does Hadoop automatically balance blocks across them?

Answers





Search
Can you Answer!!
  • Q Which is the smallest among the following water bodies?
  • Q Filled with the enthusiasm and excitement of hostel life, you are exploring your new home when suddenly you bump into what appears to be a wall. Closer examination reveals the "wall" to be actually a gigantic, disgruntled and unshaven SENIOR. You politely say "Hi!". SENIOR just grunts in reply. You are about to continue when suddenly SENIOR booms out "Hey FRESHIE!". The plaster is still falling off the ceiling as you turn back with trembling legs. So starts a nice interactive session with SENIOR. One-way intros over, SENIOR starts asking more technical questions. Your slowly losing that gentle smile on your lips as the questions get livelier. But here comes a question which puts the g.s. back where it belongs: SENIOR says, " I will give you a number (N). Find positive integers `x' and `y' so that x^y + y^x = N, and the sum (x + y) is maximum." So your job is to find such x and y. Input: The integer N in a line by itself. Output: The values of x and y in the format x y on a line by themselves, separated by a blank. Any order of x and y is ok.
  • Q Which class is not inherited from object class?
  • Q What is Wrapper class in dot net?
  • Q You are creating an ASP.NET page to enroll new members in a health care program for TestKing employees. One of the requirements for membership is that a participant must be at least 65 years old. You need to ensure that each prospective member enters a name in a TextBox control named nameTextBox and a date of birth in a TextBox control named birthdayTextBox. In addition, you need to verify that prospective members meet the age requirement.What should you do? A. Add a CustomValidator to the page. In the Properties window, set the ControlToValidate property to birthdayTextBox. Write code to validate the date of birth. Add a RegularExpressionValidator control to the page. In the Properties window, set the ControlToValidate property to nameTextBox, and create a regular expression to validate the name. B. Add a CompareValidator control to the page. In the Properties window, set the ControlToValidate property to birthdayTextBox. Write code that sets the Operator and ValueToCompare properties to validate the date of birth. Add a RequiredFieldValidator control to the page. In the Properties window, set the ControlToValidate property to nameTextBox. C. Add a RangeValidator control to the page. In the Properties window, set the ControlToValidate property to birthdayTextBox. Write code that sets the MinimumValue and MaximumValue properties to validate the date of birth. Add a CompareValidator control to the page. In the Properties window, set the ControlToValidate property to nameTextBox. Add a second CompareValidator control to the page. In the Properties window, set the ControlToValidate property to birthdayTextBox. Write code that sets the Operator and ValueToCompare properties of the two CompareValidator controls to validate the name and date of birth. D. Add a CustomValidator control to the page. In the Properties window, set the ControlToValidate property to birthdayTextBox, and write code to validate the date of birth. Add a RequiredFieldValidator control to the page. In the Properties window, set the ControlToValidate property to nameTextBox. Add a second RequiredFieldValidator control to the page. In the Properties window, set the ControlToValidate property to birthdayTextBox.
  • Q What is the difference between wmlscript and javascript
  • Q What does the absorption spectrum of a pigment mean?
  • Q How much blood does an average adult have in the body?
  • Q Bio Diversity means?
  • Q What is cross coverage ?
  • Q Assuming a method contains code which may raise an Exception (but not a RuntimeException), what is the correct way for a method to indicate that it expects the caller to handle that exception: 1) throw Exception 2) throws Exception 3) new Exception 4) Don't need to specify anything