Skip to content

Commit ecf38e2

Browse files
authored
removed the experimental_external_format_parquet parameter (#58)
This parameter is no longer required with the latest API versions
1 parent 2ea0149 commit ecf38e2

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Community-Supported/parquet-to-hyper/create_hyper_file_from_parquet.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,9 @@ def run_create_hyper_file_from_parquet(
3434

3535
# Start the Hyper process.
3636
#
37-
# * Since `FORMAT parquet` is an experimental feature, it must be explicitly enabled on startup.
38-
# See also the "Experimental Settings" section in the Tableau Hyper documentation:
39-
# https://help.tableau.com/current/api/hyper_api/en-us/reference/sql/experimentalsettings.html
4037
# * Sending telemetry data to Tableau is encouraged when trying out an experimental feature.
4138
# To opt out, simply set `telemetry=Telemetry.DO_NOT_SEND_USAGE_DATA_TO_TABLEAU` below.
42-
with HyperProcess(telemetry=Telemetry.SEND_USAGE_DATA_TO_TABLEAU,
43-
parameters={"experimental_external_format_parquet": "1"}) as hyper:
39+
with HyperProcess(telemetry=Telemetry.SEND_USAGE_DATA_TO_TABLEAU) as hyper:
4440

4541
# Open a connection to the Hyper process. This will also create the new Hyper file.
4642
# The `CREATE_AND_REPLACE` mode causes the file to be replaced if it

0 commit comments

Comments
 (0)