gooddata-flight-server 1.28.0__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/__init__.py +23 -0
- gooddata_flight_server/_version.py +7 -0
- gooddata_flight_server/cli.py +137 -0
- gooddata_flight_server/config/__init__.py +1 -0
- gooddata_flight_server/config/config.py +536 -0
- gooddata_flight_server/errors/__init__.py +1 -0
- gooddata_flight_server/errors/error_code.py +209 -0
- gooddata_flight_server/errors/error_info.py +475 -0
- gooddata_flight_server/exceptions.py +16 -0
- gooddata_flight_server/health/__init__.py +1 -0
- gooddata_flight_server/health/health_check_http_server.py +103 -0
- gooddata_flight_server/health/server_health_monitor.py +83 -0
- gooddata_flight_server/metrics.py +16 -0
- gooddata_flight_server/py.typed +1 -0
- gooddata_flight_server/server/__init__.py +1 -0
- gooddata_flight_server/server/auth/__init__.py +1 -0
- gooddata_flight_server/server/auth/auth_middleware.py +83 -0
- gooddata_flight_server/server/auth/token_verifier.py +62 -0
- gooddata_flight_server/server/auth/token_verifier_factory.py +55 -0
- gooddata_flight_server/server/auth/token_verifier_impl.py +41 -0
- gooddata_flight_server/server/base.py +63 -0
- gooddata_flight_server/server/default.logging.ini +28 -0
- gooddata_flight_server/server/flight_rpc/__init__.py +1 -0
- gooddata_flight_server/server/flight_rpc/flight_middleware.py +162 -0
- gooddata_flight_server/server/flight_rpc/flight_server.py +230 -0
- gooddata_flight_server/server/flight_rpc/flight_service.py +281 -0
- gooddata_flight_server/server/flight_rpc/server_methods.py +200 -0
- gooddata_flight_server/server/server_base.py +321 -0
- gooddata_flight_server/server/server_main.py +116 -0
- gooddata_flight_server/tasks/__init__.py +1 -0
- gooddata_flight_server/tasks/base.py +21 -0
- gooddata_flight_server/tasks/metrics.py +115 -0
- gooddata_flight_server/tasks/task.py +193 -0
- gooddata_flight_server/tasks/task_error.py +60 -0
- gooddata_flight_server/tasks/task_executor.py +96 -0
- gooddata_flight_server/tasks/task_result.py +363 -0
- gooddata_flight_server/tasks/temporal_container.py +247 -0
- gooddata_flight_server/tasks/thread_task_executor.py +639 -0
- gooddata_flight_server/utils/__init__.py +1 -0
- gooddata_flight_server/utils/libc_utils.py +35 -0
- gooddata_flight_server/utils/logging.py +158 -0
- gooddata_flight_server/utils/methods_discovery.py +98 -0
- gooddata_flight_server/utils/otel_tracing.py +142 -0
- gooddata_flight_server-1.28.0.data/scripts/gooddata-flight-server +10 -0
- gooddata_flight_server-1.28.0.dist-info/LICENSE.txt +1066 -0
- gooddata_flight_server-1.28.0.dist-info/METADATA +737 -0
- gooddata_flight_server-1.28.0.dist-info/RECORD +49 -0
- gooddata_flight_server-1.28.0.dist-info/WHEEL +5 -0
- gooddata_flight_server-1.28.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
gooddata_flight_server/__init__.py,sha256=FVQPY5psu5YnhvlueUsLe5vAiqMOLqkUpf866sAWr7k,1412
|
|
2
|
+
gooddata_flight_server/_version.py,sha256=zy4gDe4cF1m6RDH5jdO10sKxYvLKxTh50GslQNzXo8E,204
|
|
3
|
+
gooddata_flight_server/cli.py,sha256=F324bdArItFbVZmZNCRKuH9U0R35L5_3vOmIrY1uGJw,4683
|
|
4
|
+
gooddata_flight_server/exceptions.py,sha256=MMCMSgnVfVolmLzcivGrIeU52KaY_zPq5qgEKAoTRIk,619
|
|
5
|
+
gooddata_flight_server/metrics.py,sha256=dF4gyoX6IAW0xDzF_wz4_T7qdQmCVElwmiPSANOyqhM,431
|
|
6
|
+
gooddata_flight_server/py.typed,sha256=u_MS29sadlaIqGRPYFjWml5u0gQnoQfvbsf9pu3TZJU,94
|
|
7
|
+
gooddata_flight_server/config/__init__.py,sha256=QL4TGz0QQfsNakkgMkve9k8wiR73dfoOF2_18ESSPRE,33
|
|
8
|
+
gooddata_flight_server/config/config.py,sha256=vMdBzGnBrxPCAsfJgpOxQKjxXl5xjEFNu32_4Bk5Qdw,17108
|
|
9
|
+
gooddata_flight_server/errors/__init__.py,sha256=QL4TGz0QQfsNakkgMkve9k8wiR73dfoOF2_18ESSPRE,33
|
|
10
|
+
gooddata_flight_server/errors/error_code.py,sha256=s7wcNlsGKG0PSPXNMBMQMekViZeaoJKWVboEL12kogE,5808
|
|
11
|
+
gooddata_flight_server/errors/error_info.py,sha256=blpMWCABxSj5j4mLuL7PW4mXKmWBeywKNMLp70WAd44,17599
|
|
12
|
+
gooddata_flight_server/health/__init__.py,sha256=QL4TGz0QQfsNakkgMkve9k8wiR73dfoOF2_18ESSPRE,33
|
|
13
|
+
gooddata_flight_server/health/health_check_http_server.py,sha256=A-wJ5L22s4PtJisNSOolrABp703w-0rhvDKKev_iN9I,3393
|
|
14
|
+
gooddata_flight_server/health/server_health_monitor.py,sha256=vDe3Z5u5SPPG3RWGtrexzoJJ4HLFl7A38_hA6LfS71I,2690
|
|
15
|
+
gooddata_flight_server/server/__init__.py,sha256=nfaUa69U3uZAB1udH6tza0se-3fhrsSurgPUQldoGnE,32
|
|
16
|
+
gooddata_flight_server/server/base.py,sha256=oj4JcbHOutONyooX4fvdvYL0wYe0lbBjch03-F8O3Bk,1756
|
|
17
|
+
gooddata_flight_server/server/default.logging.ini,sha256=U41gIC4gVFZc73Wh2cLlOz6GR97nYZ1lPAyBZYIMWjA,576
|
|
18
|
+
gooddata_flight_server/server/server_base.py,sha256=atISsbum13RAz4lyTnlUAFY5Y4AYK8l-7Jwl480JvxE,9974
|
|
19
|
+
gooddata_flight_server/server/server_main.py,sha256=6GoVdA2eTuYf_Yd2isi1EumbcnkfLZWG1cuT_TWj1hU,4266
|
|
20
|
+
gooddata_flight_server/server/auth/__init__.py,sha256=QL4TGz0QQfsNakkgMkve9k8wiR73dfoOF2_18ESSPRE,33
|
|
21
|
+
gooddata_flight_server/server/auth/auth_middleware.py,sha256=ALkX0qiqD6RWAmVmywbrkm6YaaHOXupACu2H7GrCs3I,2895
|
|
22
|
+
gooddata_flight_server/server/auth/token_verifier.py,sha256=AN8PvpqFLhEF5dm0JoDiksFUyb23LaOcCsolwmOkeJk,2512
|
|
23
|
+
gooddata_flight_server/server/auth/token_verifier_factory.py,sha256=HOeNPi6_QZiyhbusWZRCAm9tH2QNRG68T-MQKifGR5A,2115
|
|
24
|
+
gooddata_flight_server/server/auth/token_verifier_impl.py,sha256=F3phLqscCNFKOm3eF7w_KSfmM5_Nf9Kh5R9Rtr63eTU,1626
|
|
25
|
+
gooddata_flight_server/server/flight_rpc/__init__.py,sha256=nfaUa69U3uZAB1udH6tza0se-3fhrsSurgPUQldoGnE,32
|
|
26
|
+
gooddata_flight_server/server/flight_rpc/flight_middleware.py,sha256=Yb44PkgIL8MlYTGSPzHcnII6x9Hxlw5Y88YKeKIFeQI,5738
|
|
27
|
+
gooddata_flight_server/server/flight_rpc/flight_server.py,sha256=mmdFTJwBw3dZhnYpDA9Txy9durOo3WOmlMvznv5-rBQ,8993
|
|
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=aYuHsr6sMuoY46RFcW-RxLpRgn8j7uFLlRL1cf79Uk0,7695
|
|
30
|
+
gooddata_flight_server/tasks/__init__.py,sha256=QL4TGz0QQfsNakkgMkve9k8wiR73dfoOF2_18ESSPRE,33
|
|
31
|
+
gooddata_flight_server/tasks/base.py,sha256=e_8sV9JROtXo4rhAWXKvaPbKjm5T_0iFQyXnfGtLLwg,593
|
|
32
|
+
gooddata_flight_server/tasks/metrics.py,sha256=PY5FAp0lCEvsDX_xJNJ_soRZeTQ795OVh9CmBWSto7k,4085
|
|
33
|
+
gooddata_flight_server/tasks/task.py,sha256=9Qzhssw53vnlUf5ULL1LsrMrjpG1jAbQBXOc1apHBH4,6485
|
|
34
|
+
gooddata_flight_server/tasks/task_error.py,sha256=1Z2vJfRqRXaQk7fGMo2kGP9wLyxqngutjWyQIYpRNy8,2377
|
|
35
|
+
gooddata_flight_server/tasks/task_executor.py,sha256=W7Ml5W1mIi_5L6C4a0c3YgDR1YGVQn48lXYGj_rRaKw,3728
|
|
36
|
+
gooddata_flight_server/tasks/task_result.py,sha256=1EqgP6xmhDDiWZYqJEOZxYZzUqAkRYF7ogsqNWAF4O4,12152
|
|
37
|
+
gooddata_flight_server/tasks/temporal_container.py,sha256=biNEUOSmp3D6iVoGBZnHo88tALdIwkb-SzR5besKmNo,8503
|
|
38
|
+
gooddata_flight_server/tasks/thread_task_executor.py,sha256=dXyN_V7qZO4F2nhYBKyUAWsh8QusJMB9lUOqHpmwiAI,21949
|
|
39
|
+
gooddata_flight_server/utils/__init__.py,sha256=nfaUa69U3uZAB1udH6tza0se-3fhrsSurgPUQldoGnE,32
|
|
40
|
+
gooddata_flight_server/utils/libc_utils.py,sha256=_ZwKeeB0lk2xh-gSC_7rc9felHu_hq9__GgLKZBI9sI,946
|
|
41
|
+
gooddata_flight_server/utils/logging.py,sha256=3sip4Xte5YHjZNyQEQVo96rCsknxG1JPj7cIbnz0iBo,6081
|
|
42
|
+
gooddata_flight_server/utils/methods_discovery.py,sha256=ZcBJU5dHBsnZD5zDXajE5merwCISfjHGcIlIWCQtNLY,3618
|
|
43
|
+
gooddata_flight_server/utils/otel_tracing.py,sha256=MfKFh0TkVSUmPC6f8Oobp5XSCYxAsQyS0UaSJQF1nCw,4540
|
|
44
|
+
gooddata_flight_server-1.28.0.data/scripts/gooddata-flight-server,sha256=cXl4cF_pNme_0ns-Dap825C_L-0ovWs9hmlNl7kN9kU,239
|
|
45
|
+
gooddata_flight_server-1.28.0.dist-info/LICENSE.txt,sha256=CTs8U6T7MmKBKFFiQYARwgCfWgUzdosq01DI298WFiY,77209
|
|
46
|
+
gooddata_flight_server-1.28.0.dist-info/METADATA,sha256=lxNEpvaiYjxvJu1Bumw42RwYWwvmC_4MYvct09OH1GQ,29996
|
|
47
|
+
gooddata_flight_server-1.28.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
48
|
+
gooddata_flight_server-1.28.0.dist-info/top_level.txt,sha256=fkhUrPUK9CeUzu3qMaEXJbY-HVuY-sqUx8ct7AtZH0s,23
|
|
49
|
+
gooddata_flight_server-1.28.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gooddata_flight_server
|