1
クラウド機能がデータフロージョブが成功したかどうかを確認する方法はありますか?私が試したクラウド機能でデータフロージョブの成功を確認
クラウド機能:
const google = require('googleapis');
exports.statusJob = function(event, callback) {
const file = event.data;
if (file.resourceState === 'exists' && file.name) {
console.log(file.name);
console.log(event.data);
google.auth.getApplicationDefault(function (err, authClient, projectId) {
if (err) {
throw err;
}
if (authClient.createScopedRequired && authClient.createScopedRequired()) {
authClient = authClient.createScoped([
'https://www.googleapis.com/auth/cloud-platform',
'https://www.googleapis.com/auth/userinfo.email'
]);
}
const dataflow = google.dataflow({ version: 'v1b3', auth: authClient });
dataflow.projects.jobs.get({
projectId: 'my-project-id',
resource: {
jobId: 'some_number'
}
}, function(err, response) {
if (err) {
console.error("problem running dataflow template, error was: ", err);
}
console.log("Dataflow template response: ", response);
callback();
});
});
}
};
パッケージJSON:
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"googleapis": "^18.0.0"
}
}
以上のことは完全にONCE私のために働きました。 私が得たという応答があった。
Dataflow template response: { id: 'some_number', projectId: 'my-project-id', name: 'cloud-fn', type: 'JOB_TYPE_BATCH', environment: { userAgent: { name: 'Google Cloud Dataflow SDK for Java', support: [Object], 'build.date': '2017-05-23 19:46', version: '2.0.0' }, version: { major: '6', job_type: 'JAVA_BATCH_AUTOSCALING' } }, currentState: 'JOB_STATE_DONE',........
が、それはと言った後たびにエラーを与えた:
problem running dataflow template, error was: Error: Missing required parameters: jobId at createAPIRequest (/user_code/node_modules/googleapis/lib/apirequest.js:110:14) at Object.get (/user_code/node_modules/googleapis/apis/dataflow/v1b3.js:670:16) at /user_code/index.js:22:29 at callback (/user_code/node_modules/googleapis/node_modules/google-auth-library/lib/auth/googleauth.js:42:14) at /user_code/node_modules/googleapis/node_modules/google-auth-library/lib/auth/googleauth.js:289:13 at _combinedTickCallback (internal/process/next_tick.js:73:7) at process._tickDomainCallback (internal/process/next_tick.js:128:9)
誰もこれについて何か知っていますか?
おかげ
注:成功したジョブは「完了表示されます失敗したジョブは出力の状態フィールドに「失敗」と表示されます。 –
これはJavaScriptでクラウドファンクションのコードを使って同じことを確認したいのですが? Cloudflow関数を呼び出してデータフロージョブを呼び出すと仮定します。完了後、成功したかどうかを知りたいのですが... – rish0097
クラウド関数を呼び出してデータフロージョブを起動しようとしていますか? https://shinesolutions.com/2017/03/23/triggering-dataflow-pipelines-with-cloud-functions/ この例では、ユーザーはJavaScriptのgoogleApisにアクセスしています。 Google APIを呼び出してdataflow.projects.templates.getを呼び出す別のクラウド関数を記述することができます。残念ながら、私はJS APIのドキュメンテーション/コードサンプルを見つけることができません。しかし、私はあなたがprojectIdとjobIdパラメータで呼び出すことができると思います。 –