hyper-api-samples icon indicating copy to clipboard operation
hyper-api-samples copied to clipboard

Sample code to get started with the Hyper API.

Results 33 hyper-api-samples issues
Sort by recently updated
recently updated
newest added

```python from tableauhyperapi import HyperProcess, Telemetry, Connection with HyperProcess(telemetry=Telemetry.SEND_USAGE_DATA_TO_TABLEAU) as hyper: with Connection(endpoint=hyper.endpoint) as connection: import time t=time.time() a=connection.execute_scalar_query("select count(1) from 'd:/yellow_tripdata_2021-06.parquet'") print(a,time.time()-t) t=time.time() a=connection.execute_list_query("select passenger_count,count(1) from 'd:/yellow_tripdata_2021-06.parquet'group by passenger_count...

currently only temporary external tables are supported, it will be nice to remove that limitation please

Hi, Thanks for sharing these examples, they are great. Most of the time all works perfectly but from time to time I'm getting the following error when trying to open...

Hi Folks, Is it possible to read from private buckets? I've tried different ways to read from my s3 (inside EC2) but no success. IAM has access to the bucket,...

I am trying to run TPCH-SF100 on my laptop, the good news, I can build the hyper file easily, the test run very well except Query 18 which timeout as...

I have a problem on the query 11 on the TPCH(SF10). It seams Hyper **does not return the correct result set.** By digging into the issue I found something strange...

is this supposed to work ? `create table "region" as (select * from ('./region/*.parquet') );`

Is it possible to connect tables via relationships when creating a hyper file? I couldn't find anything on that topic in the documentation (Or I'm looking for the wrong keywords..)...

Dear Team, I meet a inexplainable problem with TableHyperApi(Tableau_DataExtractHyper_DotNet.dll, version 1.0.21.0). Could you please give me some suggestions how can I fix the problem? Thanks so much. I'm using below...