首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

iotdb-1.3.2

数据库 90.11MB 3 需要积分: 1
立即下载

资源介绍:

iotdb-1.3.2
[English](./README.md) | [中文](./README_ZH.md) # IoTDB [![Unit-Test](https://github.com/apache/iotdb/actions/workflows/unit-test.yml/badge.svg)](https://github.com/apache/iotdb/actions/workflows/unit-test.yml) [![codecov](https://codecov.io/github/apache/iotdb/graph/badge.svg?token=ejF3UGk0Nv)](https://codecov.io/github/apache/iotdb) [![GitHub release](https://img.shields.io/github/release/apache/iotdb.svg)](https://github.com/apache/iotdb/releases) [![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html) ![](https://github-size-badge.herokuapp.com/apache/iotdb.svg) ![](https://img.shields.io/github/downloads/apache/iotdb/total.svg) ![](https://img.shields.io/badge/platform-win%20%7C%20macos%20%7C%20linux-yellow.svg) ![](https://img.shields.io/badge/java--language-1.8%20%7C%2011%20%7C%2017-blue.svg) [![IoTDB Website](https://img.shields.io/website-up-down-green-red/https/shields.io.svg?label=iotdb-website)](https://iotdb.apache.org/) [![Maven Version](https://maven-badges.herokuapp.com/maven-central/org.apache.iotdb/iotdb-parent/badge.svg)](http://search.maven.org/#search|gav|1|g:"org.apache.iotdb") [![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/apache/iotdb) [![Slack Status](https://img.shields.io/badge/slack-join_chat-white.svg?logo=slack&style=social)](https://join.slack.com/t/apacheiotdb/shared_invite/zt-qvso1nj8-7715TpySZtZqmyG5qXQwpg) # Overview IoTDB (Internet of Things Database) is a data management system for time series data, which provides users with specific services, including data collection, storage and analysis. Due to its lightweight structure, high performance and usable features, together with its seamless integration with the Hadoop and Spark ecosystem, IoTDB meets the requirements of massive dataset storage, high throughput data input, and complex data analysis in the industrial IoT field. # Main Features The main features of IoTDB are as follows: 1. Flexible deployment strategy. IoTDB provides users with a one-click installation tool on either the cloud platform or the terminal devices, and a data synchronization tool bridging the data on cloud platform and terminals. 2. Low cost on hardware. IoTDB can reach a high compression ratio of disk storage. 3. Efficient directory structure. IoTDB supports efficient organization for complex time series data structures from intelligent networking devices, organization for time series data from devices of the same type, and fuzzy searching strategy for massive and complex directory of time series data. 4. High-throughput read and write. IoTDB supports millions of low-power devices' strong connection data access, high-speed data read and write for intelligent networking devices and mixed devices mentioned above. 5. Rich query semantics. IoTDB supports time alignment for time series data across devices and measurements, computation in time series field (frequency domain transformation) and rich aggregation function support in time dimension. 6. Easy to get started. IoTDB supports SQL-like language, JDBC standard API and import/export tools which are easy to use. 7. Seamless integration with state-of-the-practice Open Source Ecosystem. IoTDB supports analysis ecosystems, such as Hadoop and Spark, as well as visualization tools, such as Grafana. For the latest information about IoTDB, please visit [IoTDB official website](https://iotdb.apache.org/). If you encounter any problems or identify any bugs while using IoTDB, please report an issue in [Jira](https://issues.apache.org/jira/projects/IOTDB/issues). ## Outline - [IoTDB](#iotdb) - [Overview](#overview) - [Main Features](#main-features) - [Outline](#outline) - [Quick Start](#quick-start) - [Prerequisites](#prerequisites) - [Installation](#installation) - [Build from source](#build-from-source) - [Configurations](#configurations) - [Start](#start) - [Start IoTDB](#start-iotdb) - [Use IoTDB](#use-iotdb) - [Use Cli](#use-cli) - [Basic commands for IoTDB](#basic-commands-for-iotdb) - [Stop IoTDB](#stop-iotdb) - [Only build server](#only-build-server) - [Only build cli](#only-build-cli) - [Usage of CSV Import and Export Tool](#usage-of-csv-import-and-export-tool) # Quick Start This short guide will walk you through the basic process of using IoTDB. For a more detailed introduction, please visit our website's [User Guide](https://iotdb.apache.org/UserGuide/Master/QuickStart/QuickStart.html). ## Prerequisites To use IoTDB, you need to have: 1. Java >= 1.8 (1.8, 11 to 17 are verified. Please make sure the environment path has been set accordingly). 2. Maven >= 3.6 (If you want to compile and install IoTDB from source code). 3. Set the max open files num as 65535 to avoid the "too many open files" error. 4. (Optional) Set the somaxconn as 65535 to avoid "connection reset" error when the system is under high load. ``` # Linux > sudo sysctl -w net.core.somaxconn=65535 # FreeBSD or Darwin > sudo sysctl -w kern.ipc.somaxconn=65535 ``` ### Linux (This guide is based on an installation of Ubuntu 22.04.) #### Git Make sure `Git` is installed, if it's missing, simply install it via: sudo apt install git #### Java Make sure `Java` is installed, if it's missing, simply install it via: sudo apt install default-jdk #### Flex sudo apt install flex #### Bison sudo apt install bison #### Boost sudo apt install libboost-all-dev #### OpenSSL header files Usually OpenSSL is already installed, however it's missing the header files we need to compile. So ensure these are installed: sudo apt install libssl-dev ### Mac OS #### Git First ensure `git` works. Usually on a new Mac, as soon as you simply type `git` in a `Terminal` window, a popup will come up and ask if you want to finish installing the Mac developer tools. Just say yes. As soon as this is finished, you are free to use `git`. #### Homebrew Then install `Homebrew` - If this hasn't been installed yet, as we are going to be installing everything using `Homebrew`. /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" #### Java As soon as that's done install `Java`, if this hasn't been installed yet: brew install java Depending on your version of Homebrew, it will tell you to do one of the following (depending on the type of processor in your device). Mainly on the Intel-based models: sudo ln -sfn /usr/local/opt/openjdk/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk.jdk Mainly on the ARM-based models: sudo ln -sfn /opt/homebrew/opt/openjdk/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk.jdk #### CPP Prerequisites Building `Thrift` requires us to add two more dependencies to the picture. This however is only needed when enabling the `compile-cpp` profile: brew install boost brew install bison brew install openssl ### Windows #### Chocolatey Then install `Chocolatey` - If this ha

资源文件列表:

apache-iotdb-1.3.2-all-bin.zip 大约有268个文件
  1. apache-iotdb-1.3.2-all-bin/
  2. apache-iotdb-1.3.2-all-bin/conf/
  3. apache-iotdb-1.3.2-all-bin/sbin/
  4. apache-iotdb-1.3.2-all-bin/tools/
  5. apache-iotdb-1.3.2-all-bin/tools/schema/
  6. apache-iotdb-1.3.2-all-bin/tools/tsfile/
  7. apache-iotdb-1.3.2-all-bin/licenses/
  8. apache-iotdb-1.3.2-all-bin/lib/
  9. apache-iotdb-1.3.2-all-bin/lib/service-rpc-1.3.2.jar 102.4KB
  10. apache-iotdb-1.3.2-all-bin/lib/snappy-java-1.1.10.4.jar 2.01MB
  11. apache-iotdb-1.3.2-all-bin/lib/iotdb-consensus-1.3.2.jar 239.63KB
  12. apache-iotdb-1.3.2-all-bin/lib/iotdb-thrift-consensus-1.3.2.jar 483.37KB
  13. apache-iotdb-1.3.2-all-bin/lib/ratis-server-3.1.0.jar 472.56KB
  14. apache-iotdb-1.3.2-all-bin/lib/ratis-server-api-3.1.0.jar 98.57KB
  15. apache-iotdb-1.3.2-all-bin/lib/ratis-client-3.1.0.jar 118.1KB
  16. apache-iotdb-1.3.2-all-bin/lib/ratis-grpc-3.1.0.jar 150.22KB
  17. apache-iotdb-1.3.2-all-bin/lib/ratis-proto-3.1.0.jar 1.41MB
  18. apache-iotdb-1.3.2-all-bin/lib/ratis-metrics-api-3.1.0.jar 17.67KB
  19. apache-iotdb-1.3.2-all-bin/lib/common-api-1.3.2.jar 41.13KB
  20. apache-iotdb-1.3.2-all-bin/lib/tsfile-1.3.2.jar 828.07KB
  21. apache-iotdb-1.3.2-all-bin/lib/zstd-jni-1.5.5-5.jar 5.64MB
  22. apache-iotdb-1.3.2-all-bin/lib/lz4-java-1.8.0.jar 666.8KB
  23. apache-iotdb-1.3.2-all-bin/lib/xz-1.9.jar 113.29KB
  24. apache-iotdb-1.3.2-all-bin/lib/external-api-1.3.2.jar 8.99KB
  25. apache-iotdb-1.3.2-all-bin/lib/openapi-1.3.2.jar 79.32KB
  26. apache-iotdb-1.3.2-all-bin/lib/swagger-annotations-1.6.11.jar 20.7KB
  27. apache-iotdb-1.3.2-all-bin/lib/swagger-models-1.6.11.jar 154.06KB
  28. apache-iotdb-1.3.2-all-bin/lib/jackson-annotations-2.15.4.jar 73.8KB
  29. apache-iotdb-1.3.2-all-bin/lib/jackson-jaxrs-json-provider-2.15.4.jar 16.25KB
  30. apache-iotdb-1.3.2-all-bin/lib/jackson-jaxrs-base-2.15.4.jar 31.11KB
  31. apache-iotdb-1.3.2-all-bin/lib/jackson-module-jaxb-annotations-2.15.2.jar 35.81KB
  32. apache-iotdb-1.3.2-all-bin/lib/jakarta.activation-api-1.2.2.jar 45.52KB
  33. apache-iotdb-1.3.2-all-bin/lib/jackson-datatype-jsr310-2.15.4.jar 120.06KB
  34. apache-iotdb-1.3.2-all-bin/lib/swagger-jaxrs-1.6.11.jar 68.07KB
  35. apache-iotdb-1.3.2-all-bin/lib/swagger-core-1.6.11.jar 118.27KB
  36. apache-iotdb-1.3.2-all-bin/lib/jackson-dataformat-yaml-2.14.2.jar 53.08KB
  37. apache-iotdb-1.3.2-all-bin/lib/snakeyaml-2.0.jar 326.96KB
  38. apache-iotdb-1.3.2-all-bin/lib/jersey-media-multipart-2.40.jar 79.63KB
  39. apache-iotdb-1.3.2-all-bin/lib/mimepull-1.9.15.jar 63.42KB
  40. apache-iotdb-1.3.2-all-bin/lib/node-commons-1.3.2.jar 1.04MB
  41. apache-iotdb-1.3.2-all-bin/lib/nimbus-jose-jwt-9.37.2.jar 761.1KB
  42. apache-iotdb-1.3.2-all-bin/lib/cglib-3.3.0.jar 299.67KB
  43. apache-iotdb-1.3.2-all-bin/lib/asm-9.3.jar 119.31KB
  44. apache-iotdb-1.3.2-all-bin/lib/commons-jexl3-3.3.jar 508.41KB
  45. apache-iotdb-1.3.2-all-bin/lib/isession-1.3.2.jar 26.08KB
  46. apache-iotdb-1.3.2-all-bin/lib/iotdb-antlr-1.3.2.jar 437.72KB
  47. apache-iotdb-1.3.2-all-bin/lib/iotdb-thrift-commons-1.3.2.jar 282.17KB
  48. apache-iotdb-1.3.2-all-bin/lib/udf-api-1.3.2.jar 37.86KB
  49. apache-iotdb-1.3.2-all-bin/lib/trigger-api-1.3.2.jar 12.97KB
  50. apache-iotdb-1.3.2-all-bin/lib/metrics-interface-1.3.2.jar 125.78KB
  51. apache-iotdb-1.3.2-all-bin/lib/reactor-netty-http-1.1.13.jar 444.3KB
  52. apache-iotdb-1.3.2-all-bin/lib/netty-codec-http2-4.1.97.Final.jar 472.18KB
  53. apache-iotdb-1.3.2-all-bin/lib/netty-resolver-dns-4.1.97.Final.jar 167.51KB
  54. apache-iotdb-1.3.2-all-bin/lib/netty-codec-dns-4.1.97.Final.jar 65.34KB
  55. apache-iotdb-1.3.2-all-bin/lib/netty-resolver-dns-native-macos-4.1.97.Final-osx-x86_64.jar 18.49KB
  56. apache-iotdb-1.3.2-all-bin/lib/netty-resolver-dns-classes-macos-4.1.97.Final.jar 8.88KB
  57. apache-iotdb-1.3.2-all-bin/lib/reactor-netty-core-1.1.13.jar 493.5KB
  58. apache-iotdb-1.3.2-all-bin/lib/netty-handler-proxy-4.1.97.Final.jar 24.89KB
  59. apache-iotdb-1.3.2-all-bin/lib/netty-codec-socks-4.1.97.Final.jar 118.14KB
  60. apache-iotdb-1.3.2-all-bin/lib/reactor-core-3.5.10.jar 1.74MB
  61. apache-iotdb-1.3.2-all-bin/lib/netty-transport-4.1.97.Final.jar 478.15KB
  62. apache-iotdb-1.3.2-all-bin/lib/netty-resolver-4.1.97.Final.jar 36.91KB
  63. apache-iotdb-1.3.2-all-bin/lib/reactive-streams-1.0.4.jar 11.37KB
  64. apache-iotdb-1.3.2-all-bin/lib/logback-classic-1.3.14.jar 271.32KB
  65. apache-iotdb-1.3.2-all-bin/lib/logback-core-1.3.14.jar 566.09KB
  66. apache-iotdb-1.3.2-all-bin/lib/iotdb-thrift-1.3.2.jar 5.83MB
  67. apache-iotdb-1.3.2-all-bin/lib/iotdb-thrift-confignode-1.3.2.jar 4.61MB
  68. apache-iotdb-1.3.2-all-bin/lib/pipe-api-1.3.2.jar 32.78KB
  69. apache-iotdb-1.3.2-all-bin/lib/iotdb-session-1.3.2.jar 140.62KB
  70. apache-iotdb-1.3.2-all-bin/lib/commons-collections4-4.4.jar 734.29KB
  71. apache-iotdb-1.3.2-all-bin/lib/commons-lang3-3.13.0.jar 617.45KB
  72. apache-iotdb-1.3.2-all-bin/lib/units-1.7.jar 19.31KB
  73. apache-iotdb-1.3.2-all-bin/lib/jsr305-3.0.2.jar 19.47KB
  74. apache-iotdb-1.3.2-all-bin/lib/libthrift-0.14.1.jar 298.43KB
  75. apache-iotdb-1.3.2-all-bin/lib/netty-common-4.1.97.Final.jar 644.46KB
  76. apache-iotdb-1.3.2-all-bin/lib/ratis-common-3.1.0.jar 372.73KB
  77. apache-iotdb-1.3.2-all-bin/lib/slf4j-api-2.0.9.jar 63.07KB
  78. apache-iotdb-1.3.2-all-bin/lib/jjwt-api-0.11.5.jar 75.64KB
  79. apache-iotdb-1.3.2-all-bin/lib/stack-core-0.6.11.jar 2.03MB
  80. apache-iotdb-1.3.2-all-bin/lib/bcprov-jdk18on-1.75.jar 7.94MB
  81. apache-iotdb-1.3.2-all-bin/lib/bcpkix-jdk18on-1.75.jar 1.06MB
  82. apache-iotdb-1.3.2-all-bin/lib/bcutil-jdk18on-1.75.jar 660.71KB
  83. apache-iotdb-1.3.2-all-bin/lib/netty-codec-4.1.97.Final.jar 337.18KB
  84. apache-iotdb-1.3.2-all-bin/lib/netty-handler-4.1.97.Final.jar 546.91KB
  85. apache-iotdb-1.3.2-all-bin/lib/netty-transport-native-unix-common-4.1.97.Final.jar 42.87KB
  86. apache-iotdb-1.3.2-all-bin/lib/jaxb-runtime-2.3.6.jar 995.49KB
  87. apache-iotdb-1.3.2-all-bin/lib/jakarta.xml.bind-api-2.3.3.jar 112.93KB
  88. apache-iotdb-1.3.2-all-bin/lib/txw2-2.3.6.jar 70.32KB
  89. apache-iotdb-1.3.2-all-bin/lib/istack-commons-runtime-3.0.12.jar 29.11KB
  90. apache-iotdb-1.3.2-all-bin/lib/commons-io-2.13.0.jar 472.61KB
  91. apache-iotdb-1.3.2-all-bin/lib/commons-codec-1.16.0.jar 352.28KB
  92. apache-iotdb-1.3.2-all-bin/lib/jakarta.servlet-api-4.0.4.jar 81.03KB
  93. apache-iotdb-1.3.2-all-bin/lib/stack-server-0.6.11.jar 93.32KB
  94. apache-iotdb-1.3.2-all-bin/lib/netty-codec-http-4.1.97.Final.jar 642.09KB
  95. apache-iotdb-1.3.2-all-bin/lib/checker-qual-3.38.0.jar 218.61KB
  96. apache-iotdb-1.3.2-all-bin/lib/jetty-http-9.4.53.v20231009.jar 243.22KB
  97. apache-iotdb-1.3.2-all-bin/lib/jetty-io-9.4.52.v20230823.jar 178.72KB
  98. apache-iotdb-1.3.2-all-bin/lib/netty-codec-mqtt-4.1.97.Final.jar 98.54KB
  99. apache-iotdb-1.3.2-all-bin/lib/commons-pool2-2.11.1.jar 142.11KB
  100. apache-iotdb-1.3.2-all-bin/lib/antlr4-runtime-4.9.3.jar 328.85KB
  101. apache-iotdb-1.3.2-all-bin/lib/jetty-util-9.4.53.v20231009.jar 575.07KB
  102. apache-iotdb-1.3.2-all-bin/lib/airline-0.9.jar 78.24KB
  103. apache-iotdb-1.3.2-all-bin/lib/concurrent-206.jar 30.51KB
  104. apache-iotdb-1.3.2-all-bin/lib/log-206.jar 3.74KB
  105. apache-iotdb-1.3.2-all-bin/lib/jetty-server-9.4.53.v20231009.jar 719.49KB
  106. apache-iotdb-1.3.2-all-bin/lib/sdk-server-0.6.11.jar 1.22MB
  107. apache-iotdb-1.3.2-all-bin/lib/bsd-generator-0.6.11.jar 10.58KB
  108. apache-iotdb-1.3.2-all-bin/lib/bsd-core-0.6.11.jar 16.64KB
  109. apache-iotdb-1.3.2-all-bin/lib/sdk-core-0.6.11.jar 125.82KB
  110. apache-iotdb-1.3.2-all-bin/lib/commons-cli-1.5.0.jar 56.92KB
  111. apache-iotdb-1.3.2-all-bin/lib/jakarta.validation-api-2.0.2.jar 89.78KB
  112. apache-iotdb-1.3.2-all-bin/lib/jakarta.ws.rs-api-2.1.6.jar 137.09KB
  113. apache-iotdb-1.3.2-all-bin/lib/reflections-0.10.2.jar 127.34KB
  114. apache-iotdb-1.3.2-all-bin/lib/javassist-3.28.0-GA.jar 831.57KB
  115. apache-iotdb-1.3.2-all-bin/lib/jersey-container-servlet-core-2.40.jar 71.54KB
  116. apache-iotdb-1.3.2-all-bin/lib/jakarta.inject-2.6.1.jar 17.71KB
  117. apache-iotdb-1.3.2-all-bin/lib/jersey-common-2.40.jar 1.17MB
  118. apache-iotdb-1.3.2-all-bin/lib/jakarta.annotation-api-1.3.5.jar 24.47KB
  119. apache-iotdb-1.3.2-all-bin/lib/osgi-resource-locator-1.0.3.jar 19.02KB
  120. apache-iotdb-1.3.2-all-bin/lib/jersey-server-2.40.jar 928.29KB
  121. apache-iotdb-1.3.2-all-bin/lib/jersey-client-2.40.jar 294.8KB
  122. apache-iotdb-1.3.2-all-bin/lib/moquette-broker-0.17.jar 269.2KB
  123. apache-iotdb-1.3.2-all-bin/lib/slf4j-reload4j-1.7.36.jar 9.59KB
  124. apache-iotdb-1.3.2-all-bin/lib/reload4j-1.2.22.jar 324.61KB
  125. apache-iotdb-1.3.2-all-bin/lib/netty-transport-native-epoll-4.1.97.Final-linux-x86_64.jar 38.04KB
  126. apache-iotdb-1.3.2-all-bin/lib/netty-transport-classes-epoll-4.1.97.Final.jar 143.69KB
  127. apache-iotdb-1.3.2-all-bin/lib/h2-mvstore-2.1.212.jar 324.54KB
  128. apache-iotdb-1.3.2-all-bin/lib/HikariCP-2.4.7.jar 133.68KB
  129. apache-iotdb-1.3.2-all-bin/lib/metrics-core-4.2.19.jar 126.61KB
  130. apache-iotdb-1.3.2-all-bin/lib/metrics-jvm-3.2.2.jar 39.25KB
  131. apache-iotdb-1.3.2-all-bin/lib/metrics-librato-5.1.0.jar 37.46KB
  132. apache-iotdb-1.3.2-all-bin/lib/librato-java-2.1.0.jar 43.58KB
  133. apache-iotdb-1.3.2-all-bin/lib/bugsnag-3.7.1.jar 74.83KB
  134. apache-iotdb-1.3.2-all-bin/lib/gson-2.10.1.jar 276.73KB
  135. apache-iotdb-1.3.2-all-bin/lib/netty-buffer-4.1.97.Final.jar 299.4KB
  136. apache-iotdb-1.3.2-all-bin/lib/jetty-servlet-9.4.53.v20231009.jar 142.64KB
  137. apache-iotdb-1.3.2-all-bin/lib/jetty-security-9.4.53.v20231009.jar 115.72KB
  138. apache-iotdb-1.3.2-all-bin/lib/jetty-util-ajax-9.4.53.v20231009.jar 65.08KB
  139. apache-iotdb-1.3.2-all-bin/lib/jersey-hk2-2.40.jar 76.64KB
  140. apache-iotdb-1.3.2-all-bin/lib/hk2-locator-2.6.1.jar 198.59KB
  141. apache-iotdb-1.3.2-all-bin/lib/aopalliance-repackaged-2.6.1.jar 26.37KB
  142. apache-iotdb-1.3.2-all-bin/lib/hk2-api-2.6.1.jar 195.53KB
  143. apache-iotdb-1.3.2-all-bin/lib/hk2-utils-2.6.1.jar 128.51KB
  144. apache-iotdb-1.3.2-all-bin/lib/jackson-databind-2.15.4.jar 1.55MB
  145. apache-iotdb-1.3.2-all-bin/lib/jackson-core-2.15.4.jar 535.34KB
  146. apache-iotdb-1.3.2-all-bin/lib/caffeine-2.9.3.jar 890.76KB
  147. apache-iotdb-1.3.2-all-bin/lib/error_prone_annotations-2.18.0.jar 15.64KB
  148. apache-iotdb-1.3.2-all-bin/lib/guava-32.1.2-jre.jar 2.9MB
  149. apache-iotdb-1.3.2-all-bin/lib/failureaccess-1.0.1.jar 4.51KB
  150. apache-iotdb-1.3.2-all-bin/lib/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar 2.15KB
  151. apache-iotdb-1.3.2-all-bin/lib/j2objc-annotations-2.8.jar 9.08KB
  152. apache-iotdb-1.3.2-all-bin/lib/disruptor-3.4.4.jar 82.64KB
  153. apache-iotdb-1.3.2-all-bin/lib/Java-WebSocket-1.5.4.jar 136.08KB
  154. apache-iotdb-1.3.2-all-bin/lib/metrics-core-1.3.2.jar 33.63KB
  155. apache-iotdb-1.3.2-all-bin/lib/micrometer-core-1.11.4.jar 846.62KB
  156. apache-iotdb-1.3.2-all-bin/lib/micrometer-commons-1.11.4.jar 46.11KB
  157. apache-iotdb-1.3.2-all-bin/lib/micrometer-observation-1.11.4.jar 69.17KB
  158. apache-iotdb-1.3.2-all-bin/lib/HdrHistogram-2.1.12.jar 169.69KB
  159. apache-iotdb-1.3.2-all-bin/lib/LatencyUtils-2.0.3.jar 29.08KB
  160. apache-iotdb-1.3.2-all-bin/lib/ratis-thirdparty-misc-1.0.5.jar 16.96MB
  161. apache-iotdb-1.3.2-all-bin/lib/jcip-annotations-1.0-1.jar 4.61KB
  162. apache-iotdb-1.3.2-all-bin/lib/commons-logging-1.2.jar 60.38KB
  163. apache-iotdb-1.3.2-all-bin/lib/iotdb-server-1.3.2.jar 5.63MB
  164. apache-iotdb-1.3.2-all-bin/lib/iotdb-jdbc-1.3.2.jar 109.92KB
  165. apache-iotdb-1.3.2-all-bin/lib/osgi.cmpn-7.0.0.jar 1.41MB
  166. apache-iotdb-1.3.2-all-bin/lib/pax-jdbc-common-1.5.6.jar 4.5KB
  167. apache-iotdb-1.3.2-all-bin/lib/osgi.core-7.0.0.jar 480.99KB
  168. apache-iotdb-1.3.2-all-bin/lib/json-smart-2.5.0.jar 117.42KB
  169. apache-iotdb-1.3.2-all-bin/lib/accessors-smart-2.5.0.jar 29.2KB
  170. apache-iotdb-1.3.2-all-bin/lib/oauth2-oidc-sdk-10.15.jar 841.86KB
  171. apache-iotdb-1.3.2-all-bin/lib/content-type-2.2.jar 8.02KB
  172. apache-iotdb-1.3.2-all-bin/lib/lang-tag-1.7.jar 10.91KB
  173. apache-iotdb-1.3.2-all-bin/lib/httpclient-4.5.14.jar 767.23KB
  174. apache-iotdb-1.3.2-all-bin/lib/httpcore-4.4.16.jar 320.21KB
  175. apache-iotdb-1.3.2-all-bin/lib/jline-3.23.0.jar 1.03MB
  176. apache-iotdb-1.3.2-all-bin/lib/jna-5.14.0.jar 1.79MB
  177. apache-iotdb-1.3.2-all-bin/lib/commons-csv-1.10.0.jar 53.47KB
  178. apache-iotdb-1.3.2-all-bin/lib/iotdb-cli-1.3.2.jar 165.51KB
  179. apache-iotdb-1.3.2-all-bin/lib/iotdb-confignode-1.3.2.jar 1.3MB
  180. apache-iotdb-1.3.2-all-bin/conf/logback-backup.xml 2.15KB
  181. apache-iotdb-1.3.2-all-bin/README.md 19.56KB
  182. apache-iotdb-1.3.2-all-bin/README_ZH.md 16.34KB
  183. apache-iotdb-1.3.2-all-bin/LICENSE 14.39KB
  184. apache-iotdb-1.3.2-all-bin/NOTICE 786B
  185. apache-iotdb-1.3.2-all-bin/RELEASE_NOTES.md 74.33KB
  186. apache-iotdb-1.3.2-all-bin/conf/datanode-env.bat 8.95KB
  187. apache-iotdb-1.3.2-all-bin/conf/datanode-env.sh 14.04KB
  188. apache-iotdb-1.3.2-all-bin/conf/iotdb-datanode.properties 13.07KB
  189. apache-iotdb-1.3.2-all-bin/conf/jmx.access 911B
  190. apache-iotdb-1.3.2-all-bin/conf/jmx.password 908B
  191. apache-iotdb-1.3.2-all-bin/conf/logback-datanode.xml 12.46KB
  192. apache-iotdb-1.3.2-all-bin/conf/logback-tool.xml 1.36KB
  193. apache-iotdb-1.3.2-all-bin/conf/confignode-env.bat 6.73KB
  194. apache-iotdb-1.3.2-all-bin/conf/confignode-env.sh 12.24KB
  195. apache-iotdb-1.3.2-all-bin/conf/iotdb-confignode.properties 6.19KB
  196. apache-iotdb-1.3.2-all-bin/conf/logback-confignode.xml 5.17KB
  197. apache-iotdb-1.3.2-all-bin/conf/iotdb-cluster.properties 1.38KB
  198. apache-iotdb-1.3.2-all-bin/conf/iotdb-common.properties 42.28KB
  199. apache-iotdb-1.3.2-all-bin/sbin/daemon-datanode.sh 2.28KB
  200. apache-iotdb-1.3.2-all-bin/sbin/remove-datanode.bat 3.08KB
  201. apache-iotdb-1.3.2-all-bin/sbin/remove-datanode.sh 1.84KB
  202. apache-iotdb-1.3.2-all-bin/sbin/start-datanode.bat 9.06KB
  203. apache-iotdb-1.3.2-all-bin/sbin/start-datanode.sh 7.82KB
  204. apache-iotdb-1.3.2-all-bin/sbin/stop-datanode.bat 1.48KB
  205. apache-iotdb-1.3.2-all-bin/sbin/stop-datanode.sh 2.27KB
  206. apache-iotdb-1.3.2-all-bin/sbin/daemon-confignode.sh 2.3KB
  207. apache-iotdb-1.3.2-all-bin/sbin/remove-confignode.bat 3.56KB
  208. apache-iotdb-1.3.2-all-bin/sbin/remove-confignode.sh 1.96KB
  209. apache-iotdb-1.3.2-all-bin/sbin/start-confignode.bat 6.16KB
  210. apache-iotdb-1.3.2-all-bin/sbin/start-confignode.sh 5.63KB
  211. apache-iotdb-1.3.2-all-bin/sbin/stop-confignode.bat 1.47KB
  212. apache-iotdb-1.3.2-all-bin/sbin/stop-confignode.sh 2.31KB
  213. apache-iotdb-1.3.2-all-bin/sbin/destroy-all.bat 1.37KB
  214. apache-iotdb-1.3.2-all-bin/sbin/destroy-all.sh 3.94KB
  215. apache-iotdb-1.3.2-all-bin/sbin/destroy-confignode.bat 2.43KB
  216. apache-iotdb-1.3.2-all-bin/sbin/destroy-confignode.sh 1.95KB
  217. apache-iotdb-1.3.2-all-bin/sbin/destroy-datanode.bat 5.44KB
  218. apache-iotdb-1.3.2-all-bin/sbin/destroy-datanode.sh 2.91KB
  219. apache-iotdb-1.3.2-all-bin/sbin/health_check.bat 20.48KB
  220. apache-iotdb-1.3.2-all-bin/sbin/health_check.sh 12.6KB
  221. apache-iotdb-1.3.2-all-bin/sbin/iotdb-common.sh 12.12KB
  222. apache-iotdb-1.3.2-all-bin/sbin/start-all.sh 3.14KB
  223. apache-iotdb-1.3.2-all-bin/sbin/start-standalone.bat 1.73KB
  224. apache-iotdb-1.3.2-all-bin/sbin/start-standalone.sh 1.65KB
  225. apache-iotdb-1.3.2-all-bin/sbin/stop-all.sh 3.07KB
  226. apache-iotdb-1.3.2-all-bin/sbin/stop-standalone.bat 1.34KB
  227. apache-iotdb-1.3.2-all-bin/sbin/stop-standalone.sh 1.83KB
  228. apache-iotdb-1.3.2-all-bin/tools/schema/print-pb-tree-file.bat 1.79KB
  229. apache-iotdb-1.3.2-all-bin/tools/schema/print-pb-tree-file.sh 1.51KB
  230. apache-iotdb-1.3.2-all-bin/tools/schema/print-schema-log.bat 1.79KB
  231. apache-iotdb-1.3.2-all-bin/tools/schema/print-schema-log.sh 1.5KB
  232. apache-iotdb-1.3.2-all-bin/tools/tsfile/check-overlap-sequence-files-and-repair.bat 1.81KB
  233. apache-iotdb-1.3.2-all-bin/tools/tsfile/check-overlap-sequence-files-and-repair.sh 1.53KB
  234. apache-iotdb-1.3.2-all-bin/tools/tsfile/overlap-statistic-tool.bat 1.82KB
  235. apache-iotdb-1.3.2-all-bin/tools/tsfile/overlap-statistic-tool.sh 1.54KB
  236. apache-iotdb-1.3.2-all-bin/tools/tsfile/print-iotdb-data-dir.bat 1.86KB
  237. apache-iotdb-1.3.2-all-bin/tools/tsfile/print-iotdb-data-dir.sh 1.58KB
  238. apache-iotdb-1.3.2-all-bin/tools/tsfile/print-tsfile-resource-files.bat 1.79KB
  239. apache-iotdb-1.3.2-all-bin/tools/tsfile/print-tsfile-resource-files.sh 1.67KB
  240. apache-iotdb-1.3.2-all-bin/tools/tsfile/print-tsfile.bat 1.93KB
  241. apache-iotdb-1.3.2-all-bin/tools/tsfile/print-tsfile.sh 1.5KB
  242. apache-iotdb-1.3.2-all-bin/tools/tsfile/settle-tsfile.bat 1.85KB
  243. apache-iotdb-1.3.2-all-bin/tools/tsfile/settle-tsfile.sh 1.45KB
  244. apache-iotdb-1.3.2-all-bin/tools/tsfile/split-tsfile-tool.bat 1.77KB
  245. apache-iotdb-1.3.2-all-bin/tools/tsfile/split-tsfile-tool.sh 1.48KB
  246. apache-iotdb-1.3.2-all-bin/tools/tsfile/validate-tsfile.bat 1.79KB
  247. apache-iotdb-1.3.2-all-bin/tools/tsfile/validate-tsfile.sh 1.5KB
  248. apache-iotdb-1.3.2-all-bin/sbin/start-cli.bat 3.44KB
  249. apache-iotdb-1.3.2-all-bin/sbin/start-cli.sh 4KB
  250. apache-iotdb-1.3.2-all-bin/tools/backup.bat 3.65KB
  251. apache-iotdb-1.3.2-all-bin/tools/backup.sh 4.11KB
  252. apache-iotdb-1.3.2-all-bin/tools/collect-info.bat 7.34KB
  253. apache-iotdb-1.3.2-all-bin/tools/collect-info.sh 9.71KB
  254. apache-iotdb-1.3.2-all-bin/tools/export-data.bat 1.88KB
  255. apache-iotdb-1.3.2-all-bin/tools/export-data.sh 1.67KB
  256. apache-iotdb-1.3.2-all-bin/tools/export-tsfile.bat 1.88KB
  257. apache-iotdb-1.3.2-all-bin/tools/export-tsfile.sh 1.67KB
  258. apache-iotdb-1.3.2-all-bin/tools/import-data.bat 1.88KB
  259. apache-iotdb-1.3.2-all-bin/tools/import-data.sh 1.67KB
  260. apache-iotdb-1.3.2-all-bin/tools/load-tsfile.bat 3.09KB
  261. apache-iotdb-1.3.2-all-bin/tools/load-tsfile.sh 3.51KB
  262. apache-iotdb-1.3.2-all-bin/licenses/CDDL License 1.1 17.22KB
  263. apache-iotdb-1.3.2-all-bin/licenses/Eclipse Public License 1.0 (EPL-1.0) 11.04KB
  264. apache-iotdb-1.3.2-all-bin/licenses/Eclipse Public License version 2.0 (EPL-2.0) 13.7KB
  265. apache-iotdb-1.3.2-all-bin/licenses/The 2-Clause BSD License 1.45KB
  266. apache-iotdb-1.3.2-all-bin/licenses/The 3-Clause BSD License 1.62KB
  267. apache-iotdb-1.3.2-all-bin/licenses/The MIT License (QOS.ch) 1.1KB
  268. apache-iotdb-1.3.2-all-bin/licenses/The MIT License (progressbar) 1.06KB
0评论
提交 加载更多评论
其他资源 docker部署snipe-it资产管理系统源码包
snipe-it6.3.3源码包
文件搜索工具,文件搜索助手
基于c#开发,选中目录,可通过关键字搜索当前目录及子目录的任何层级的文件,并且可以定位到当前文件
芯片及系统设计和解决方案面向汽车座舱仪表,工业串口屏,家电显示等特联网场景,速显微电子 沟通人机 点亮世界
深圳市北七星电子科技有限公司代理速显微电子自研的嵌入式图形渲染芯片及系统设计和解决方案面向汽车座舱仪表,工业串口屏,家电显示等特联网场景,沟通人机 点亮世界。 速显微显示控制芯片双核CPU+GPU内封MCU+FLASH 优势: 1:GPU是自研,所有底层可以全部下放给到客户端---相对来说更自由没有太多的局限 2:开发工具:免编程拖曳式开发工具IDE ---开发周期短、易操作(界面设计完成情况下一周内可以完成 3:3D图形渲染---目前国内好像没有芯片做到3D 4:无损压缩 ---相对节省空间,提升速度 5:闭环开发工具 ---有问题可以快速查找 6:9005一芯点2屏,手机互联,投屏 联系方式 胡雪 13798449569(微信同号)
QT选择cmake创建的项目使用QXlsx Demo
QT选择cmake创建的项目使用QXlsx Demo
news-dataset
news-dataset
广东华冠 HGSEMI EEPROM 扩展器件库 I2C扩展器件库 & 芯片数据手册
广东华冠 HGSEMI EEPROM 扩展器件库 I2C扩展器件库 ------HG24C02.iic ------HG24C02.pdf ------HG24C04.iic ------HG24C04.pdf ------HG24C04.iic ------HG24C04.pdf ------HG24C08.iic ------HG24C08.pdf ------HG24C16.iic ------HG24C16.pdf ------HG24C32.iic ------HG24C32.pdf ------HG24C64.iic ------HG24C64.pdf ------HG24C128.iic ------HG24C128.pdf ------HG24C256.iic ------HG24C256.pdf ------HG24C512.iic ------HG24C512.pdf ------HG24C1024.iic ------HG24C1024.pdf ------HG24C256C.iic ------HG24C256C.pdf .............
广东华冠 HGSEMI EEPROM 扩展器件库 I2C扩展器件库 & 芯片数据手册 广东华冠 HGSEMI EEPROM 扩展器件库 I2C扩展器件库 & 芯片数据手册 广东华冠 HGSEMI EEPROM 扩展器件库 I2C扩展器件库 & 芯片数据手册
adb下载安装及使用adb安装包
adb安装包
新悦网络(SINREY)Manager音频管理工具
新悦网络(SINREY)Manager音频管理工具