In writing out json data for Drill processing, I am doing the following json_object1 \n json_object2 \n json_object3 \n ... json_objectn \n
Then, drill recognizes n json objects and process them as I wanted. But this is not correct json format. To be legit json format, it should be [json_object1,json_object2, json_object3, ..., json_objectn] If I do this, while this is a legit json object, Drill sees this as a one record. What will be the right approach here? Is there a way to produce a legit json file and Drill sees separate objects in the list of the top level json? Sungwook
