数据管理服务 DAS-命令查询:使用须知

时间:2024-04-09 16:00:03

使用须知

  • 不支持timestampe()命令。
  • 不支持db.collection.aggregate()命令,可以先使用db.runCommand命令替代。具体语法使用请参考以下示例。
    db.runCommand({
    	aggregate: "collection",
    	pipeline: [{
    			"$match": {
    				"time": {
    					"$gte": 20.0
    				}
    			}
    		},
    		{
    			"$sort": {
    				"time": -1.0
    			}
    		}
    	]
    });
support.huaweicloud.com/usermanual-das/das_14_0007.html