Questions tagged «amazon-s3»

Amazon S3(简单存储服务)是一项Web服务,提供存储和各种接口以访问存储在其中的数据。

0
AWS S3 / Athena:如何在查询结果中接收JSON?
比方说,我在amazon-s3中有以下结构的消息: { "msg_type": "foo", "msg_body": { "str_field": "hello", "int_field": 1 } } 在Athena中执行以下查询时: SELECT * FROM foo_table 它总是返回引号中的数字(参见“int_field”:“1”): {"int_field":"1","str_field":"hello"} 如果我像这样修改消息: { "msg_type": "foo2", "msg_body": "{ \"str_field\": \"hello\", \"int_field\": 1 }" } 它返回普通的JSON对象: { "str_field": "hello", "int_field": 1 } 所以,我的问题是: 这是正常的行为吗? 如何执行查询,所以我可以接收普通的JSON对象,因为我需要复制粘贴它进行测试? PS 1)我正在查看https://engineering.skybettingandgaming.com/2015/01/20/parsing-json-in-hive/,但我遇到以下错误:函数get_json_object未注册 2)我不能在亚马逊论坛上问它(可能,等几个小时,但我今天需要回答):你的帐户尚未准备好发布消息了。有关详细信息,请参阅以下文章:https://aws.amazon.com/premiumsupport/knowledge-center/error-forum-post/

0
Duplicity&S3:“写入操作超时”
我正在尝试在Amazon S3上设置具有双重性的自动备份,但我不断收到一个奇怪的错误,这些错误未显示在Google搜索上。 machina:~# duplicity --version duplicity 0.6.14 这是我正在使用的脚本: #!/bin/bash export AWS_ACCESS_KEY_ID=???? export AWS_SECRET_ACCESS_KEY=???? export PASSPHRASE=???? duplicity --encrypt-key=A36FFD9E --sign-key DA5D5B8B --s3-european-buckets --s3-use-new-style /source/folder/ s3+http://[bucket].s3.amazonaws.com export AWS_ACCESS_KEY_ID= export AWS_SECRET_ACCESS_KEY= export PASSPHRASE= ......和输出: machina:~# ./backup.sh Local and Remote metadata are synchronized, no sync needed. Last full backup date: none No signatures found, switching …

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.