Updated on 2025-08-25 GMT+08:00

DataArts Fabric DataFrame Parameter Configuration

Different parameters can be set to control the execution actions of the DataFrame. The configurable parameters are listed in the table below.

Table 1 Configurable parameters

Parameter

Data Type

Description

requests_timeout

int

Timeout interval for calling the requests interface to request RESTful, in seconds. The default value is 600s.

timezone

str

Time zone. The default value is UTC. Changes take effect in new connections.

read_from_obs

bool

Whether to read execution results through OBS. The default value is true.

get_result_concurrent_max_worker

int

Maximum concurrency for concurrently reading results. The default maximum concurrency is 3.

wait_result_internal

int

Polling interval for waiting for SQL results, in seconds. The default value is 3s.

Example of modifying the requests_timeout parameter:

import ibis_fabric
ibis_fabric.options.requests_timeout = 300   # Change the timeout interval to 300s.