我正在使用snappydata。我有1M行的JSON文件,我想使用sql(snappydata sql)将该JSON文件加载到snappydata表中。
答案 0 :(得分:1)
步骤1)
create external table t1 using json options(path 'location of your json file(s)');
第2步)
加载到Snappy列或行表中:
create table My-in-memory-table using column as (select * from t1);
我认为,如果您的json文档是多行的,则可能会出现问题。但是,有一些方法可以解决此问题。