积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部数据库(176)PostgreSQL(41)TiDB(38)数据库中间件(24)数据库工具(21)Greenplum(15)DBeaver(15)Vitess(9)ClickHouse(9)MySQL(4)

语言

全部英语(124)中文(简体)(42)俄语(4)英语(4)

格式

全部PDF文档 PDF(174)PPT文档 PPT(1)其他文档 其他(1)
 
本次搜索耗时 0.580 秒,为您找到相关结果约 176 个.
  • 全部
  • 数据库
  • PostgreSQL
  • TiDB
  • 数据库中间件
  • 数据库工具
  • Greenplum
  • DBeaver
  • Vitess
  • ClickHouse
  • MySQL
  • 全部
  • 英语
  • 中文(简体)
  • 俄语
  • 英语
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Apache Cassandra static column 介绍与实战

    Apache Cassandra static column 介绍与实战 Spark大数据博客 - https://www.iteblog.com Apache Cassandra static column 介绍与实战 假设我们有这样的场景:我们想在 Cassandra 中使用一张表记录用户基本信息(比如 email、密 码等)以及用户状态更新。我们知道,用户的基本信息一般很少会变动,但是状态会经常变化, ,Cassandra 引入了 static column。同一个 partition key 中被声明为 static 的列只有一个值的,也就是只存储一份。 如果想及时了 解Spark、Hadoop或者Hbase相关的文章,欢迎关注微信公共帐号:iteblog_hadoop 定义 static column 在表中将某个列定义为 STATIC 很简单,只需要在列的最后面加上 STATIC 关键字,具体如下: "email" text STATIC, "encrypted_password" blob STATIC, "body" text, PRIMARY KEY ("username", "id") ); iteblog_users_with_status_updates 表中我们将 email 和 encrypted_password 两个字段设置为 STATIC 了,这意味着同一个 username
    0 码力 | 5 页 | 0 Bytes | 1 年前
    3
  • pdf文档 Apache ShardingSphere 5.2.1 Document

    high concurrency in OLTP scenarios . . . . . . . . . . . . . . . . . . . 18 Mass data real‐time analysis in OLAP scenarios . . . . . . . . . . . . . . . . . . . 19 3.1.5 Related References . . . . . utilizing data in a complex data environment. Sharding‐ Sphere provides complex data query and analysis capabilities across data sources, simpli‐ fying the data aggregation from different data locations enhancement capabili‐ ties through traffic deformation, redirection, governance, authentication, and analysis. 1.2.3 Pluggable: Building database function ecology The pluggable architecture of Apache ShardingSphere
    0 码力 | 523 页 | 4.51 MB | 1 年前
    3
  • pdf文档 Apache ShardingSphere 5.2.0 Document

    high concurrency in OLTP scenarios . . . . . . . . . . . . . . . . . . . 19 Mass data real‐time analysis in OLAP scenarios . . . . . . . . . . . . . . . . . . . 20 3.1.5 Related References . . . . . enhancement capabili‐ ties through traffic deformation, redirection, governance, authentication, and analysis. 1.2. Design Philosophy 5 Apache ShardingSphere document, v5.2.0 1.2.3 Pluggable: Building database Heterogeneous language Java Only Any Performance Low loss Relatively High loss Decentralization Yes No Static entry No Yes Independent ShardingSphere-Proxy ShardingSphere‐Proxy is a transparent database proxy
    0 码力 | 483 页 | 4.27 MB | 1 年前
    3
  • pdf文档 TiDB v6.1 Documentation

    · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 956 10.1.7 7. Common log analysis · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 962 10.2 Identify · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1060 10.15.5 TiFlash analysis is slow· · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1060 10 Tuning Overview · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1071 11.1.2 Performance Analysis and Tuning · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1076 11.1.3 Performance
    0 码力 | 4487 页 | 84.44 MB | 1 年前
    3
  • pdf文档 TiDB v6.5 Documentation

    Tuning Overview · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1246 11.1.2 Performance Analysis and Tuning · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1251 11.1.3 Performance · · · · · · · · 1274 11.1.4 TiFlash Performance Analysis and Tuning Methods· · · · · · · · · · · · · · · · · 1298 11 11.1.5 TiCDC Performance Analysis and Tuning Methods · · · · · · · · · · · · · · · use an ETL (Extract, Transform, Load) tool to replicate the data into an OLAP database for data analysis. This solution 32 has multiple disadvantages such as high storage costs and poor real-time performance
    0 码力 | 5282 页 | 99.69 MB | 1 年前
    3
  • pdf文档 TiDB v7.1 Documentation

    Tuning Overview · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1282 11.1.2 Performance Analysis and Tuning · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1287 11.1.3 Performance · · · · · · · · · 1310 11.1.4 TiFlash Performance Analysis and Tuning Methods· · · · · · · · · · · · · · · · · 1334 11.1.5 TiCDC Performance Analysis and Tuning Methods · · · · · · · · · · · · · · · · amount of extra storage cost, you can handle both online transactional processing and real-time data analysis in the same system, which greatly saves cost. • Data aggregation and secondary processing scenarios
    0 码力 | 5716 页 | 104.74 MB | 1 年前
    3
  • pdf文档 TiDB v7.6 Documentation

    Tuning Overview · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1300 11.1.2 Performance Analysis and Tuning · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1305 11.1.3 Performance · · · · · · · · · 1328 11.1.4 TiFlash Performance Analysis and Tuning Methods· · · · · · · · · · · · · · · · · 1352 11.1.5 TiCDC Performance Analysis and Tuning Methods · · · · · · · · · · · · · · · · amount of extra storage cost, you can handle both online transactional processing and real-time data analysis in the same system, which greatly saves cost. • Data aggregation and secondary processing scenarios
    0 码力 | 6123 页 | 107.24 MB | 1 年前
    3
  • pdf文档 TiDB v7.5 Documentation

    Tuning Overview · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1286 11.1.2 Performance Analysis and Tuning · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1291 11.1.3 Performance · · · · · · · · · 1314 11.1.4 TiFlash Performance Analysis and Tuning Methods· · · · · · · · · · · · · · · · · 1338 11.1.5 TiCDC Performance Analysis and Tuning Methods · · · · · · · · · · · · · · · · amount of extra storage cost, you can handle both online transactional processing and real-time data analysis in the same system, which greatly saves cost. • Data aggregation and secondary processing scenarios
    0 码力 | 6020 页 | 106.82 MB | 1 年前
    3
  • pdf文档 Apache ShardingSphere v5.5.0 document

    high concurrency in OLTP scenarios . . . . . . . . . . . . . . . . . . . 22 Mass data real‐time analysis in OLAP scenarios . . . . . . . . . . . . . . . . . . . 23 8.1.5 Related References . . . . . utilizing data in a complex data environment. Sharding‐ Sphere provides complex data query and analysis capabilities across data sources, simpli‐ fying the data aggregation from different data locations enhancement capabili‐ ties through traffic deformation, redirection, governance, authentication, and analysis. 2.3 Pluggable: Building database function ecology The pluggable architecture of Apache ShardingSphere
    0 码力 | 602 页 | 3.85 MB | 1 年前
    3
  • pdf文档 Apache ShardingSphere 5.4.1 Document

    high concurrency in OLTP scenarios . . . . . . . . . . . . . . . . . . . 22 Mass data real‐time analysis in OLAP scenarios . . . . . . . . . . . . . . . . . . . 23 8.1.5 Related References . . . . . utilizing data in a complex data environment. Sharding‐ Sphere provides complex data query and analysis capabilities across data sources, simpli‐ fying the data aggregation from different data locations enhancement capabili‐ ties through traffic deformation, redirection, governance, authentication, and analysis. 2.3 Pluggable: Building database function ecology The pluggable architecture of Apache ShardingSphere
    0 码力 | 572 页 | 3.73 MB | 1 年前
    3
共 176 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 18
前往
页
相关搜索词
ApacheCassandrastaticcolumn介绍实战ShardingSphere5.2DocumentTiDBv6Documentationv7v55.0document5.4
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩