问题标签 [rfc3339]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
611 浏览

csv - 如何使用 RFC3339 时间戳将 influxdb 数据库导出到 csv

我想将我的 InfluxDB 数据库导出到 CSV 文件。我目前使用以下代码:

该代码有效,但时间戳显示为数字,如下所示:

我想以时间戳以 RFC3339 格式保存的方式保存它,如下所示:

0 投票
0 回答
44 浏览

postgresql - 如何使用 Apache Beam 将时间戳写入 PostgreSQL

使用 Apache Beam(Direct Runner)将 TIMESTAMP 写入 PostgreSQL 的正确方法是什么?我在任何地方都找不到这个记录。我尝试将日期格式化为rfc3339字符串,如下所示并使用 Python SDK 编写apache_beam.io.jdbc.WriteToJdbc无济于事。我的管道失败并出现以下错误:

Caused by: java.sql.BatchUpdateException: Batch entry 0 INSERT INTO beam_direct_load VALUES('Product_0993', 'Whse_J', 'Category_028', '2012-07-27T00:00:00', 100) was aborted: ERROR: column "date" is of type timestamp without time zone but expression is of type character varying

该表定义如下:

我已经为此注册了编码器ProductDemand

我的管道定义如下:

0 投票
0 回答
13 浏览

python - 特定 RFC-3339 时间格式的开始时间

我有一些测试代码用于从股票市场抓取柱形图,但在这种情况下,我专注于交易并尝试切换该测试代码:

我的问题是关于开始和结束,我不知道如何让交易说,从美国东部标准时间下午 4:00 开始到美国东部标准时间下午 4:01 结束。它需要采用 RFC-339 格式,而我未能成功将任何时间字符串转换为该格式。

这种 RFC-3339 格式有很多麻烦。