gpt4 book ai didi

javascript - 获取/设置谷歌云存储中的元数据 - node.js

转载 作者:行者123 更新时间:2023-12-02 20:51:04 25 4
gpt4 key购买 nike

我正在尝试从 Google Cloud Storage 文件设置和检索元数据,但我尝试的操作似乎不起作用。我的代码正在 Kubernetes Node 中运行/我有这个:

// 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' }

我错过了什么?

最佳答案

我认为这是由于文件元数据修改延迟造成的(这两个请求非常接近且太快地触发),我在您的代码中添加了一个 sleep 函数,看起来像预期的那样工作。

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 元数据 重新定义,并且看起来像预期的那样工作, sleep promise 没有共享元数据变量,因此我之前的代码可以工作,感谢 @AndyWallace这个提示

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

关于javascript - 获取/设置谷歌云存储中的元数据 - node.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61602542/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com