WWW.YOUINFO.SITE
标签聚合 5S

/tag/5S

IT之家 · 2026-06-08 16:32:36+08:00 · tech

IT之家 6 月 8 日消息,中兴 U15S 随身 WiFi 今日开售,有黑白两种颜色可选, 售价 179 元 。 京东 中兴(ZTE)U15S 随身 wifi 179 元 直达链接 这款产品搭载中兴自研双核芯片 V3E-A53,内置双卡、支持双网任意切换,支持 Wi-Fi 6;采用“G2 曲面手感设计”,正面配备一块 1.44 英寸触摸屏面板,可显示二维码、流量等信息;重约 237g。 这款产品内置 10000mAh 电芯,支持 18W 快充,支持 QC / PD / PPS 等协议,同时支持电源直供电模式。 IT之家附这款产品详细参数如下: 京东 618 无门槛红包 面额至高 26618 元,每天抽 3 次: 点此抽红包 淘宝 618 无门槛红包 面额至高 26888 元,每天抽 1 次: 点此抽红包

LinuxDo 最新话题 · 2026-06-05 12:41:52+08:00 · tech

原来参考了一个大佬的文档,生成了一个15s的视频,具体可以看 记录借鉴大佬之后首次成功生成AI视频 可以直接点击链接查看视频,然后我又搞了一点积分,生成了6个15s的视频进行了拼接但是没有地方进行上传,之前的上传只能小于100M,我这个1分钟的视频得有快300M,想分享出来大家给点建议。 我生成视频用的一部分图片,都是AI生成的 有大佬有可以上传视频然后直接直接生成直连访问视频的网站吗(ps:最好是免费的,要不就只能用网盘,但是还得佬们去下载) 1 个帖子 - 1 位参与者 阅读完整话题

V2EX - 技术 · 2026-06-05 08:36:48+08:00 · tech

前提: 1 亿左右的数据,数据来源是设备的轨迹数据(gps ,速度,温度等信息),设备端按 5s 左右一次上报 查询需求: 能支持查询 3 400 台设备的最新轨迹数据 查询单个设备的轨迹信息(这个简单) 我自己尝试搭建了 3 个节点的 es ,每个节点 4g 左右内存,发现执行需求 1 时,大概需要 2-5s 左右,查询语句: curl -X GET "http://192.168.1.210:9200/test_index/_search?pretty" \ -H 'Content-Type: application/json' \ -d '{ "query": { "terms": { "serialNumber": [省略 sn] } }, "collapse": { "field": "serialNumber" }, "size": 300 }' mapping 信息: { "settings": { "number_of_shards": 3, "number_of_replicas": 1, "index": { "sort.field": "createTime", "sort.order": "desc" } }, "mappings": { "properties": { "serialNumber": { "type": "keyword" }, "createTime": { "type": "date", "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss" }, "longitude": { "type": "double" }, "latitude": { "type": "double" } } } } 请问可以做到需求 1 查询 3-400 台设备,耗时到 1s 左右吗?

V2EX - 技术 · 2026-06-05 08:36:48+08:00 · tech

前提: 1 亿左右的数据,数据来源是设备的轨迹数据(gps ,速度,温度等信息),设备端按 5s 左右一次上报 查询需求: 能支持查询 3 400 台设备的最新轨迹数据 查询单个设备的轨迹信息(这个简单) 我自己尝试搭建了 3 个节点的 es ,每个节点 4g 左右内存,发现执行需求 1 时,大概需要 2-5s 左右,查询语句: curl -X GET "http://192.168.1.210:9200/test_index/_search?pretty" \ -H 'Content-Type: application/json' \ -d '{ "query": { "terms": { "serialNumber": [省略 sn] } }, "collapse": { "field": "serialNumber" }, "size": 300 }' mapping 信息: { "settings": { "number_of_shards": 3, "number_of_replicas": 1, "index": { "sort.field": "createTime", "sort.order": "desc" } }, "mappings": { "properties": { "serialNumber": { "type": "keyword" }, "createTime": { "type": "date", "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss" }, "longitude": { "type": "double" }, "latitude": { "type": "double" } } } } 请问可以做到需求 1 查询 3-400 台设备,耗时到 1s 左右吗?

V2EX - 技术 · 2026-06-05 07:36:48+08:00 · tech

前提: 1 亿左右的数据,数据来源是设备的轨迹数据(gps ,速度,温度等信息),设备端按 5s 左右一次上报 查询需求: 能支持查询 3 400 台设备的最新轨迹数据 查询单个设备的轨迹信息(这个简单) 我自己尝试搭建了 3 个节点的 es ,每个节点 4g 左右内存,发现执行需求 1 时,大概需要 2-5s 左右,查询语句: curl -X GET "http://192.168.1.210:9200/test_index/_search?pretty" \ -H 'Content-Type: application/json' \ -d '{ "query": { "terms": { "serialNumber": [省略 sn] } }, "collapse": { "field": "serialNumber" }, "size": 300 }' mapping 信息: { "settings": { "number_of_shards": 3, "number_of_replicas": 1, "index": { "sort.field": "createTime", "sort.order": "desc" } }, "mappings": { "properties": { "serialNumber": { "type": "keyword" }, "createTime": { "type": "date", "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss" }, "longitude": { "type": "double" }, "latitude": { "type": "double" } } } } 请问可以做到需求 1 查询 3-400 台设备,耗时到 1s 左右吗?

V2EX - 技术 · 2026-06-05 06:36:48+08:00 · tech

前提: 1 亿左右的数据,数据来源是设备的轨迹数据(gps ,速度,温度等信息),设备端按 5s 左右一次上报 查询需求: 能支持查询 3 400 台设备的最新轨迹数据 查询单个设备的轨迹信息(这个简单) 我自己尝试搭建了 3 个节点的 es ,每个节点 4g 左右内存,发现执行需求 1 时,大概需要 2-5s 左右,查询语句: curl -X GET "http://192.168.1.210:9200/test_index/_search?pretty" \ -H 'Content-Type: application/json' \ -d '{ "query": { "terms": { "serialNumber": [省略 sn] } }, "collapse": { "field": "serialNumber" }, "size": 300 }' mapping 信息: { "settings": { "number_of_shards": 3, "number_of_replicas": 1, "index": { "sort.field": "createTime", "sort.order": "desc" } }, "mappings": { "properties": { "serialNumber": { "type": "keyword" }, "createTime": { "type": "date", "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss" }, "longitude": { "type": "double" }, "latitude": { "type": "double" } } } } 请问可以做到需求 1 查询 3-400 台设备,耗时到 1s 左右吗?

V2EX - 技术 · 2026-06-05 06:36:48+08:00 · tech

前提: 1 亿左右的数据,数据来源是设备的轨迹数据(gps ,速度,温度等信息),设备端按 5s 左右一次上报 查询需求: 能支持查询 3 400 台设备的最新轨迹数据 查询单个设备的轨迹信息(这个简单) 我自己尝试搭建了 3 个节点的 es ,每个节点 4g 左右内存,发现执行需求 1 时,大概需要 2-5s 左右,查询语句: curl -X GET "http://192.168.1.210:9200/test_index/_search?pretty" \ -H 'Content-Type: application/json' \ -d '{ "query": { "terms": { "serialNumber": [省略 sn] } }, "collapse": { "field": "serialNumber" }, "size": 300 }' mapping 信息: { "settings": { "number_of_shards": 3, "number_of_replicas": 1, "index": { "sort.field": "createTime", "sort.order": "desc" } }, "mappings": { "properties": { "serialNumber": { "type": "keyword" }, "createTime": { "type": "date", "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss" }, "longitude": { "type": "double" }, "latitude": { "type": "double" } } } } 请问可以做到需求 1 查询 3-400 台设备,耗时到 1s 左右吗?

V2EX - 技术 · 2026-06-05 05:36:48+08:00 · tech

前提: 1 亿左右的数据,数据来源是设备的轨迹数据(gps ,速度,温度等信息),设备端按 5s 左右一次上报 查询需求: 能支持查询 3 400 台设备的最新轨迹数据 查询单个设备的轨迹信息(这个简单) 我自己尝试搭建了 3 个节点的 es ,每个节点 4g 左右内存,发现执行需求 1 时,大概需要 2-5s 左右,查询语句: curl -X GET "http://192.168.1.210:9200/test_index/_search?pretty" \ -H 'Content-Type: application/json' \ -d '{ "query": { "terms": { "serialNumber": [省略 sn] } }, "collapse": { "field": "serialNumber" }, "size": 300 }' mapping 信息: { "settings": { "number_of_shards": 3, "number_of_replicas": 1, "index": { "sort.field": "createTime", "sort.order": "desc" } }, "mappings": { "properties": { "serialNumber": { "type": "keyword" }, "createTime": { "type": "date", "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss" }, "longitude": { "type": "double" }, "latitude": { "type": "double" } } } } 请问可以做到需求 1 查询 3-400 台设备,耗时到 1s 左右吗?

V2EX - 技术 · 2026-06-05 03:36:48+08:00 · tech

前提: 1 亿左右的数据,数据来源是设备的轨迹数据(gps ,速度,温度等信息),设备端按 5s 左右一次上报 查询需求: 能支持查询 3 400 台设备的最新轨迹数据 查询单个设备的轨迹信息(这个简单) 我自己尝试搭建了 3 个节点的 es ,每个节点 4g 左右内存,发现执行需求 1 时,大概需要 2-5s 左右,查询语句: curl -X GET "http://192.168.1.210:9200/test_index/_search?pretty" \ -H 'Content-Type: application/json' \ -d '{ "query": { "terms": { "serialNumber": [省略 sn] } }, "collapse": { "field": "serialNumber" }, "size": 300 }' mapping 信息: { "settings": { "number_of_shards": 3, "number_of_replicas": 1, "index": { "sort.field": "createTime", "sort.order": "desc" } }, "mappings": { "properties": { "serialNumber": { "type": "keyword" }, "createTime": { "type": "date", "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss" }, "longitude": { "type": "double" }, "latitude": { "type": "double" } } } } 请问可以做到需求 1 查询 3-400 台设备,耗时到 1s 左右吗?

V2EX - 技术 · 2026-06-05 02:36:48+08:00 · tech

前提: 1 亿左右的数据,数据来源是设备的轨迹数据(gps ,速度,温度等信息),设备端按 5s 左右一次上报 查询需求: 能支持查询 3 400 台设备的最新轨迹数据 查询单个设备的轨迹信息(这个简单) 我自己尝试搭建了 3 个节点的 es ,每个节点 4g 左右内存,发现执行需求 1 时,大概需要 2-5s 左右,查询语句: curl -X GET "http://192.168.1.210:9200/test_index/_search?pretty" \ -H 'Content-Type: application/json' \ -d '{ "query": { "terms": { "serialNumber": [省略 sn] } }, "collapse": { "field": "serialNumber" }, "size": 300 }' mapping 信息: { "settings": { "number_of_shards": 3, "number_of_replicas": 1, "index": { "sort.field": "createTime", "sort.order": "desc" } }, "mappings": { "properties": { "serialNumber": { "type": "keyword" }, "createTime": { "type": "date", "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss" }, "longitude": { "type": "double" }, "latitude": { "type": "double" } } } } 请问可以做到需求 1 查询 3-400 台设备,耗时到 1s 左右吗?

V2EX - 技术 · 2026-06-05 01:36:48+08:00 · tech

前提: 1 亿左右的数据,数据来源是设备的轨迹数据(gps ,速度,温度等信息),设备端按 5s 左右一次上报 查询需求: 能支持查询 3 400 台设备的最新轨迹数据 查询单个设备的轨迹信息(这个简单) 我自己尝试搭建了 3 个节点的 es ,每个节点 4g 左右内存,发现执行需求 1 时,大概需要 2-5s 左右,查询语句: curl -X GET "http://192.168.1.210:9200/test_index/_search?pretty" \ -H 'Content-Type: application/json' \ -d '{ "query": { "terms": { "serialNumber": [省略 sn] } }, "collapse": { "field": "serialNumber" }, "size": 300 }' mapping 信息: { "settings": { "number_of_shards": 3, "number_of_replicas": 1, "index": { "sort.field": "createTime", "sort.order": "desc" } }, "mappings": { "properties": { "serialNumber": { "type": "keyword" }, "createTime": { "type": "date", "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss" }, "longitude": { "type": "double" }, "latitude": { "type": "double" } } } } 请问可以做到需求 1 查询 3-400 台设备,耗时到 1s 左右吗?

V2EX - 技术 · 2026-06-05 01:36:48+08:00 · tech

前提: 1 亿左右的数据,数据来源是设备的轨迹数据(gps ,速度,温度等信息),设备端按 5s 左右一次上报 查询需求: 能支持查询 3 400 台设备的最新轨迹数据 查询单个设备的轨迹信息(这个简单) 我自己尝试搭建了 3 个节点的 es ,每个节点 4g 左右内存,发现执行需求 1 时,大概需要 2-5s 左右,查询语句: curl -X GET "http://192.168.1.210:9200/test_index/_search?pretty" \ -H 'Content-Type: application/json' \ -d '{ "query": { "terms": { "serialNumber": [省略 sn] } }, "collapse": { "field": "serialNumber" }, "size": 300 }' mapping 信息: { "settings": { "number_of_shards": 3, "number_of_replicas": 1, "index": { "sort.field": "createTime", "sort.order": "desc" } }, "mappings": { "properties": { "serialNumber": { "type": "keyword" }, "createTime": { "type": "date", "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss" }, "longitude": { "type": "double" }, "latitude": { "type": "double" } } } } 请问可以做到需求 1 查询 3-400 台设备,耗时到 1s 左右吗?

V2EX - 技术 · 2026-06-05 00:39:22+08:00 · tech

前提: 1 亿左右的数据,数据来源是设备的轨迹数据(gps ,速度,温度等信息),设备端按 5s 左右一次上报 查询需求: 能支持查询 3 400 台设备的最新轨迹数据 查询单个设备的轨迹信息(这个简单) 我自己尝试搭建了 3 个节点的 es ,每个节点 4g 左右内存,发现执行需求 1 时,大概需要 2-5s 左右,查询语句: curl -X GET "http://192.168.1.210:9200/test_index/_search?pretty" \ -H 'Content-Type: application/json' \ -d '{ "query": { "terms": { "serialNumber": [省略 sn] } }, "collapse": { "field": "serialNumber" }, "size": 300 }' mapping 信息: { "settings": { "number_of_shards": 3, "number_of_replicas": 1, "index": { "sort.field": "createTime", "sort.order": "desc" } }, "mappings": { "properties": { "serialNumber": { "type": "keyword" }, "createTime": { "type": "date", "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss" }, "longitude": { "type": "double" }, "latitude": { "type": "double" } } } } 请问可以做到需求 1 查询 3-400 台设备,耗时到 1s 左右吗?

V2EX - 技术 · 2026-06-04 23:21:45+08:00 · tech

前提: 1 亿左右的数据,数据来源是设备的轨迹数据(gps ,速度,温度等信息),设备端按 5s 左右一次上报 查询需求: 能支持查询 3 400 台设备的最新轨迹数据 查询单个设备的轨迹信息(这个简单) 我自己尝试搭建了 3 个节点的 es ,每个节点 4g 左右内存,发现执行需求 1 时,大概需要 2-5s 左右,查询语句: curl -X GET "http://192.168.1.210:9200/test_index/_search?pretty" \ -H 'Content-Type: application/json' \ -d '{ "query": { "terms": { "serialNumber": [省略 sn] } }, "collapse": { "field": "serialNumber" }, "size": 300 }' mapping 信息: { "settings": { "number_of_shards": 3, "number_of_replicas": 1, "index": { "sort.field": "createTime", "sort.order": "desc" } }, "mappings": { "properties": { "serialNumber": { "type": "keyword" }, "createTime": { "type": "date", "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss" }, "longitude": { "type": "double" }, "latitude": { "type": "double" } } } } 请问可以做到需求 1 查询 3-400 台设备,耗时到 1s 左右吗?

V2EX - 技术 · 2026-06-04 22:23:31+08:00 · tech

前提: 1 亿左右的数据,数据来源是设备的轨迹数据(gps ,速度,温度等信息),设备端按 5s 左右一次上报 查询需求: 能支持查询 3 400 台设备的最新轨迹数据 查询单个设备的轨迹信息(这个简单) 我自己尝试搭建了 3 个节点的 es ,每个节点 4g 左右内存,发现执行需求 1 时,大概需要 2-5s 左右,查询语句: curl -X GET "http://192.168.1.210:9200/test_index/_search?pretty" \ -H 'Content-Type: application/json' \ -d '{ "query": { "terms": { "serialNumber": [省略 sn] } }, "collapse": { "field": "serialNumber" }, "size": 300 }' mapping 信息: { "settings": { "number_of_shards": 3, "number_of_replicas": 1, "index": { "sort.field": "createTime", "sort.order": "desc" } }, "mappings": { "properties": { "serialNumber": { "type": "keyword" }, "createTime": { "type": "date", "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss" }, "longitude": { "type": "double" }, "latitude": { "type": "double" } } } } 请问可以做到需求 1 查询 3-400 台设备,耗时到 1s 左右吗?

V2EX - 技术 · 2026-06-04 22:23:31+08:00 · tech

前提: 1 亿左右的数据,数据来源是设备的轨迹数据(gps ,速度,温度等信息),设备端按 5s 左右一次上报 查询需求: 能支持查询 3 400 台设备的最新轨迹数据 查询单个设备的轨迹信息(这个简单) 我自己尝试搭建了 3 个节点的 es ,每个节点 4g 左右内存,发现执行需求 1 时,大概需要 2-5s 左右,查询语句: curl -X GET "http://192.168.1.210:9200/test_index/_search?pretty" \ -H 'Content-Type: application/json' \ -d '{ "query": { "terms": { "serialNumber": [省略 sn] } }, "collapse": { "field": "serialNumber" }, "size": 300 }' mapping 信息: { "settings": { "number_of_shards": 3, "number_of_replicas": 1, "index": { "sort.field": "createTime", "sort.order": "desc" } }, "mappings": { "properties": { "serialNumber": { "type": "keyword" }, "createTime": { "type": "date", "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss" }, "longitude": { "type": "double" }, "latitude": { "type": "double" } } } } 请问可以做到需求 1 查询 3-400 台设备,耗时到 1s 左右吗?