Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/414.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 获取/设置google云存储中的元数据-node.js_Javascript_Node.js_Google Cloud Storage_Metadata - Fatal编程技术网

Javascript 获取/设置google云存储中的元数据-node.js

Javascript 获取/设置google云存储中的元数据-node.js,javascript,node.js,google-cloud-storage,metadata,Javascript,Node.js,Google Cloud Storage,Metadata,我试图从Google云存储文件中设置和检索元数据,但我尝试的似乎不起作用。我的代码正在Kubernetes节点中运行/我有: // let's make sure that the source file is still there. let sourceFile = storage.bucket(sourceFileObject.bucket).file( sourceFileObject.name ); const metadata = { MD_DL_ERROR: 1 };

我试图从Google云存储文件中设置和检索元数据,但我尝试的似乎不起作用。我的代码正在Kubernetes节点中运行/我有:

// let's make sure that the source file is still there.
let sourceFile = storage.bucket(sourceFileObject.bucket).file( sourceFileObject.name );

const metadata = {
      MD_DL_ERROR: 1
};

console.log( `Setting metadata for ${sourceFileObject.name} to: `, metadata );

sourceFile.setMetadata(metadata, function(err, apiResponse) {

    console.log( `NOW GETTING METADATA for: ${sourceFileObject.name}` );

    sourceFile.getMetadata( function(err, metadata, apiResponse) {
        console.log( "got metadata: ", metadata );
    } );
});
但当它运行时,日志中的内容根本没有显示元数据已设置的任何指示:

 Setting metadata for CA-SACMLS/20022759_000.jpg to:  { MD_DL_ERROR: 1 }

 NOW GETTING METADATA for: CA-SACMLS/20022759_000.jpg
 got metadata:  { kind: 'storage#object',
   id:        'idx-photos-raw-gs.ihouseprd.com/CA-SACMLS/20022759_000.jpg/1588629892121256',
   selfLink:  'https://blah blah blah',
   mediaLink: 'https://blah blah blah',
   name: 'CA-SACMLS/20022759_000.jpg',
   bucket: 'idx-photos-raw-gs.ihouseprd.com',
   generation: '1588629892121256',
   metageneration: '2',
   contentType: 'image/jpg',
   storageClass: 'MULTI_REGIONAL',
   size: '124923',
   md5Hash: 'HASHVAL',
   crc32c: 'koOVMQ==',
   etag: 'CKiFmcObm+kCEAI=',
   timeCreated: '2020-05-04T22:04:52.120Z',
   updated: '2020-05-04T22:04:52.509Z',
   timeStorageClassUpdated: '2020-05-04T22:04:52.120Z' }

我遗漏了什么?

我认为这是由于修改文件元数据的延迟造成的(2请求触发得非常近,速度太快),我在代码中添加了一个睡眠功能,看起来工作正常

const {Storage} = require('@google-cloud/storage');
const storage = new Storage();
const myBucket = storage.bucket('fakebucket');

//sleep definition
const sleep = (waitTimeInMs) => new Promise(resolve => setTimeout(resolve, waitTimeInMs));

const sourceFileObject = myBucket.file('demo.zip');
const metadata = {
    metadata: {
        rrasd: 'custom',
        adsdasdasd: 'go here'
    }
};

sourceFileObject.setMetadata(metadata, function(err, apiResponse) {
    //wait for the propagation
    sleep(250).then(() => {
        sourceFileObject.getMetadata(function(err, metadata, apiResponse) {
            console.log("got metadata: ", metadata);
        })
    })
});
};

更新

我更改了代码以避免
const metadata
重新定义,并且看起来像预期的那样工作,《睡眠承诺》没有共享元数据变量,因此我以前的代码工作正常,感谢@AndyWallace提供此提示

  const nmetadata = {
  metadata: {
    rr123809123asd: 'custom'
  }
};
  sourceFileObject.setMetadata(nmetadata, function(err, apiResponse) {
    sourceFileObject.getMetadata( function(err, metadata, apiResponse) {
      console.log( "got metadata: ", metadata );
    })
   });
};


谢谢,看来已经解决了。对于阅读该解决方案的其他人,请注意const元数据的重新定义——这也是关键。很烦人,但很关键。