I'm beginning learn PIG and I want to split a tuple in character '\'. My original tuple is
(192.168.2.227\al0000)
and I need to split it in '\'
(192.168.2.227, al0000)
I tryed to use
B = FOREACH original GENERATE FLATTEN (STRSPLIT(tuple, '\\u034B'));
but it dont work. What is the proper solution ?