python-phoenixdb icon indicating copy to clipboard operation
python-phoenixdb copied to clipboard

Phoenix database adapter for Python (migrated to the Apache Phoenix repo)

Results 11 python-phoenixdb issues
Sort by recently updated
recently updated
newest added

Occasionally, what is the reason? > Python 3.6.0 phoenixdb 0.7 Hbase 1.2 Phoenix 4.14.1

Hello, I`m trying to get connect to phoenix server, phoenix version is 4.13(And spark(2.3.0,+pyspark) Hbase(1.2) are used, python version is 2.7.5). With the newest version(v.0.7) for python-phoenixdb, and I got...

Hello, Right now, I get the error, `java.net.SocketTimeoutException: callTimeout=60000` when trying to read large data from Phoenix. Is there a way to set the connection timeout for a session? The...

My Phoenix version is 4.14.0-cdh5.14.2. I know that the default `phoenix.query.timeoutMs` is 10 minutes, so added the following configurations to the `hbase-site.xml`. But this didn't work. property | value ----|----...

Connect to azurehdinsight at the following URL https://USERNAME:[email protected]/hbasephoenix0 https://docs.microsoft.com/en-us/azure/hdinsight/hbase/apache-hbase-using-phoenix-query-server-rest-sdk

In `avatica/client.py`, line 509, we find: ``` response_body = response.read() if response.status != httplib.OK: logger.debug("Received response\n%s", response_body) if b'' in response_body: parse_error_page(response_body) else: # assume the response is in protobuf...

I just started with Phoenix and found this adapter for python. import phoenixdb import phoenixdb.cursor database_url = 'http://localhost:8765/' conn = phoenixdb.connect(database_url, autocommit=True) Mentioned above is the connection string to connect....

If I create table 'USER', and it's schema defined 'PERSONA'. ```python database_url = "http://master:8765/" conn = phoenixdb.connect(database_url, autocommit=True) cursor = conn.cursor() cursor.execute("SELECT * FROM USER") ``` It has a error:...