0

我正在尝试在 openwhisk 中使用 trycatch 组合器并重定向以捕获操作,以防出现错误,但我无法重定向。以下是我正在尝试的示例代码。

var openwhisk = require('openwhisk')
var VisualRecognitionV3 = require('watson-developer-cloud/visual-recognition/v3');
var visualrecognition = new VisualRecognitionV3({
api_key: '******',
version_date: '***'});
var pkgcloud = require('pkgcloud');
var osConfig = {
provider: 'openstack',
useServiceCatalog: true,
useInternal: false,
keystoneAuthVersion: 'v3',
authUrl: '*****',
tenantId: '******',
domainId: '********',
username: 'admin_******',
password: '******',
region: 'dallas'};
var client = pkgcloud.storage.createClient(osConfig);
function main(params) {
return new Promise(function(resolve, reject) {
    var options = {
        container: params.containername || 'my-container',
        remote: params.filename || 'openwhisk.jpg',
        local: 'test.jpg'
    };
    client.download(options, function(err, result) {
        var params = {
            images_file: fs.createReadStream('test.jpg')
        };
        visualrecognition.classify(params, function(err, res) {
            if (err) {
               const wsk = openwhisk({ignore_certs: params['$ignore_certs'] || false})
            const catchName = "hello"
   return wsk.actions
       .invoke({
               actionName: catchName,
               params: catchArgs,
               blocking: true
           })
       .then(activation => activation.response.result)
       .catch(error => {
               try {
                   // if the action ran and failed, the result field is guaranteed
                   // to contain an error field causing the overall action to fail
                   // with that error
                   return error.error.response.result
               } catch (e) {
                   return {
                       error: {
                           message: `There was a problem invoking ${catchName}.`,
                           cause: error.error
                       }
                   }
               }
           })
            } else {
                var json = {
                    container: params.containername,
                    filename: params.filename
                };
                var length = res.images[0].classifiers[0].classes.length;
                json.score = 0;
                var type_hierarchy = "";
                for (i = 0; i < length; i++) {
                    var score = res.images[0].classifiers[0].classes[i].score;
                    var classes = res.images[0].classifiers[0].classes[i].class;
                    var htype = res.images[0].classifiers[0].classes[i].type_hierarchy;
                    if (score > json.score) {
                        json.score = score;
                        json.class = classes;
                        json.type_hierarchy = htype || "test";
                    }
                }
                console.log(json);
                resolve(json);
            }
        });
    });
});};

如何在 Openwhisk nodejs 操作中添加 trycatch 组合器。

4

1 回答 1

0

为了在 OpenWhisk 中使用这个 trycatch 操作,首先您需要在 OpenWhisk 中已有两个可用的其他操作。一个动作被称为try动作(定义在键tryName中)来调用,另一个是catch动作(定义在键catchName中)来处理错误/异常。例如,我们需要将 action1 作为 try 动作,将 action2 作为 catch 动作。

如果我们使用 CLI 调用 trycatch 操作: wsk action invoke -br trycatch -p '$tryName' action1 -p '$catchName' action2 -p param1 -p param2 ,因为您可能有更多参数,所以首先调用 action1 作为尝试。如果没有错误,将返回结果。没有麻烦的action2。但是如果调用action1有错误,action2会作为catch action调用来处理错误,结果就是action2在处理错误时返回的结果。

如果您想了解如何在 OpenWhisk 中使用 trycatch 动作,该动作的测试用例可以作为一个很好的参考:它开始于https://github.com/openwhisk/openwhisk-catalog/blob/master/tests/src /packages/combinators/CombinatorTests.scala#L144到此文件的末尾。

于 2017-03-07T15:09:53.620 回答