I understood the difference between String & Text. Difference between Text and String in Hadoop
Question is If we are saying that String maximum storage size is 32767 bytes.
Text t = new Text("Hadoo... 2GB of content");
...
String c = t.toString();
How "c" will hold 2GB of data if it has size limitation?
What am I missing here?