Commit Graph

767 Commits

Author SHA1 Message Date
t_max 98ceb68a20 docs: go connector version support 2023-06-07 11:42:43 +08:00
Adam Ji 87200591b0 docs: fmt lines 2023-06-07 11:33:53 +08:00
Adam Ji 581343037d docs: add version 2023-06-07 11:33:53 +08:00
Adam Ji c29e5b72d9 docs: add assignments and seek offset 2023-06-07 11:33:43 +08:00
Ping Xiao 5d82c6f17b update taos-tools release version 2023-06-06 19:58:26 +08:00
Ping Xiao 1664efebcf update release version 2023-06-06 19:44:45 +08:00
t_max acbd3c5d8a docs: go connector add tmq assignment and seek 2023-06-06 16:02:56 +08:00
huolibo 7365efd32b docs: add consuemr demo doc 2023-06-06 15:52:03 +08:00
kailixu c50da378d6 chore: update docs about support row/columns width up to 64KB 2023-06-06 11:09:00 +08:00
Shuduo Sang 0d2fa6f1e6
docs: refine python connector doc for req_id (#21526)
* docs: update csharp connector status

* docs: fix csharp ws bulk pulling

* docs: clarify database param is optional to websocket dsn

* docs: fix java connector mistake

* fix: a few typos

* fix: many typos

* docs: java connector support subscription over websocket

* fix: update 3.0 connector feature matrix

* docs: fix typos and use 3.1.0 in jdbc driver

* fix: update matrix for schemaless java status

* docs: use latest jdbc version in connect section

* docs: refine python connector doc for req_id
2023-05-30 11:49:00 +08:00
dapan1121 852e8c8185
Merge pull request #21491 from taosdata/docs/TD-24056
docs: fix timeline function super table explaination
2023-05-29 09:55:03 +08:00
wade zhang b2d2e35450
Update 09-udf.md 2023-05-29 09:52:03 +08:00
wade zhang 3fd488e83c
Merge branch '3.0' into docs/wade-pyudf 2023-05-29 08:26:17 +08:00
wade zhang 6ccefe9891
Update 09-udf.md 2023-05-29 08:23:31 +08:00
wade zhang cb82453a43
Update 09-udf.md 2023-05-29 08:21:00 +08:00
wade zhang c7e2347dfd
Update 09-udf.md 2023-05-29 08:14:36 +08:00
Shuduo Sang c91029f92f
docs: fix typos (#21503) 2023-05-27 19:28:47 +08:00
wade zhang 290a14e2d3
Update 09-udf.md 2023-05-26 19:22:47 +08:00
wade zhang 730e087d5e
Update 09-udf.md 2023-05-26 19:21:13 +08:00
gccgdb1234 4367170086 doc: refine PDF user guide 2023-05-26 19:16:23 +08:00
Ganlin Zhao a8599d78d1 docs: fix timeline function super table explaination 2023-05-26 14:02:46 +08:00
wade zhang 64e89620ea
Merge pull request #21484 from taosdata/szhou/enhance-udf-doc
enhance: python udf sample with numpy
2023-05-26 09:46:46 +08:00
huolibo bbb93c3720 enh: tmq example add all properties 2023-05-25 11:27:49 +08:00
shenglian zhou 90f542857d enhance: improve document 2023-05-25 11:13:05 +08:00
Shuduo Sang ab017bc747
docs: remove geometry docs (#21454)
* docs: update readme with libgflags

* docs: update readme with geos

* docs: remove geometry docs
2023-05-24 16:29:52 +08:00
Dingle Zhang 984211f3b4
Feature/3.0 geometry (#21037)
* Add GEOMETRY data type and make sql.c able to parse it. The GEMETRY works like BINARY so far.

* add GEOMETRY type into gConvertTypes to fix some issues like DELETE calling

* change some test cases to make sure no same timestamp is inserted, and add my smoketest.sh

* Add a function MakePoint() and introduce a lib geometry

* implement sql functions GeomFromText() and AsText()

* Use GEOS *_r funcions instead for thread safety

* Handle with TSDB_DATA_TYPE_GEOMETRY when INSERT geometry data by converting WKT.
Add geosWrapper to wrap the basic GEOS functions for TDEngine.

* refactor AsText and MakePoint functions to be like GeomFromText

* Show WKT when print geometry data in screen
Dump hex data when dump geometry data in a file

* define TYPE_BYTES item for TSDB_DATA_TYPE_GEOMETRY, which casued some strange issues.

* set number of decimals of WKT to 6

* Implement SQL function Intersects()

* refactor geometry sql functions

* Add geosErrMsgeHandler() to get the GEOS error detail

* use threadlocal to instantiate SGeosContext
call destroyGeosContext() only if the thread exists

* remove SGeosContext *context param for all geometry functions since we use thread local one,
so that all caller do not need to know the context.

* Modify Intersects() to call PreparedIntersects() when one of param is a constant, which has higher performance.

* rename prepareFn() to initCtxFn() to avoid confusion with PreparedFn

* Add prefix "ST_" for all geometry functions

* move getThreadLocalGeosCtx() and destroyThreadLocalGeosCtx() into util,
so that all unit test tools can compile

* Add unit test for geometry lib, only test MakePoint so far

* refactor and enhance existing cases in geomFuncTest

* implement NULL type and NULL value test for geomFuncTest

* add test on geomFromText()

* add unit test on AsText() in geomFuncTest

* combine some makePointFunction test items

* add intersectsFunctionTwoColumns test
refactor on callGeomFromTextWrapper functions

* enhance intersectsFunction test to add cases like input constant , NULL type, NULL value, or wrong content

* add more cases into intersectsFunction test

* Add basic test on geometry in system test

* Add ST_GeomFromText and ST_AsText function test in system test on geometry

* add ST_Intersects function test in system test on geometry

* support to check expectedErrno in system test on geometry

* adjust geomTest unit test and geometry system test

* add geometry data type and functions in doc english version

* implement touchesFunction() in geometry lib
refactor geometry relation functions model

* separate gemFuncTest into several src files

* add unit test on touchesFunction

* support sql function ST_Touches()
add system test on ST_Touches

* add docs for ST_Touches()

* Add ST_Contains()

* Add ST_Covers()

* Add ST_Equals()

* add swapAllowed param for geomRelationFunction()
read geom2 earlier intead of at doGeosRelation()

* Add ST_ContainsProperly()

* build on windows

* Merge from 3.0 to 3.0_geometry

* change macro definition TSDB_DATA_TYPE_GEOMETRY as the last one for compatibility

* change '\\NULL' to 'NULL' back in shellDumpFieldToFile()

* add /usr/local/include into include directory

* add /usr/local/inlcude and /usr/local/lib in cmake.platform for DARWIN
2023-05-24 15:36:46 +08:00
wade zhang 8524b90f2c
Merge pull request #21443 from taosdata/docs/3.0.4.2
docs: 3.0.4.2
2023-05-24 11:28:43 +08:00
Shuduo Sang bda3e6763f
docs: update connect for jdbc version (#21426)
* docs: update csharp connector status

* docs: fix csharp ws bulk pulling

* docs: clarify database param is optional to websocket dsn

* docs: fix java connector mistake

* fix: a few typos

* fix: many typos

* docs: java connector support subscription over websocket

* fix: update 3.0 connector feature matrix

* docs: fix typos and use 3.1.0 in jdbc driver

* fix: update matrix for schemaless java status

* docs: use latest jdbc version in connect section
2023-05-23 10:33:40 +08:00
Linhe Huo cd14668ec2
Merge pull request #21408 from taosdata/docs/sunpeng/update-docs-for-tdinsight-and-monitor
docs: update docs for tdinsight and monitor
2023-05-22 17:10:32 +08:00
yihaoDeng b59da1815a add parameter 2023-05-22 06:59:07 +00:00
sunpeng bc51e25d0a docs: update docs for tdinsight and monitor 2023-05-22 14:34:56 +08:00
gccgdb1234 c12996bee7 doc: refine td.connect.type 2023-05-22 11:11:52 +08:00
gccgdb1234 0a38e63c34 doc: add td.connect.type 2023-05-22 09:33:17 +08:00
Shuduo Sang 94d71f601d
docs: udf requires python 3.7+ (#21397) 2023-05-21 14:20:01 +08:00
dapan1121 70444e2d82
Merge pull request #21329 from taosdata/feat/TD-21187
feat(query): interp support ignore null value opition
2023-05-20 14:14:21 +08:00
gccgdb1234 bd9c726e6d doc: refine kafka connector 2023-05-19 11:59:36 +08:00
gccgdb1234 3cfdbf2f0c doc: refine Kafka source connector configuration parameters 2023-05-19 08:18:29 +08:00
Ganlin Zhao 79d8b8c3d4 add zh/en docs 2023-05-17 16:06:12 +08:00
meeki007 de0cc463e1
Correction/纠正 01-data-type.md (#21313)
# 10 
Change/改变
INT UNSIGNED  --->  SMALLINT UNSIGNED
2023-05-16 07:21:24 +08:00
xleili ea1b8e7081 docs: release v3.0.4.2 2023-05-15 18:15:51 +08:00
Shuduo Sang ef80b5b05b
docs: update grafana doc for 3.0 (#21300)
* docs: fix tab value and label

* docs: fix tab value and label

* docs: add dbname note in grafa and fix lots of unicode characters in english doc
2023-05-15 12:26:03 +08:00
Haojun Liao e12b70d268
Merge pull request #21270 from taosdata/feature/3_liaohj
merge main into 3.0 branch.
2023-05-13 19:38:38 +08:00
danielclow 9825970795
fix markdown error (#21280) 2023-05-13 00:37:05 +08:00
Haojun Liao 181f9063e9 other: merge 3.0 2023-05-12 18:13:28 +08:00
huolibo 0a50a21df8 docs(driver): jdbc error code 2023-05-12 17:37:35 +08:00
WANG Xu 542627235c fix: kafka connector doc issues 2023-05-12 17:19:37 +08:00
Hui Li 7bd0c6553f
Update 04-stable.md 2023-05-12 15:01:30 +08:00
Haojun Liao 43e06b9132 Merge branch '3.0' into feature/3_liaohj 2023-05-12 13:36:02 +08:00
Haojun Liao 7ef16e1922 other: merge main. 2023-05-12 11:49:53 +08:00
dapan1121 9394afec68
Merge pull request #21144 from taosdata/feat/TD-19801
feat(query): support interp with super table
2023-05-12 11:37:20 +08:00
gccgdb1234 aab47de22a doc: remove experimental.enable.snapshot 2023-05-12 08:42:40 +08:00
wade zhang 776b4a1085
Update 24-show.md 2023-05-11 09:46:59 +08:00
wade zhang 4fb612d3bd
Merge pull request #20684 from taosdata/docs/dclow
docs: fix broken and redirecting links in 3.0
2023-05-10 14:40:17 +08:00
huolibo 4bdc7e8951 fix: change some description 2023-05-10 13:47:14 +08:00
huolibo db4110c788 docs: formate and note of java doc 2023-05-10 13:43:26 +08:00
danielclow 59ec57bbfc
remove trailing slash on internal link 2023-05-10 13:21:23 +08:00
huolibo 785f8764d1 fix: change version 2023-05-10 12:57:44 +08:00
huolibo c1e1e5d831 docs(driver): fix format 2023-05-10 11:51:53 +08:00
wade zhang 01bee436da
Merge pull request #21223 from taosdata/docs/TD-22166
docs(driver): jdbc 3.2.1 document and error code
2023-05-10 11:18:09 +08:00
huolibo 50a24667cd docs(driver): jdbc 3.2.1 document and error code 2023-05-09 16:50:34 +08:00
Linhe Huo d2436fe06a
Merge pull request #21024 from taosdata/docs/adamji/sml-rust
docs: add example and document for rust schemaless insert
2023-05-09 16:32:48 +08:00
Adam Ji 73ecae67b6 docs: add cmd to check status of taosd for mac 2023-05-09 15:48:02 +08:00
wangjiaming0909 479bb157e0 fix: select _block_dist() from t; set the unit of Size to KB 2023-05-09 15:19:21 +08:00
liuyao e48fdceb7c
Update 14-stream.md 2023-05-06 16:03:12 +08:00
Ganlin Zhao 07f714cc84 fix doc error 2023-05-06 15:06:54 +08:00
Ganlin Zhao 77dc97e509 add en doc 2023-05-05 17:54:16 +08:00
gccgdb1234 b0e77eeb45 doc: refine the description of TABLE_PREFIX and TABLE_SUFFIX 2023-05-05 16:13:47 +08:00
wade zhang 623e6e7c2f
Update 09-udf.md 2023-05-05 14:22:29 +08:00
gccgdb1234 879bbe982a doc: revise doc structure of UDF 2023-05-05 14:08:21 +08:00
shenglian zhou accdcda343 docs: add python udf english version 2023-05-05 13:21:04 +08:00
Shuduo Sang cef0aba54d
docs: update taosdump doc for 3.0 (#21130)
* fix: taosbenchmark escape char for 3.0

* fix: json file for escape char

* docs: update taosdump doc
2023-04-29 00:46:23 +08:00
Shuduo Sang baf098267f
docs: update range for numOfCommitThreads (#21122) 2023-04-28 14:49:35 +08:00
huolibo bac5bbc7ab
docs(driver): jdbc error code (#21114) 2023-04-28 11:43:53 +08:00
xiaolei li ee74535423
docs: release 3.0.4.1 (#21109)
* release: upgrade default version to 3.0.4.1

* docs: release 3.0.4.1
2023-04-27 17:01:49 +08:00
wade zhang 8e9936ed32
Update 14-stream.md 2023-04-27 08:09:39 +08:00
Haojun Liao cb43ac024b
Update 14-stream.md 2023-04-26 19:06:44 +08:00
Haojun Liao 457ed296d3
Update 14-stream.md 2023-04-26 17:21:45 +08:00
Haojun Liao e4d40489e7
Update 14-stream.md 2023-04-26 17:13:20 +08:00
Haojun Liao cf9567ac96
Update 14-stream.md 2023-04-26 17:04:37 +08:00
Haojun Liao f7141fdebb
Update 14-stream.md 2023-04-26 16:53:52 +08:00
Shuduo Sang 7113ded06a
docs: fix typos and use 3.1.0 in java connector for3.0 (#21095)
* docs: update csharp connector status

* docs: fix csharp ws bulk pulling

* docs: clarify database param is optional to websocket dsn

* docs: fix java connector mistake

* fix: a few typos

* fix: many typos

* docs: java connector support subscription over websocket

* fix: update 3.0 connector feature matrix

* docs: fix typos and use 3.1.0 in jdbc driver
2023-04-26 16:48:21 +08:00
Haojun Liao 24e8ff7970
Update 14-stream.md 2023-04-26 16:35:45 +08:00
Haojun Liao a98cf1277f
Update 14-stream.md 2023-04-26 16:33:23 +08:00
Haojun Liao cf57a3f3f6
Update 10-function.md 2023-04-26 16:30:40 +08:00
Shuduo Sang 41cc572cd8
docs: update connector matrix for 3.0 (#21086)
* docs: update csharp connector status

* docs: fix csharp ws bulk pulling

* docs: clarify database param is optional to websocket dsn

* docs: fix java connector mistake

* fix: a few typos

* fix: many typos

* docs: java connector support subscription over websocket

* fix: update 3.0 connector feature matrix
2023-04-26 12:41:26 +08:00
Adam Ji 519dc0ead0
docs: fix tmq create database args (#21081) 2023-04-26 09:24:29 +08:00
sunpeng 809fe165e7
docs: add docs for `taoskeeper with prometheus` (#21052) 2023-04-24 17:54:01 +08:00
Adam Ji d3540a7502 docs: update mdx en 2023-04-23 10:31:53 +08:00
Adam Ji 13ea24312d docs: add mdx en 2023-04-23 10:30:34 +08:00
wade zhang beb082059a
Update 10-monitor.md 2023-04-21 14:40:26 +08:00
sunpeng c7e930088f
docs: update taoskeeper and monitor docs (#21004)
* docs: update taoskeeper and monitor docs

* fix for doc
2023-04-21 11:12:11 +08:00
dapan1121 95b78f327a
Merge pull request #20959 from taosdata/enh/TS-3149
enh: add param for to_unixtimestamp to return timestamp type
2023-04-19 08:54:25 +08:00
Haojun Liao 18b4694327
Update 23-perf.md 2023-04-18 19:22:52 +08:00
Ganlin Zhao b2cca108a3 add documentations 2023-04-18 14:29:04 +08:00
Adam Ji 6c3a2e2c5b
docs: support schemaless insert (#20944)
* docs: support schemaless insert

* docs: code reformat
2023-04-15 22:38:28 +08:00
xleili bafff42323 docs: release ver-3.0.4.0 2023-04-14 17:50:54 +08:00
Alex Duan 0e73061440
Update index.md 2023-04-14 11:40:12 +08:00
Xuefeng Tan 63e49706f3
docs(taosAdapter): the automatic database creation behavior for the schemaless protocol can be configured (#20929) 2023-04-14 09:36:07 +08:00
wade zhang dd066e6b0b
Update 29-changes.md 2023-04-13 11:10:19 +08:00
Shuduo Sang 226c68a91f
docs: fix connector case (#20900)
* docs: add rest api diff

* docs: use html table

* docs: use json instead of table in rest api doc

* docs: fix connector upcase
2023-04-13 10:22:51 +08:00