2

gRPC リクエストが成功した後にログに出力できるように、ID を継続ローカル ストレージに保存しようとしています。アプリの開始時に名前空間を作成し、ミドルウェアに ID を設定します (完全な実装では、ID はリクエストに含まれます)。次に、get('/') で ID を取得しようとします。ID の取得は機能しますが、gRPC リクエスト内で取得できません。

app.js

const cls = require('continuation-local-storage');
cls.createNamespace("THING");
var express = require('express');
var path = require('path');
var index = require('./routes/index');
var app = express();

const storeRequestId = (req, res, next) => {
  const ns = cls.getNamespace("THING");
  ns.run(() => {
    ns.set('thing-id', '123');
    next();
  });
}
app.use(storeRequestId);

app.use('/', index);

module.exports = app;

index.js

const cls = require('continuation-local-storage');
var express = require('express');
var router = express.Router();
var grpc = require('grpc');
const path = 'path/to/proto'
const rootPath = 'root/path'
console.log({root: rootPath, file: path})

const identityService = grpc.load({root: rootPath, file: path}).identity.service;
const grpcCredentials = grpc.credentials.createInsecure();
const identityClient = new identityService.Identity('localhost:8020', grpcCredentials)

/* GET home page. */
router.get('/', function(req, res, next) {
  ns = cls.getNamespace('THING');
  console.log(ns.get('thing-id'));

  const retrievePartyReq = {
    party_id: 'party123',
  }

  identityClient.retrieveParty(retrievePartyReq, (err, response) => {
    ns = cls.getNamespace('THING');
    console.log(ns.get('thing-id'));
  })

  res.status(200).send('200: All is good.');
});

module.exports = router;

これにより、ログに次のように出力されます。

123
undefined

どちらの場合も 123 を期待します。gRPC リクエスト内で名前空間から値を取得できないのはなぜですか?

4

1 に答える 1