我想在 Superset 仪表板上放置一些图表。我想要的布局是这样的:
____________________
| | |
| | B |
| A |_________|
| | |
| | C |
|__________|_________|
Run Code Online (Sandbox Code Playgroud)
A 是包含一些主要信息的图表,B 和 C 是其详细信息。问题是,如果我按原样放置 B,那么 C 就不能放在 B 下面,并且将形成一个全新的行。我试图用空行、空列或分隔符来实现这种形式,但还没有成功。
我的 KafkaStream 应用程序之一出现以下错误:
Closing the Kafka producer with timeoutMillis = 9223372036854775807 ms
Run Code Online (Sandbox Code Playgroud)
这不太可能是权限或连接问题。因为它消耗了一批消息(可能直到最后一条可用消息)然后我Informed to shut down在日志中看到,然后State transition from RUNNING to PENDING_SHUTDOWN. 然后我收到超时错误。这是一个简单的单线程应用程序,代码如下:
Closing the Kafka producer with timeoutMillis = 9223372036854775807 ms
Run Code Online (Sandbox Code Playgroud) 在我的 Maven 项目中,我使用 Maven avro 插件从 avro 架构文件创建 Java 类。这是我从架构注册表获得的 avro 文件。
{
"type":"record",
"name":"Envelope",
"namespace":"mongodb.company.price_service_company_calc_logs",
"fields":[
{
"name":"after",
"type":[
null,
{
"type":"string",
"connect.version":1,
"connect.name":"io.debezium.data.Json"
}
],
"default":null
},
{
"name":"patch",
"type":[
null,
{
"type":"string",
"connect.version":1,
"connect.name":"io.debezium.data.Json"
}
],
"default":null
},
{
"name":"filter",
"type":[
null,
{
"type":"string",
"connect.version":1,
"connect.name":"io.debezium.data.Json"
}
],
"default":null
},
{
"name":"source",
"type":{
"type":"record",
"name":"Source",
"namespace":"io.debezium.connector.mongo",
"fields":[
{
"name":"version",
"type":"string"
},
{
"name":"connector",
"type":"string"
},
{
"name":"name",
"type":"string"
},
{
"name":"ts_ms",
"type":"long"
},
{
"name":"snapshot",
"type":[
{ …Run Code Online (Sandbox Code Playgroud)