Plan for supporting data sources #61
Replies: 41 comments 49 replies
-
Clickhouse support would be great! |
Beta Was this translation helpful? Give feedback.
-
Trino support would be great as well! |
Beta Was this translation helpful? Give feedback.
-
I think SQLite should be prioritized higher since it's so common and easy to use. |
Beta Was this translation helpful? Give feedback.
-
Great. I'm waiting for MySQL support. |
Beta Was this translation helpful? Give feedback.
-
KDB+/Q support would be nice to have! |
Beta Was this translation helpful? Give feedback.
-
I would like to ask for BigQuery to have a higher priority |
Beta Was this translation helpful? Give feedback.
-
When do you think Oracle and Microsoft SQL Server will be ready for testing or generally available? |
Beta Was this translation helpful? Give feedback.
-
I am unable to connect to Oracle. I am using Connector X v. 0.2.1a1 According to the connectorx instructions i need to have Using my above creds, I have When I run I receive RuntimeError: timed out waiting for connection: OCI Error: ORA-01017: invalid username/password; logon denied How do I connect conncetorx with Oracle? |
Beta Was this translation helpful? Give feedback.
-
Is |
Beta Was this translation helpful? Give feedback.
-
Hi, I'm trying to connect to a Microsoft Azure SQL Database. It works fine using pymssql:
But I get a "Timed out in bb8" runtime error using the following:
See:
Currently using version '0.2.3'. Any idea? |
Beta Was this translation helpful? Give feedback.
-
Hi, are there any plans for integrating impala? Thanks |
Beta Was this translation helpful? Give feedback.
-
I think integrating with S3 or Athena would be pretty useful |
Beta Was this translation helpful? Give feedback.
-
Hi. I'm getting this error in AWS: pyo3_runtime.PanicException: called So I'm in a loop that's calling df = cx.read_sql(f"mysql://{db_username}:{db_password}@{db_host}:3306/{db_name}", query) where query is changing to cover different date ranges. The loop works for 336 times then the exception happens. On the 337th time it gives this exception. So it seems to be unrelated to the particular date range I'm pulling from... if I start the loop at a different starting date... it still runs exactly 336 times then crashes on the 337th time. Appreciate any help. Thanks. EDIT: Very similar issue on another resource in case it's of any help: I was able to fix the issue on my end by pulling more data per loop and reducing the number of loops. Still, might be something to look at. |
Beta Was this translation helpful? Give feedback.
-
Hi Mr. Wang. I was able to fix the problem. It was likely something wrong with my instance. But I'll keep a lookout if it happens again. Thanks. Excellent tool! Best way to read from sql into pandas.
…-Ameet
________________________________
From: Xiaoying Wang ***@***.***>
Sent: Saturday, May 7, 2022 11:47 PM
To: sfu-db/connector-x ***@***.***>
Cc: ameetnsharma ***@***.***>; Mention ***@***.***>
Subject: Re: [sfu-db/connector-x] Plan for supporting data sources (Discussion #61)
Hi @ameetnsharma<https://github.com/ameetnsharma>,
I tried to run a query in a loop 400 times on an AWS instance to fetch data from mysql, but it works fine.
I think this error is more similar to this issue: openethereum/parity-ethereum#10009<openethereum/parity-ethereum#10009> where might be caused by not enough resource (RAM, reaching to thread limit, etc) when tokio spawn new thread. Can you check whether your instance's status when you see the error?
—
Reply to this email directly, view it on GitHub<#61 (reply in thread)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AKFU3CUG73NHNFVOP32K2O3VI5BOXANCNFSM422E6IZQ>.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Snowflake please! |
Beta Was this translation helpful? Give feedback.
-
Support AWS Athena would be great! |
Beta Was this translation helpful? Give feedback.
-
Reading data from Oracle tables and storing it in a spark data frame will be of great help |
Beta Was this translation helpful? Give feedback.
-
Apache Calcite Avatica support would be great! |
Beta Was this translation helpful? Give feedback.
-
Seems like you could make a lot of people happy if they had ODBC read-only support for existing viable DSN's. And then work on possible to_sql later. |
Beta Was this translation helpful? Give feedback.
-
Hello, any update on Trino connector? |
Beta Was this translation helpful? Give feedback.
-
Is it possible to add Vertica support? |
Beta Was this translation helpful? Give feedback.
-
I would like to connect SQL Server Management Studio with Python using polars and connectorx function: I wrote this chunk of code
but after 30 second, it returned this error RuntimeError Traceback (most recent call last) Cell In[1], line 10 4 conn = 'mssql://sa:{}@{}:5432/Planning_insight?encrypt=true&trusted_connection=true'.format( 5 urllib.parse.quote_plus('MYPASSWORD'), 6 urllib.parse.quote_plus('MYSERVER\SQLEXPRESS') 7 ) File c:\Users\lorenzsc\AppData\Local\miniconda3\envs\padp2\lib\site-packages\connectorx_init_.py:224, in read_sql(conn, query, return_type, protocol, partition_on, partition_range, partition_num, index_col) 221 except ModuleNotFoundError: 222 raise ValueError("You need to install pandas first") --> 224 result = _read_sql( 225 conn, 226 "pandas", 227 queries=queries, 228 protocol=protocol, 229 partition_query=partition_query, 230 ) 231 df = reconstruct_pandas(result) 233 if index_col is not None: RuntimeError: Timed out in bb8 Can anyone help me? |
Beta Was this translation helpful? Give feedback.
-
I suggest support for Netezza |
Beta Was this translation helpful? Give feedback.
-
Is there any chance for DB2 support to be added in the near future? |
Beta Was this translation helpful? Give feedback.
-
DuckDb and azure data explorer would be nice too ! |
Beta Was this translation helpful? Give feedback.
-
Are there any plans to also support writing to DBs? |
Beta Was this translation helpful? Give feedback.
-
adding teradata to supported dbms would be great !!! |
Beta Was this translation helpful? Give feedback.
-
Does this currently support connecting to and retrieving data from Amazon Aurora PostgreSQL tables? |
Beta Was this translation helpful? Give feedback.
-
Can the native protocol of clickhouse be supported? It is not very practical to obtain data from clickhouse using the MySQL protocol because many places control port numbers, and in most cases, only the native port numbers are opened to the external network |
Beta Was this translation helpful? Give feedback.
-
Hi! I appreciate your work, fantastic job. Any plans supporting oracle wallet as auth in oracle connection? If it’s supported, then some notion in the documentation would be helpful. Thanks! |
Beta Was this translation helpful? Give feedback.
-
We plan to add more RDBMS to connector-x as data sources. Here is a list that we are planning to support next:
Stage 1 (leading open source sources)
Stage 2 (popular commercial sources)
Stage 3 (popular cloud-based PaaS that can leverage completed work-to-date)
Stage 4 (popular open source sources)
Backlog:
Feel free to reply here if you think we should add any other RDBMS / data sources (e.g. S3), or share your opinion about the priority of implementation!
Beta Was this translation helpful? Give feedback.
All reactions