如何使用Java或Spark-Java在Cloudant中保存批量文档?

时间:2016-11-28 06:59:37

标签: java apache-spark cloudant

Java中可用的Cloudant客户端库,一次存储一个文档,

CloudantClient client = ClientBuilder.account("accounbt")
                    .username("username").password("password")
                    .disableSSLAuthentication().build();*/

            Database db = client.database("databaseName", true);

            db.save(jsonObject);

有没有办法在cloudant中保存批量文档?

1 个答案:

答案 0 :(得分:1)

以下是可以启用批量上传的代码,

CloudantClient client = ClientBuilder.account("accounbt")
                        .username("username").password("password")
                        .disableSSLAuthentication().build();*/

Database db = client.database("databaseName", true);

List<JSONObject> arrayJson = new ArrayList<String>();
arrayJson.add(new JSONObject("{data:hello}"));
arrayJson.add(new JSONObject("{data:hello1}"));
arrayJson.add(new JSONObject("{data:hello2}"));
db.bulk(arrayJson);