如何使用SQL查询以行存储模式在snappydata表中加载JSON数据?

时间:2018-07-05 06:09:38

标签: json snappydata

我正在使用snappydata。我有1M行的JSON文件,我想使用sql(snappydata sql)将该JSON文件加载到snappydata表中。

1 个答案:

答案 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文档是多行的,则可能会出现问题。但是,有一些方法可以解决此问题。