prefect_cubejs.tasks
Collection of tasks to interact with Cube.js
build_pre_aggregations
Task run method to perform pre-aggregations build.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
- |
subdomain (str
|
The subdomain to use to get the data.
If provided, |
required |
- |
url (str
|
The URL to use to get the data.
This is likely the preferred method for self-hosted Cube
deployments.
For Cube Cloud deployments, the URL should be in the form
|
required |
- |
api_secret (str
|
The API secret used to generate an
API token for authentication.
If provided, it takes precedence over |
required |
- |
api_secret_env_var (str
|
The name of the env var that contains
the API secret to use to generate an API token for authentication.
Defaults to |
required |
- |
security_context (str, dict
|
The security context to use during authentication. If the security context does not contain an expiration period, then a 7-day expiration period is added automatically. More info at https://cube.dev/docs/security/context. |
required |
- |
selector (dict
|
|
required |
- |
wait_for_job_run_completion (boolean
|
Whether the task should wait for the job run completion or not. Default to False. |
required |
- |
wait_time_between_api_calls (int
|
The number of seconds to wait between API calls. Default to 10. |
required |
Returns:
Type | Description |
---|---|
|
|
|
Source code in prefect_cubejs/tasks.py
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
|
run_query
This task calls Cube.js load API and returns the result as a JSON object. More info about Cube.js load API at https://cube.dev/docs/rest-api#api-reference-v-1-load.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
subdomain |
Optional[str]
|
The subdomain to use to get the data.
If provided, |
None
|
url |
Optional[str]
|
The URL to use to get the data. This is likely to be useful to users of self-hosted Cube.js. |
None
|
api_secret |
Optional[str]
|
The API secret used to generate an
API token for authentication.
If provided, it takes precedence over |
None
|
api_secret_env_var |
Optional[str]
|
The name of the env var that contains
the API secret to use to generate an API token for authentication.
Defaults to |
'CUBEJS_API_SECRET'
|
query |
Union[Dict, List[Dict]]
|
|
required |
include_generated_sql |
Optional[bool]
|
Whether the return object should
include SQL info or not.
Default to |
False
|
security_context |
Optional[Union[str, Dict]]
|
The security context to use during authentication. If the security context does not contain an expiration period, then a 7-day expiration period is added automatically. More info at: https://cube.dev/docs/security/context. |
None
|
wait_time_between_api_calls |
Optional[int]
|
The number of seconds to wait between API calls. Default to 10. |
10
|
max_wait_time |
Optional[int]
|
The number of seconds to wait for the Cube.js load API to return a response. |
None
|
Returns:
Type | Description |
---|---|
Dict
|
The Cube.js JSON response, augmented with SQL
information if |
Source code in prefect_cubejs/tasks.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
|