TiBigData icon indicating copy to clipboard operation
TiBigData copied to clipboard

TiDB connectors for Flink/Hive/Presto

Results 35 TiBigData issues
Sort by recently updated
recently updated
newest added

- [ ] #129 - [ ] design doc - [ ] test plan ......

DDL ``` CREATE TABLE if not exists table_a ( `user_id` BIGINT NULL COMMENT '', `id` BIGINT NULL COMMENT '', `position_id` BIGINT NULL COMMENT '', `status` STRING NULL COMMENT '', `transaction_id`...

I followed this doc to build the connector and the build finished successfully. https://github.com/tidb-incubator/TiBigData/tree/master/prestosql my tidb plugin folder content as blew: ``` root@trino-worker01:/home/trino/trino-server-361/etc/catalog# ls -l /home/trino/trino-server-361/plugin/tidb/ total 38940 -rw-r--r-- 1...

Hi there, Integrating TiDB with Flink is a great idea, as Flink is superb in real-time computing and TiDB is suitable for quick data access. However, I found that the...

Hi there, I was testing TiBigData recently and successfully compiled. But when I used Presto to query, the following error was reported: io.tidb.bigdata.prestodb.tidb.optimization.TiDBPlanOptimizerProvider.getConnectorPlanOptimizers()Ljava/util/Set; Is there anyone konws what happend and...

你好 这边使用tidb驱动出现的问题,如下图 CREATE TABLE `receiving` ( `receiving_id` int(11) NOT NULL, `expected_date` date NOT NULL DEFAULT '0000-00-00', UNIQUE KEY `udx_receiving_id` (`receiving_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; 使用presto tidb驱动查询 和使用mysql驱动查询 ![image](https://user-images.githubusercontent.com/29723968/101461902-7cf09d80-3976-11eb-89d9-92b81d43c068.png) ![image](https://user-images.githubusercontent.com/29723968/101461927-837f1500-3976-11eb-8ea1-ac0720c621b6.png)

public class TidbAlarmClearUp { public static void main(String[] args) throws Exception { //运行job String jobName = TidbAlarmClearUp.class.getSimpleName(); // set up the streaming execution environment StreamExecutionEnvironment bsEnv = StreamExecutionEnvironment.getExecutionEnvironment(); EnvironmentSettings bsSettings...

使用tibigdata整合flink读取数据时,程序出现 java.lang.IllegalStateException: Table `db`.`table` no longer exists in TiDB at io.tidb.bigdata.tidb.ClientSession.lambda$getTableMust$0(ClientSession.java:181) ~[flink-tidb-connector-1.13-0.0.5-SNAPSHOT.jar:?] at java.util.Optional.orElseThrow(Optional.java:290) ~[?:1.8.0_281] at io.tidb.bigdata.tidb.ClientSession.getTableMust(ClientSession.java:178) ~[flink-tidb-connector-1.13-0.0.5-SNAPSHOT.jar:?] at io.tidb.bigdata.tidb.ClientSession.getTableMust(ClientSession.java:173) ~[flink-tidb-connector-1.13-0.0.5-SNAPSHOT.jar:?] at io.tidb.bigdata.tidb.ClientSession.request(ClientSession.java:290) ~[flink-tidb-connector-1.13-0.0.5-SNAPSHOT.jar:?] at io.tidb.bigdata.tidb.RecordSetInternal.(RecordSetInternal.java:61) ~[flink-tidb-connector-1.13-0.0.5-SNAPSHOT.jar:?] at io.tidb.bigdata.flink.connector.source.reader.TiDBSourceReader.tryMoveToNextSplit(TiDBSourceReader.java:122) ~[flink-tidb-connector-1.13-0.0.5-SNAPSHOT.jar:?]...

type/question

## What is the purpose of the change Reduce the number of RPC getTable calls. ## Brief change log 1. add a new field named titableinfo in `io.tidb.bigdata.tidb.handle.TableHandleInternal` to storead...