gooddata-flight-server 1.29.2.dev2__py3-none-any.whl → 1.33.1.dev1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of gooddata-flight-server might be problematic. Click here for more details.
- gooddata_flight_server/server/auth/token_verifier_factory.py +1 -1
- gooddata_flight_server/server/flight_rpc/server_methods.py +1 -1
- gooddata_flight_server/tasks/thread_task_executor.py +1 -1
- {gooddata_flight_server-1.29.2.dev2.dist-info → gooddata_flight_server-1.33.1.dev1.dist-info}/METADATA +13 -12
- {gooddata_flight_server-1.29.2.dev2.dist-info → gooddata_flight_server-1.33.1.dev1.dist-info}/RECORD +9 -9
- {gooddata_flight_server-1.29.2.dev2.dist-info → gooddata_flight_server-1.33.1.dev1.dist-info}/WHEEL +1 -1
- {gooddata_flight_server-1.29.2.dev2.data → gooddata_flight_server-1.33.1.dev1.data}/scripts/gooddata-flight-server +0 -0
- {gooddata_flight_server-1.29.2.dev2.dist-info → gooddata_flight_server-1.33.1.dev1.dist-info}/LICENSE.txt +0 -0
- {gooddata_flight_server-1.29.2.dev2.dist-info → gooddata_flight_server-1.33.1.dev1.dist-info}/top_level.txt +0 -0
|
@@ -22,7 +22,7 @@ def _import_verification_strategy(module_name: str) -> type[TokenVerificationStr
|
|
|
22
22
|
continue
|
|
23
23
|
|
|
24
24
|
if member == TokenVerificationStrategy:
|
|
25
|
-
# the
|
|
25
|
+
# the TokenVerificationStrategy class is likely imported in the module -
|
|
26
26
|
# don't want that to interfere
|
|
27
27
|
continue
|
|
28
28
|
|
|
@@ -91,7 +91,7 @@ class FlightServerMethods:
|
|
|
91
91
|
if task_result.cancelled:
|
|
92
92
|
raise ErrorInfo.for_reason(
|
|
93
93
|
ErrorCode.COMMAND_CANCELLED,
|
|
94
|
-
f"
|
|
94
|
+
f"FlexConnect function invocation was cancelled. Invocation task was: '{task_result.task_id}'.",
|
|
95
95
|
).to_server_error()
|
|
96
96
|
|
|
97
97
|
result = task_result.result
|
|
@@ -270,7 +270,7 @@ class _TaskExecution:
|
|
|
270
270
|
"""
|
|
271
271
|
Cancels the execution.
|
|
272
272
|
|
|
273
|
-
IMPORTANT: task executor
|
|
273
|
+
IMPORTANT: task executor must not hold any locks at the time of cancellation.
|
|
274
274
|
|
|
275
275
|
:return: True if cancel was successful, false if it was not possible
|
|
276
276
|
"""
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: gooddata-flight-server
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.33.1.dev1
|
|
4
4
|
Summary: Flight RPC server to host custom functions
|
|
5
5
|
Author: GoodData
|
|
6
6
|
Author-email: support@gooddata.com
|
|
7
7
|
License: MIT
|
|
8
|
-
Project-URL: Documentation, https://gooddata-flight-server.readthedocs.io/en/v1.
|
|
8
|
+
Project-URL: Documentation, https://gooddata-flight-server.readthedocs.io/en/v1.33.1.dev1
|
|
9
9
|
Project-URL: Source, https://github.com/gooddata/gooddata-python-sdk
|
|
10
10
|
Keywords: gooddata,flight,rpc,flight rpc,custom functions,analytics,headless,business,intelligence,headless-bi,cloud,native,semantic,layer,sql,metrics
|
|
11
11
|
Classifier: Development Status :: 4 - Beta
|
|
@@ -15,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
19
|
Classifier: Topic :: Database
|
|
19
20
|
Classifier: Topic :: Scientific/Engineering
|
|
20
21
|
Classifier: Topic :: Software Development
|
|
@@ -22,14 +23,14 @@ Classifier: Typing :: Typed
|
|
|
22
23
|
Requires-Python: >=3.9.0
|
|
23
24
|
Description-Content-Type: text/markdown
|
|
24
25
|
License-File: LICENSE.txt
|
|
25
|
-
Requires-Dist: dynaconf
|
|
26
|
-
Requires-Dist: opentelemetry-api
|
|
27
|
-
Requires-Dist: opentelemetry-sdk
|
|
28
|
-
Requires-Dist: orjson
|
|
29
|
-
Requires-Dist: prometheus-client
|
|
30
|
-
Requires-Dist: pyarrow
|
|
31
|
-
Requires-Dist: readerwriterlock
|
|
32
|
-
Requires-Dist: structlog
|
|
26
|
+
Requires-Dist: dynaconf<4.0.0,>=3.1.11
|
|
27
|
+
Requires-Dist: opentelemetry-api<=2.0.0,>=1.24.0
|
|
28
|
+
Requires-Dist: opentelemetry-sdk<=2.0.0,>=1.24.0
|
|
29
|
+
Requires-Dist: orjson<4.0.0,>=3.8.5
|
|
30
|
+
Requires-Dist: prometheus-client~=0.20.0
|
|
31
|
+
Requires-Dist: pyarrow>=16.1.0
|
|
32
|
+
Requires-Dist: readerwriterlock~=1.0.9
|
|
33
|
+
Requires-Dist: structlog<25.0.0,>=24.0.0
|
|
33
34
|
|
|
34
35
|
# GoodData Flight Server
|
|
35
36
|
|
|
@@ -614,8 +615,8 @@ server will expose two HTTP endpoints:
|
|
|
614
615
|
- `/ready` - indicates whether the server is up and ready to serve requests
|
|
615
616
|
|
|
616
617
|
The endpoint will respond with status `500` if the server is not ready. Otherwise will respond with
|
|
617
|
-
`202`. The server is deemed ready when all its modules
|
|
618
|
-
|
|
618
|
+
`202`. The server is deemed ready when all its modules are up and the Flight RPC server is
|
|
619
|
+
'unlocked' to handle requests.
|
|
619
620
|
|
|
620
621
|
- `/live` - indicates whether the server is still alive and can be used. The liveness is determined
|
|
621
622
|
from the status of the modules.
|
{gooddata_flight_server-1.29.2.dev2.dist-info → gooddata_flight_server-1.33.1.dev1.dist-info}/RECORD
RENAMED
|
@@ -20,13 +20,13 @@ gooddata_flight_server/server/server_main.py,sha256=6GoVdA2eTuYf_Yd2isi1Eumbcnkf
|
|
|
20
20
|
gooddata_flight_server/server/auth/__init__.py,sha256=QL4TGz0QQfsNakkgMkve9k8wiR73dfoOF2_18ESSPRE,33
|
|
21
21
|
gooddata_flight_server/server/auth/auth_middleware.py,sha256=ALkX0qiqD6RWAmVmywbrkm6YaaHOXupACu2H7GrCs3I,2895
|
|
22
22
|
gooddata_flight_server/server/auth/token_verifier.py,sha256=AN8PvpqFLhEF5dm0JoDiksFUyb23LaOcCsolwmOkeJk,2512
|
|
23
|
-
gooddata_flight_server/server/auth/token_verifier_factory.py,sha256=
|
|
23
|
+
gooddata_flight_server/server/auth/token_verifier_factory.py,sha256=P-ktBUcl7YNa1bJU2TZO_inMbf4uq4VbFnsbe92FMEc,2133
|
|
24
24
|
gooddata_flight_server/server/auth/token_verifier_impl.py,sha256=F3phLqscCNFKOm3eF7w_KSfmM5_Nf9Kh5R9Rtr63eTU,1626
|
|
25
25
|
gooddata_flight_server/server/flight_rpc/__init__.py,sha256=nfaUa69U3uZAB1udH6tza0se-3fhrsSurgPUQldoGnE,32
|
|
26
26
|
gooddata_flight_server/server/flight_rpc/flight_middleware.py,sha256=Yb44PkgIL8MlYTGSPzHcnII6x9Hxlw5Y88YKeKIFeQI,5738
|
|
27
27
|
gooddata_flight_server/server/flight_rpc/flight_server.py,sha256=mmdFTJwBw3dZhnYpDA9Txy9durOo3WOmlMvznv5-rBQ,8993
|
|
28
28
|
gooddata_flight_server/server/flight_rpc/flight_service.py,sha256=N30rMsSjEqIgTHAARW_oiRz9AYvbm6GwRqR1jq9eP7E,10555
|
|
29
|
-
gooddata_flight_server/server/flight_rpc/server_methods.py,sha256=
|
|
29
|
+
gooddata_flight_server/server/flight_rpc/server_methods.py,sha256=fCUndugFTlAUKG7rHpkmjQ_wkXIeRZty65WAeIhS1r0,7708
|
|
30
30
|
gooddata_flight_server/tasks/__init__.py,sha256=QL4TGz0QQfsNakkgMkve9k8wiR73dfoOF2_18ESSPRE,33
|
|
31
31
|
gooddata_flight_server/tasks/base.py,sha256=e_8sV9JROtXo4rhAWXKvaPbKjm5T_0iFQyXnfGtLLwg,593
|
|
32
32
|
gooddata_flight_server/tasks/metrics.py,sha256=PY5FAp0lCEvsDX_xJNJ_soRZeTQ795OVh9CmBWSto7k,4085
|
|
@@ -35,15 +35,15 @@ gooddata_flight_server/tasks/task_error.py,sha256=1Z2vJfRqRXaQk7fGMo2kGP9wLyxqng
|
|
|
35
35
|
gooddata_flight_server/tasks/task_executor.py,sha256=W7Ml5W1mIi_5L6C4a0c3YgDR1YGVQn48lXYGj_rRaKw,3728
|
|
36
36
|
gooddata_flight_server/tasks/task_result.py,sha256=1EqgP6xmhDDiWZYqJEOZxYZzUqAkRYF7ogsqNWAF4O4,12152
|
|
37
37
|
gooddata_flight_server/tasks/temporal_container.py,sha256=biNEUOSmp3D6iVoGBZnHo88tALdIwkb-SzR5besKmNo,8503
|
|
38
|
-
gooddata_flight_server/tasks/thread_task_executor.py,sha256=
|
|
38
|
+
gooddata_flight_server/tasks/thread_task_executor.py,sha256=uWC7PX8FvPHfwkwPxqeUOr_BaHNb1CUXsQZcmjZAy0E,21949
|
|
39
39
|
gooddata_flight_server/utils/__init__.py,sha256=nfaUa69U3uZAB1udH6tza0se-3fhrsSurgPUQldoGnE,32
|
|
40
40
|
gooddata_flight_server/utils/libc_utils.py,sha256=_ZwKeeB0lk2xh-gSC_7rc9felHu_hq9__GgLKZBI9sI,946
|
|
41
41
|
gooddata_flight_server/utils/logging.py,sha256=3sip4Xte5YHjZNyQEQVo96rCsknxG1JPj7cIbnz0iBo,6081
|
|
42
42
|
gooddata_flight_server/utils/methods_discovery.py,sha256=ZcBJU5dHBsnZD5zDXajE5merwCISfjHGcIlIWCQtNLY,3618
|
|
43
43
|
gooddata_flight_server/utils/otel_tracing.py,sha256=MfKFh0TkVSUmPC6f8Oobp5XSCYxAsQyS0UaSJQF1nCw,4540
|
|
44
|
-
gooddata_flight_server-1.
|
|
45
|
-
gooddata_flight_server-1.
|
|
46
|
-
gooddata_flight_server-1.
|
|
47
|
-
gooddata_flight_server-1.
|
|
48
|
-
gooddata_flight_server-1.
|
|
49
|
-
gooddata_flight_server-1.
|
|
44
|
+
gooddata_flight_server-1.33.1.dev1.data/scripts/gooddata-flight-server,sha256=cXl4cF_pNme_0ns-Dap825C_L-0ovWs9hmlNl7kN9kU,239
|
|
45
|
+
gooddata_flight_server-1.33.1.dev1.dist-info/LICENSE.txt,sha256=o90MhGat28171lD8r77bLXsSnvDVu9CQAsWxAzx1Z2E,1064
|
|
46
|
+
gooddata_flight_server-1.33.1.dev1.dist-info/METADATA,sha256=wYou20NUqYW4R3c2r_XxdwSYVeq22ZiZHbm1ubWwadA,30013
|
|
47
|
+
gooddata_flight_server-1.33.1.dev1.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
48
|
+
gooddata_flight_server-1.33.1.dev1.dist-info/top_level.txt,sha256=fkhUrPUK9CeUzu3qMaEXJbY-HVuY-sqUx8ct7AtZH0s,23
|
|
49
|
+
gooddata_flight_server-1.33.1.dev1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|