我的 Appsmith 实例刚刚升级到v1.6.4,但它不再启动了。在日志中,我可以看到以下异常:
Caused by: com.mongodb.MongoCommandException: Command failed with error 17 (ProtocolError): 'Attempt to switch database target during SASL authentication.' on server mongo:27017. The full response is {"ok": 0.0, "errmsg": "Attempt to switch database target during SASL authentication.", "code": 17, "codeName": "ProtocolError"}
Run Code Online (Sandbox Code Playgroud)
我可以做些什么来启动我的 Appsmith 实例吗?
我正在构建一个网络应用程序,并希望通过其 JSON API 连接来自 Quandl 的数据。但是,我从 quandl 获得的 JSON 具有与数据本身分开的列名,请检查以下内容:
{
"datatable": {
"data": [
[
"AAPL",
"MRY",
"2020-12-31",
"2020-09-26",
"2020-09-26",
"2021-07-28",
-406000000,
323888000000,
325562500000
]
],
]
],
"columns": [
{
"name": "ticker",
"type": "String"
},
{
"name": "dimension",
"type": "String"
},
{
"name": "calendardate",
"type": "Date"
},
{
"name": "datekey",
"type": "Date"
},
{
"name": "reportperiod",
"type": "Date"
},
{
"name": "lastupdated",
"type": "Date"
},
{
"name": "accoci",
"type": "Integer"
},
{
"name": "assets",
"type": "Integer"
},
{ …Run Code Online (Sandbox Code Playgroud) 这里的任何人都在这里使用 Appsmith 开源:https : //github.com/appsmithorg/appsmith
我对 DynamoDb 插件有疑问。如果有人在 Appsmith 中使用 Dynamodb,请给我看一个简单的查询,我可以将它放入 appsmith 查询编辑器并正确运行它吗?因为他们还没有文件。
我在 AWS 中看到了 DynamoDB 文档,但不知道如何在 Appsmith 中编写它。谢谢各位。