Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix int + unit tests #577

Merged
merged 10 commits into from
Aug 30, 2022
Merged

Fix int + unit tests #577

merged 10 commits into from
Aug 30, 2022

Conversation

jperez999
Copy link
Collaborator

No description provided.

@jperez999 jperez999 requested a review from benfred August 30, 2022 16:21
@github-actions
Copy link

Documentation preview

https://nvidia-merlin.github.io/Merlin/review/pr-577

@benfred benfred added the chore Infrastructure update label Aug 30, 2022
@jperez999 jperez999 self-assigned this Aug 30, 2022
@jperez999 jperez999 added the ci label Aug 30, 2022
@nvidia-merlin-bot
Copy link
Contributor

Click to view CI Results
GitHub pull request #577 of commit 6ea49e34aa2735b7cfe830deed9f13d7a775cc04, no merge conflicts.
Running as SYSTEM
Setting status of 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 to PENDING with url https://10.20.13.93:8080/job/merlin_merlin/386/console and message: 'Pending'
Using context: Jenkins
Building on master in workspace /var/jenkins_home/workspace/merlin_merlin
using credential systems-login
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/NVIDIA-Merlin/Merlin # timeout=10
Fetching upstream changes from https://github.com/NVIDIA-Merlin/Merlin
 > git --version # timeout=10
using GIT_ASKPASS to set credentials login for merlin-systems
 > git fetch --tags --force --progress -- https://github.com/NVIDIA-Merlin/Merlin +refs/pull/577/*:refs/remotes/origin/pr/577/* # timeout=10
 > git rev-parse 6ea49e34aa2735b7cfe830deed9f13d7a775cc04^{commit} # timeout=10
Checking out Revision 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 # timeout=10
Commit message: "fix test examples in unit and int"
 > git rev-list --no-walk ad8f47b8c2b48b8f1374ec88e6ab444c29390638 # timeout=10
[merlin_merlin] $ /bin/bash /tmp/jenkins14078463052455761030.sh
============================= test session starts ==============================
platform linux -- Python 3.8.10, pytest-7.1.2, pluggy-1.0.0
rootdir: /var/jenkins_home/workspace/merlin_merlin/merlin
plugins: anyio-3.6.1, xdist-2.5.0, forked-1.4.0, cov-3.0.0
collected 3 items

tests/unit/test_version.py . [ 33%]
tests/unit/examples/test_building_deploying_multi_stage_RecSys.py F [ 66%]
tests/unit/examples/test_scaling_criteo_merlin_models.py . [100%]

=================================== FAILURES ===================================
__________________________________ test_func ___________________________________

def test_func():
    with testbook(
        REPO_ROOT
        / "examples"
        / "Building-and-deploying-multi-stage-RecSys"
        / "01-Building-Recommender-Systems-with-Merlin.ipynb",
        execute=False,
    ) as tb1:
        tb1.inject(
            """
            import os
            os.environ["DATA_FOLDER"] = "/tmp/data/"
            os.environ["NUM_ROWS"] = "10000"
            os.system("mkdir -p /tmp/examples")
            os.environ["BASE_DIR"] = "/tmp/examples/"
            """
        )
        tb1.execute()
        assert os.path.isdir("/tmp/examples/dlrm")
        assert os.path.isdir("/tmp/examples/feature_repo")
        assert os.path.isdir("/tmp/examples/query_tower")
        assert os.path.isfile("/tmp/examples/item_embeddings.parquet")
        assert os.path.isfile("/tmp/examples/feature_repo/user_features.py")
        assert os.path.isfile("/tmp/examples/feature_repo/item_features.py")

    with testbook(
        REPO_ROOT
        / "examples"
        / "Building-and-deploying-multi-stage-RecSys"
        / "02-Deploying-multi-stage-RecSys-with-Merlin-Systems.ipynb",
        execute=False,
    ) as tb2:
        tb2.inject(
            """
            import os
            os.environ["DATA_FOLDER"] = "/tmp/data/"
            os.environ["BASE_DIR"] = "/tmp/examples/"
            """
        )
        NUM_OF_CELLS = len(tb2.cells)
        tb2.execute_cell(list(range(0, NUM_OF_CELLS - 3)))
        top_k = tb2.ref("top_k")
        outputs = tb2.ref("outputs")
        assert outputs[0] == "ordered_ids"

        df_lib = get_lib()

        # read in data for request
        batch = df_lib.read_parquet(
            os.path.join("/tmp/data/processed/retrieval/", "train", "part_0.parquet"),
            num_rows=1,
            columns=["user_id"],
        )
        configure_tensorflow()
      response = run_ensemble_on_tritonserver(
            "/tmp/examples/poc_ensemble/", outputs, batch, "ensemble_model"
        )

tests/unit/examples/test_building_deploying_multi_stage_RecSys.py:74:


/usr/local/lib/python3.8/dist-packages/merlin/systems/triton/utils.py:130: in run_ensemble_on_tritonserver
response = send_triton_request(df, output_columns, client=client, triton_model=model_name)
/usr/local/lib/python3.8/dist-packages/merlin/systems/triton/utils.py:178: in send_triton_request
response = client.infer(triton_model, inputs, request_id=request_id, outputs=outputs)
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/init.py:1322: in infer
raise_error_grpc(rpc_error)


rpc_error = <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INTERNAL
details = "in ensemble 'ensemble_model'... 309 in transform>]"\n\nAt:\n /tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute\n","grpc_status":13}"

def raise_error_grpc(rpc_error):
  raise get_error_grpc(rpc_error) from None

E tritonclient.utils.InferenceServerException: [StatusCode.INTERNAL] in ensemble 'ensemble_model', Failed to process the request(s) for model instance '3_queryfeast', message: TypeError: init(): incompatible constructor arguments. The following argument types are supported:
E 1. c_python_backend_utils.InferenceResponse(output_tensors: List[c_python_backend_utils.Tensor], error: c_python_backend_utils.TritonError = None)
E
E Invoked with: kwargs: tensors=[], error="<class 'TypeError'>, int() argument must be a string, a bytes-like object or a number, not 'NoneType', [<FrameSummary file /tmp/examples/poc_ensemble/3_queryfeast/1/model.py, line 105 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/op_runner.py, line 54 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/ops/feast.py, line 309 in transform>]"
E
E At:
E /tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute

/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/init.py:62: InferenceServerException
----------------------------- Captured stdout call -----------------------------
Signal (2) received.
----------------------------- Captured stderr call -----------------------------
2022-08-30 16:21:14.237843: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:21:16.287936: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 1627 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 16:21:16.288745: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:1 with 15153 MB memory: -> device: 1, name: Tesla P100-DGXS-16GB, pci bus id: 0000:08:00.0, compute capability: 6.0
Error in atexit._run_exitfuncs:
Traceback (most recent call last):
File "/usr/lib/python3.8/logging/init.py", line 2127, in shutdown
h.close()
File "/usr/local/lib/python3.8/dist-packages/absl/logging/init.py", line 934, in close
self.stream.close()
File "/usr/local/lib/python3.8/dist-packages/ipykernel/iostream.py", line 438, in close
self.watch_fd_thread.join()
AttributeError: 'OutStream' object has no attribute 'watch_fd_thread'
WARNING clustering 248 points to 32 centroids: please provide at least 1248 training points
2022-08-30 16:22:52.040156: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:22:54.079768: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 1627 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 16:22:54.080521: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:1 with 15153 MB memory: -> device: 1, name: Tesla P100-DGXS-16GB, pci bus id: 0000:08:00.0, compute capability: 6.0
I0830 16:23:01.610788 15492 pinned_memory_manager.cc:240] Pinned memory pool is created at '0x7fb416000000' with size 268435456
I0830 16:23:01.611525 15492 cuda_memory_manager.cc:105] CUDA memory pool is created on device 0 with size 67108864
I0830 16:23:01.618963 15492 model_repository_manager.cc:1191] loading: 0_queryfeast:1
I0830 16:23:01.719233 15492 model_repository_manager.cc:1191] loading: 1_predicttensorflow:1
I0830 16:23:01.726200 15492 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 0_queryfeast (GPU device 0)
I0830 16:23:01.819623 15492 model_repository_manager.cc:1191] loading: 2_queryfaiss:1
I0830 16:23:01.919853 15492 model_repository_manager.cc:1191] loading: 3_queryfeast:1
I0830 16:23:02.020145 15492 model_repository_manager.cc:1191] loading: 4_unrollfeatures:1
I0830 16:23:02.120424 15492 model_repository_manager.cc:1191] loading: 5_predicttensorflow:1
I0830 16:23:02.220722 15492 model_repository_manager.cc:1191] loading: 6_softmaxsampling:1
I0830 16:23:03.995523 15492 model_repository_manager.cc:1345] successfully loaded '0_queryfeast' version 1
I0830 16:23:04.281141 15492 tensorflow.cc:2204] TRITONBACKEND_Initialize: tensorflow
I0830 16:23:04.281180 15492 tensorflow.cc:2214] Triton TRITONBACKEND API version: 1.10
I0830 16:23:04.281187 15492 tensorflow.cc:2220] 'tensorflow' TRITONBACKEND API version: 1.10
I0830 16:23:04.281193 15492 tensorflow.cc:2244] backend configuration:
{"cmdline":{"auto-complete-config":"false","backend-directory":"/opt/tritonserver/backends","min-compute-capability":"6.000000","version":"2","default-max-batch-size":"4"}}
I0830 16:23:04.281238 15492 tensorflow.cc:2310] TRITONBACKEND_ModelInitialize: 1_predicttensorflow (version 1)
I0830 16:23:04.284600 15492 tensorflow.cc:2310] TRITONBACKEND_ModelInitialize: 5_predicttensorflow (version 1)
I0830 16:23:04.286813 15492 tensorflow.cc:2359] TRITONBACKEND_ModelInstanceInitialize: 1_predicttensorflow (GPU device 0)
2022-08-30 16:23:04.657020: I tensorflow/cc/saved_model/reader.cc:43] Reading SavedModel from: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:23:04.660940: I tensorflow/cc/saved_model/reader.cc:81] Reading meta graph with tags { serve }
2022-08-30 16:23:04.660969: I tensorflow/cc/saved_model/reader.cc:122] Reading SavedModel debug info (if present) from: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:23:04.661077: I tensorflow/core/platform/cpu_feature_guard.cc:194] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: SSE3 SSE4.1 SSE4.2 AVX
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:23:04.715996: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 12021 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 16:23:04.747231: I tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc:354] MLIR V1 optimization pass is not enabled
2022-08-30 16:23:04.749315: I tensorflow/cc/saved_model/loader.cc:230] Restoring SavedModel bundle.
2022-08-30 16:23:04.829407: I tensorflow/cc/saved_model/loader.cc:214] Running initialization op on SavedModel bundle at path: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:23:04.854043: I tensorflow/cc/saved_model/loader.cc:321] SavedModel load for tags { serve }; Status: success: OK. Took 197042 microseconds.
I0830 16:23:04.854159 15492 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 2_queryfaiss (GPU device 0)
I0830 16:23:04.854253 15492 model_repository_manager.cc:1345] successfully loaded '1_predicttensorflow' version 1
I0830 16:23:07.229880 15492 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 3_queryfeast (GPU device 0)
I0830 16:23:07.232175 15492 model_repository_manager.cc:1345] successfully loaded '2_queryfaiss' version 1
I0830 16:23:09.527441 15492 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 4_unrollfeatures (GPU device 0)
I0830 16:23:09.527640 15492 model_repository_manager.cc:1345] successfully loaded '3_queryfeast' version 1
I0830 16:23:11.601357 15492 tensorflow.cc:2359] TRITONBACKEND_ModelInstanceInitialize: 5_predicttensorflow (GPU device 0)
I0830 16:23:11.601606 15492 model_repository_manager.cc:1345] successfully loaded '4_unrollfeatures' version 1
2022-08-30 16:23:11.603024: I tensorflow/cc/saved_model/reader.cc:43] Reading SavedModel from: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:23:11.620371: I tensorflow/cc/saved_model/reader.cc:81] Reading meta graph with tags { serve }
2022-08-30 16:23:11.620422: I tensorflow/cc/saved_model/reader.cc:122] Reading SavedModel debug info (if present) from: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:23:11.622496: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 12021 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 16:23:11.652130: I tensorflow/cc/saved_model/loader.cc:230] Restoring SavedModel bundle.
2022-08-30 16:23:11.798522: I tensorflow/cc/saved_model/loader.cc:214] Running initialization op on SavedModel bundle at path: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:23:11.850909: I tensorflow/cc/saved_model/loader.cc:321] SavedModel load for tags { serve }; Status: success: OK. Took 247895 microseconds.
I0830 16:23:11.851059 15492 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 6_softmaxsampling (GPU device 0)
I0830 16:23:11.851149 15492 model_repository_manager.cc:1345] successfully loaded '5_predicttensorflow' version 1
I0830 16:23:13.960492 15492 model_repository_manager.cc:1345] successfully loaded '6_softmaxsampling' version 1
I0830 16:23:13.963540 15492 model_repository_manager.cc:1191] loading: ensemble_model:1
I0830 16:23:14.064349 15492 model_repository_manager.cc:1345] successfully loaded 'ensemble_model' version 1
I0830 16:23:14.064516 15492 server.cc:556]
+------------------+------+
| Repository Agent | Path |
+------------------+------+
+------------------+------+

I0830 16:23:14.064627 15492 server.cc:583]
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Backend | Path | Config |
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| python | /opt/tritonserver/backends/python/libtriton_python.so | {"cmdline":{"auto-complete-config":"false","min-compute-capability":"6.000000","backend-directory":"/opt/tritonserver/backends","default-max-batch-size":"4"}} |
| tensorflow | /opt/tritonserver/backends/tensorflow2/libtriton_tensorflow2.so | {"cmdline":{"auto-complete-config":"false","backend-directory":"/opt/tritonserver/backends","min-compute-capability":"6.000000","version":"2","default-max-batch-size":"4"}} |
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

I0830 16:23:14.064745 15492 server.cc:626]
+---------------------+---------+--------+
| Model | Version | Status |
+---------------------+---------+--------+
| 0_queryfeast | 1 | READY |
| 1_predicttensorflow | 1 | READY |
| 2_queryfaiss | 1 | READY |
| 3_queryfeast | 1 | READY |
| 4_unrollfeatures | 1 | READY |
| 5_predicttensorflow | 1 | READY |
| 6_softmaxsampling | 1 | READY |
| ensemble_model | 1 | READY |
+---------------------+---------+--------+

I0830 16:23:14.128103 15492 metrics.cc:650] Collecting metrics for GPU 0: Tesla P100-DGXS-16GB
I0830 16:23:14.129065 15492 tritonserver.cc:2159]
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Option | Value |
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| server_id | triton |
| server_version | 2.23.0 |
| server_extensions | classification sequence model_repository model_repository(unload_dependents) schedule_policy model_configuration system_shared_memory cuda_shared_memory binary_tensor_data statistics trace |
| model_repository_path[0] | /tmp/examples/poc_ensemble/ |
| model_control_mode | MODE_NONE |
| strict_model_config | 1 |
| rate_limit | OFF |
| pinned_memory_pool_byte_size | 268435456 |
| cuda_memory_pool_byte_size{0} | 67108864 |
| response_cache_byte_size | 0 |
| min_supported_compute_capability | 6.0 |
| strict_readiness | 1 |
| exit_timeout | 30 |
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

E0830 16:23:14.129859151 15492 server_chttp2.cc:40] {"created":"@1661876594.129841496","description":"Only 1 addresses added out of total 2 resolved","file":"/tmp/tritonbuild/tritonserver/build/_deps/repo-third-party-build/grpc-repo/src/grpc/src/core/ext/transport/chttp2/server/chttp2_server.cc","file_line":403,"referenced_errors":[{"created":"@1661876594.129839497","description":"Address family not supported by protocol","errno":97,"file":"/tmp/tritonbuild/tritonserver/build/_deps/repo-third-party-build/grpc-repo/src/grpc/src/core/lib/iomgr/socket_utils_common_posix.cc","file_line":395,"os_error":"Address family not supported by protocol","syscall":"socket","target_address":"[::1]:8001"}]}
I0830 16:23:14.130159 15492 grpc_server.cc:4587] Started GRPCInferenceService at localhost:8001
I0830 16:23:14.130678 15492 http_server.cc:3303] Started HTTPService at 0.0.0.0:8000
I0830 16:23:14.171889 15492 http_server.cc:178] Started Metrics Service at 0.0.0.0:8002
W0830 16:23:15.159946 15492 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
W0830 16:23:16.160157 15492 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
W0830 16:23:17.183496 15492 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
0830 16:23:18.957239 15724 pb_stub.cc:776] Failed to process the request(s) for model '3_queryfeast', message: TypeError: init(): incompatible constructor arguments. The following argument types are supported:
1. c_python_backend_utils.InferenceResponse(output_tensors: List[c_python_backend_utils.Tensor], error: c_python_backend_utils.TritonError = None)

Invoked with: kwargs: tensors=[], error="<class 'TypeError'>, int() argument must be a string, a bytes-like object or a number, not 'NoneType', [<FrameSummary file /tmp/examples/poc_ensemble/3_queryfeast/1/model.py, line 105 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/op_runner.py, line 54 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/ops/feast.py, line 309 in transform>]"

At:
/tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute

I0830 16:23:18.958202 15492 server.cc:257] Waiting for in-flight requests to complete.
I0830 16:23:18.958252 15492 server.cc:273] Timeout 30: Found 0 model versions that have in-flight inferences
I0830 16:23:18.958271 15492 model_repository_manager.cc:1223] unloading: ensemble_model:1
I0830 16:23:18.958373 15492 model_repository_manager.cc:1223] unloading: 6_softmaxsampling:1
I0830 16:23:18.958454 15492 model_repository_manager.cc:1223] unloading: 5_predicttensorflow:1
I0830 16:23:18.958536 15492 model_repository_manager.cc:1223] unloading: 4_unrollfeatures:1
I0830 16:23:18.958530 15492 model_repository_manager.cc:1328] successfully unloaded 'ensemble_model' version 1
I0830 16:23:18.958603 15492 model_repository_manager.cc:1223] unloading: 3_queryfeast:1
I0830 16:23:18.958609 15492 tensorflow.cc:2397] TRITONBACKEND_ModelInstanceFinalize: delete instance state
I0830 16:23:18.958673 15492 model_repository_manager.cc:1223] unloading: 2_queryfaiss:1
I0830 16:23:18.958737 15492 model_repository_manager.cc:1223] unloading: 1_predicttensorflow:1
I0830 16:23:18.958793 15492 model_repository_manager.cc:1223] unloading: 0_queryfeast:1
I0830 16:23:18.958834 15492 server.cc:288] All models are stopped, unloading models
I0830 16:23:18.958852 15492 tensorflow.cc:2336] TRITONBACKEND_ModelFinalize: delete model state
I0830 16:23:18.958857 15492 server.cc:295] Timeout 30: Found 7 live models and 0 in-flight non-inference requests
I0830 16:23:18.959027 15492 tensorflow.cc:2397] TRITONBACKEND_ModelInstanceFinalize: delete instance state
I0830 16:23:18.959203 15492 tensorflow.cc:2336] TRITONBACKEND_ModelFinalize: delete model state
I0830 16:23:18.973832 15492 model_repository_manager.cc:1328] successfully unloaded '1_predicttensorflow' version 1
I0830 16:23:18.988379 15492 model_repository_manager.cc:1328] successfully unloaded '5_predicttensorflow' version 1
I0830 16:23:19.959027 15492 server.cc:295] Timeout 29: Found 5 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 16:23:20.374358 15492 model_repository_manager.cc:1328] successfully unloaded '6_softmaxsampling' version 1
I0830 16:23:20.456809 15492 model_repository_manager.cc:1328] successfully unloaded '4_unrollfeatures' version 1
I0830 16:23:20.644267 15492 model_repository_manager.cc:1328] successfully unloaded '2_queryfaiss' version 1
I0830 16:23:20.959184 15492 server.cc:295] Timeout 28: Found 2 live models and 0 in-flight non-inference requests
I0830 16:23:21.959319 15492 server.cc:295] Timeout 27: Found 2 live models and 0 in-flight non-inference requests
I0830 16:23:22.959448 15492 server.cc:295] Timeout 26: Found 2 live models and 0 in-flight non-inference requests
I0830 16:23:23.959581 15492 server.cc:295] Timeout 25: Found 2 live models and 0 in-flight non-inference requests
I0830 16:23:24.959762 15492 server.cc:295] Timeout 24: Found 2 live models and 0 in-flight non-inference requests
I0830 16:23:25.959890 15492 server.cc:295] Timeout 23: Found 2 live models and 0 in-flight non-inference requests
I0830 16:23:26.960020 15492 server.cc:295] Timeout 22: Found 2 live models and 0 in-flight non-inference requests
I0830 16:23:27.960171 15492 server.cc:295] Timeout 21: Found 2 live models and 0 in-flight non-inference requests
I0830 16:23:28.960286 15492 server.cc:295] Timeout 20: Found 2 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 16:23:29.506604 15492 model_repository_manager.cc:1328] successfully unloaded '0_queryfeast' version 1
I0830 16:23:29.960424 15492 server.cc:295] Timeout 19: Found 1 live models and 0 in-flight non-inference requests
I0830 16:23:30.960556 15492 server.cc:295] Timeout 18: Found 1 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 16:23:31.960676 15492 server.cc:295] Timeout 17: Found 1 live models and 0 in-flight non-inference requests
I0830 16:23:32.090809 15492 model_repository_manager.cc:1328] successfully unloaded '3_queryfeast' version 1
I0830 16:23:32.960787 15492 server.cc:295] Timeout 16: Found 0 live models and 0 in-flight non-inference requests
=============================== warnings summary ===============================
../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_INTEGERSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DOUBLESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_STRINGSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BUCKETSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DECIMALSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_TIMESTAMPSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BINARYSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_COLUMNSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33
/usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
DASK_VERSION = LooseVersion(dask.version)

../../../.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: 34 warnings
/var/jenkins_home/.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
other = LooseVersion(other)

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATATYPE = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE_SECONDARYDEVICEKIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINPUT_FORMAT = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHINPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHOUTPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELOPTIMIZATIONPOLICY_MODELPRIORITY = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELQUEUEPOLICY_TIMEOUTACTION = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELSEQUENCEBATCHING_CONTROL_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER_RESOURCE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/unit/examples/test_building_deploying_multi_stage_RecSys.py::test_func
============ 1 failed, 2 passed, 135 warnings in 257.22s (0:04:17) =============
Build step 'Execute shell' marked build as failure
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash
cd /var/jenkins_home/
CUDA_VISIBLE_DEVICES=1 python test_res_push.py "https://github.com/gitapi/repos/NVIDIA-Merlin/Merlin/issues/$ghprbPullId/comments" "/var/jenkins_home/jobs/$JOB_NAME/builds/$BUILD_NUMBER/log"
[merlin_merlin] $ /bin/bash /tmp/jenkins13645862817142404659.sh

@benfred
Copy link
Member

benfred commented Aug 30, 2022

rerun tests

@nvidia-merlin-bot
Copy link
Contributor

Click to view CI Results
GitHub pull request #577 of commit 6ea49e34aa2735b7cfe830deed9f13d7a775cc04, no merge conflicts.
Running as SYSTEM
Setting status of 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 to PENDING with url https://10.20.13.93:8080/job/merlin_merlin/387/console and message: 'Pending'
Using context: Jenkins
Building on master in workspace /var/jenkins_home/workspace/merlin_merlin
using credential systems-login
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/NVIDIA-Merlin/Merlin # timeout=10
Fetching upstream changes from https://github.com/NVIDIA-Merlin/Merlin
 > git --version # timeout=10
using GIT_ASKPASS to set credentials login for merlin-systems
 > git fetch --tags --force --progress -- https://github.com/NVIDIA-Merlin/Merlin +refs/pull/577/*:refs/remotes/origin/pr/577/* # timeout=10
 > git rev-parse 6ea49e34aa2735b7cfe830deed9f13d7a775cc04^{commit} # timeout=10
Checking out Revision 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 # timeout=10
Commit message: "fix test examples in unit and int"
 > git rev-list --no-walk 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 # timeout=10
[merlin_merlin] $ /bin/bash /tmp/jenkins12168959317980958064.sh
============================= test session starts ==============================
platform linux -- Python 3.8.10, pytest-7.1.2, pluggy-1.0.0
rootdir: /var/jenkins_home/workspace/merlin_merlin/merlin
plugins: anyio-3.6.1, xdist-2.5.0, forked-1.4.0, cov-3.0.0
collected 3 items

tests/unit/test_version.py . [ 33%]
tests/unit/examples/test_building_deploying_multi_stage_RecSys.py F [ 66%]
tests/unit/examples/test_scaling_criteo_merlin_models.py F [100%]

=================================== FAILURES ===================================
__________________________________ test_func ___________________________________

def test_func():
    with testbook(
        REPO_ROOT
        / "examples"
        / "Building-and-deploying-multi-stage-RecSys"
        / "01-Building-Recommender-Systems-with-Merlin.ipynb",
        execute=False,
    ) as tb1:
        tb1.inject(
            """
            import os
            os.environ["DATA_FOLDER"] = "/tmp/data/"
            os.environ["NUM_ROWS"] = "10000"
            os.system("mkdir -p /tmp/examples")
            os.environ["BASE_DIR"] = "/tmp/examples/"
            """
        )
        tb1.execute()
        assert os.path.isdir("/tmp/examples/dlrm")
        assert os.path.isdir("/tmp/examples/feature_repo")
        assert os.path.isdir("/tmp/examples/query_tower")
        assert os.path.isfile("/tmp/examples/item_embeddings.parquet")
        assert os.path.isfile("/tmp/examples/feature_repo/user_features.py")
        assert os.path.isfile("/tmp/examples/feature_repo/item_features.py")

    with testbook(
        REPO_ROOT
        / "examples"
        / "Building-and-deploying-multi-stage-RecSys"
        / "02-Deploying-multi-stage-RecSys-with-Merlin-Systems.ipynb",
        execute=False,
    ) as tb2:
        tb2.inject(
            """
            import os
            os.environ["DATA_FOLDER"] = "/tmp/data/"
            os.environ["BASE_DIR"] = "/tmp/examples/"
            """
        )
        NUM_OF_CELLS = len(tb2.cells)
        tb2.execute_cell(list(range(0, NUM_OF_CELLS - 3)))
        top_k = tb2.ref("top_k")
        outputs = tb2.ref("outputs")
        assert outputs[0] == "ordered_ids"

        df_lib = get_lib()

        # read in data for request
        batch = df_lib.read_parquet(
            os.path.join("/tmp/data/processed/retrieval/", "train", "part_0.parquet"),
            num_rows=1,
            columns=["user_id"],
        )
        configure_tensorflow()
      response = run_ensemble_on_tritonserver(
            "/tmp/examples/poc_ensemble/", outputs, batch, "ensemble_model"
        )

tests/unit/examples/test_building_deploying_multi_stage_RecSys.py:74:


/usr/local/lib/python3.8/dist-packages/merlin/systems/triton/utils.py:130: in run_ensemble_on_tritonserver
response = send_triton_request(df, output_columns, client=client, triton_model=model_name)
/usr/local/lib/python3.8/dist-packages/merlin/systems/triton/utils.py:178: in send_triton_request
response = client.infer(triton_model, inputs, request_id=request_id, outputs=outputs)
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/init.py:1322: in infer
raise_error_grpc(rpc_error)


rpc_error = <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INTERNAL
details = "in ensemble 'ensemble_model'... 309 in transform>]"\n\nAt:\n /tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute\n","grpc_status":13}"

def raise_error_grpc(rpc_error):
  raise get_error_grpc(rpc_error) from None

E tritonclient.utils.InferenceServerException: [StatusCode.INTERNAL] in ensemble 'ensemble_model', Failed to process the request(s) for model instance '3_queryfeast', message: TypeError: init(): incompatible constructor arguments. The following argument types are supported:
E 1. c_python_backend_utils.InferenceResponse(output_tensors: List[c_python_backend_utils.Tensor], error: c_python_backend_utils.TritonError = None)
E
E Invoked with: kwargs: tensors=[], error="<class 'TypeError'>, int() argument must be a string, a bytes-like object or a number, not 'NoneType', [<FrameSummary file /tmp/examples/poc_ensemble/3_queryfeast/1/model.py, line 105 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/op_runner.py, line 54 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/ops/feast.py, line 309 in transform>]"
E
E At:
E /tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute

/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/init.py:62: InferenceServerException
----------------------------- Captured stdout call -----------------------------
Signal (2) received.
----------------------------- Captured stderr call -----------------------------
2022-08-30 16:26:23.901536: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:26:25.967356: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 1627 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 16:26:25.968069: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:1 with 14508 MB memory: -> device: 1, name: Tesla P100-DGXS-16GB, pci bus id: 0000:08:00.0, compute capability: 6.0
Error in atexit._run_exitfuncs:
Traceback (most recent call last):
File "/usr/lib/python3.8/logging/init.py", line 2127, in shutdown
h.close()
File "/usr/local/lib/python3.8/dist-packages/absl/logging/init.py", line 934, in close
self.stream.close()
File "/usr/local/lib/python3.8/dist-packages/ipykernel/iostream.py", line 438, in close
self.watch_fd_thread.join()
AttributeError: 'OutStream' object has no attribute 'watch_fd_thread'
WARNING clustering 252 points to 32 centroids: please provide at least 1248 training points
2022-08-30 16:28:03.721953: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:28:05.772713: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 1627 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 16:28:05.773481: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:1 with 14508 MB memory: -> device: 1, name: Tesla P100-DGXS-16GB, pci bus id: 0000:08:00.0, compute capability: 6.0
I0830 16:28:13.289049 20847 pinned_memory_manager.cc:240] Pinned memory pool is created at '0x7f9346000000' with size 268435456
I0830 16:28:13.289872 20847 cuda_memory_manager.cc:105] CUDA memory pool is created on device 0 with size 67108864
I0830 16:28:13.297137 20847 model_repository_manager.cc:1191] loading: 0_queryfeast:1
I0830 16:28:13.397411 20847 model_repository_manager.cc:1191] loading: 1_predicttensorflow:1
I0830 16:28:13.404567 20847 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 0_queryfeast (GPU device 0)
I0830 16:28:13.497814 20847 model_repository_manager.cc:1191] loading: 2_queryfaiss:1
I0830 16:28:13.598065 20847 model_repository_manager.cc:1191] loading: 3_queryfeast:1
I0830 16:28:13.698373 20847 model_repository_manager.cc:1191] loading: 4_unrollfeatures:1
I0830 16:28:13.798698 20847 model_repository_manager.cc:1191] loading: 5_predicttensorflow:1
I0830 16:28:13.899018 20847 model_repository_manager.cc:1191] loading: 6_softmaxsampling:1
I0830 16:28:15.682384 20847 model_repository_manager.cc:1345] successfully loaded '0_queryfeast' version 1
I0830 16:28:15.964429 20847 tensorflow.cc:2204] TRITONBACKEND_Initialize: tensorflow
I0830 16:28:15.964464 20847 tensorflow.cc:2214] Triton TRITONBACKEND API version: 1.10
I0830 16:28:15.964471 20847 tensorflow.cc:2220] 'tensorflow' TRITONBACKEND API version: 1.10
I0830 16:28:15.964477 20847 tensorflow.cc:2244] backend configuration:
{"cmdline":{"auto-complete-config":"false","backend-directory":"/opt/tritonserver/backends","min-compute-capability":"6.000000","version":"2","default-max-batch-size":"4"}}
I0830 16:28:15.964522 20847 tensorflow.cc:2310] TRITONBACKEND_ModelInitialize: 1_predicttensorflow (version 1)
I0830 16:28:15.967459 20847 tensorflow.cc:2310] TRITONBACKEND_ModelInitialize: 5_predicttensorflow (version 1)
I0830 16:28:15.970436 20847 tensorflow.cc:2359] TRITONBACKEND_ModelInstanceInitialize: 1_predicttensorflow (GPU device 0)
2022-08-30 16:28:16.336961: I tensorflow/cc/saved_model/reader.cc:43] Reading SavedModel from: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:28:16.340038: I tensorflow/cc/saved_model/reader.cc:81] Reading meta graph with tags { serve }
2022-08-30 16:28:16.340071: I tensorflow/cc/saved_model/reader.cc:122] Reading SavedModel debug info (if present) from: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:28:16.340170: I tensorflow/core/platform/cpu_feature_guard.cc:194] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: SSE3 SSE4.1 SSE4.2 AVX
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:28:16.387266: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 11110 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 16:28:16.418307: I tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc:354] MLIR V1 optimization pass is not enabled
2022-08-30 16:28:16.420614: I tensorflow/cc/saved_model/loader.cc:230] Restoring SavedModel bundle.
2022-08-30 16:28:16.502242: I tensorflow/cc/saved_model/loader.cc:214] Running initialization op on SavedModel bundle at path: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:28:16.541434: I tensorflow/cc/saved_model/loader.cc:321] SavedModel load for tags { serve }; Status: success: OK. Took 204490 microseconds.
I0830 16:28:16.541541 20847 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 2_queryfaiss (GPU device 0)
I0830 16:28:16.541634 20847 model_repository_manager.cc:1345] successfully loaded '1_predicttensorflow' version 1
I0830 16:28:18.939683 20847 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 3_queryfeast (GPU device 0)
I0830 16:28:18.944116 20847 model_repository_manager.cc:1345] successfully loaded '2_queryfaiss' version 1
I0830 16:28:21.322051 20847 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 6_softmaxsampling (GPU device 0)
I0830 16:28:21.322169 20847 model_repository_manager.cc:1345] successfully loaded '3_queryfeast' version 1
I0830 16:28:23.464811 20847 tensorflow.cc:2359] TRITONBACKEND_ModelInstanceInitialize: 5_predicttensorflow (GPU device 0)
I0830 16:28:23.465040 20847 model_repository_manager.cc:1345] successfully loaded '6_softmaxsampling' version 1
2022-08-30 16:28:23.465705: I tensorflow/cc/saved_model/reader.cc:43] Reading SavedModel from: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:28:23.476547: I tensorflow/cc/saved_model/reader.cc:81] Reading meta graph with tags { serve }
2022-08-30 16:28:23.476582: I tensorflow/cc/saved_model/reader.cc:122] Reading SavedModel debug info (if present) from: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:28:23.478658: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 11110 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 16:28:23.507639: I tensorflow/cc/saved_model/loader.cc:230] Restoring SavedModel bundle.
2022-08-30 16:28:23.657927: I tensorflow/cc/saved_model/loader.cc:214] Running initialization op on SavedModel bundle at path: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:28:23.710827: I tensorflow/cc/saved_model/loader.cc:321] SavedModel load for tags { serve }; Status: success: OK. Took 245128 microseconds.
I0830 16:28:23.710966 20847 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 4_unrollfeatures (GPU device 0)
I0830 16:28:23.711051 20847 model_repository_manager.cc:1345] successfully loaded '5_predicttensorflow' version 1
I0830 16:28:25.887543 20847 model_repository_manager.cc:1345] successfully loaded '4_unrollfeatures' version 1
I0830 16:28:25.889937 20847 model_repository_manager.cc:1191] loading: ensemble_model:1
I0830 16:28:25.990680 20847 model_repository_manager.cc:1345] successfully loaded 'ensemble_model' version 1
I0830 16:28:25.990826 20847 server.cc:556]
+------------------+------+
| Repository Agent | Path |
+------------------+------+
+------------------+------+

I0830 16:28:25.990914 20847 server.cc:583]
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Backend | Path | Config |
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| python | /opt/tritonserver/backends/python/libtriton_python.so | {"cmdline":{"auto-complete-config":"false","min-compute-capability":"6.000000","backend-directory":"/opt/tritonserver/backends","default-max-batch-size":"4"}} |
| tensorflow | /opt/tritonserver/backends/tensorflow2/libtriton_tensorflow2.so | {"cmdline":{"auto-complete-config":"false","backend-directory":"/opt/tritonserver/backends","min-compute-capability":"6.000000","version":"2","default-max-batch-size":"4"}} |
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

I0830 16:28:25.991006 20847 server.cc:626]
+---------------------+---------+--------+
| Model | Version | Status |
+---------------------+---------+--------+
| 0_queryfeast | 1 | READY |
| 1_predicttensorflow | 1 | READY |
| 2_queryfaiss | 1 | READY |
| 3_queryfeast | 1 | READY |
| 4_unrollfeatures | 1 | READY |
| 5_predicttensorflow | 1 | READY |
| 6_softmaxsampling | 1 | READY |
| ensemble_model | 1 | READY |
+---------------------+---------+--------+

I0830 16:28:26.055274 20847 metrics.cc:650] Collecting metrics for GPU 0: Tesla P100-DGXS-16GB
I0830 16:28:26.056275 20847 tritonserver.cc:2159]
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Option | Value |
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| server_id | triton |
| server_version | 2.23.0 |
| server_extensions | classification sequence model_repository model_repository(unload_dependents) schedule_policy model_configuration system_shared_memory cuda_shared_memory binary_tensor_data statistics trace |
| model_repository_path[0] | /tmp/examples/poc_ensemble/ |
| model_control_mode | MODE_NONE |
| strict_model_config | 1 |
| rate_limit | OFF |
| pinned_memory_pool_byte_size | 268435456 |
| cuda_memory_pool_byte_size{0} | 67108864 |
| response_cache_byte_size | 0 |
| min_supported_compute_capability | 6.0 |
| strict_readiness | 1 |
| exit_timeout | 30 |
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

E0830 16:28:26.057065194 20847 server_chttp2.cc:40] {"created":"@1661876906.057047575","description":"Only 1 addresses added out of total 2 resolved","file":"/tmp/tritonbuild/tritonserver/build/_deps/repo-third-party-build/grpc-repo/src/grpc/src/core/ext/transport/chttp2/server/chttp2_server.cc","file_line":403,"referenced_errors":[{"created":"@1661876906.057045434","description":"Address family not supported by protocol","errno":97,"file":"/tmp/tritonbuild/tritonserver/build/_deps/repo-third-party-build/grpc-repo/src/grpc/src/core/lib/iomgr/socket_utils_common_posix.cc","file_line":395,"os_error":"Address family not supported by protocol","syscall":"socket","target_address":"[::1]:8001"}]}
I0830 16:28:26.057440 20847 grpc_server.cc:4587] Started GRPCInferenceService at localhost:8001
I0830 16:28:26.057966 20847 http_server.cc:3303] Started HTTPService at 0.0.0.0:8000
I0830 16:28:26.099199 20847 http_server.cc:178] Started Metrics Service at 0.0.0.0:8002
W0830 16:28:27.074065 20847 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
W0830 16:28:28.074262 20847 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
W0830 16:28:29.092448 20847 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
0830 16:28:30.636465 21159 pb_stub.cc:776] Failed to process the request(s) for model '3_queryfeast', message: TypeError: init(): incompatible constructor arguments. The following argument types are supported:
1. c_python_backend_utils.InferenceResponse(output_tensors: List[c_python_backend_utils.Tensor], error: c_python_backend_utils.TritonError = None)

Invoked with: kwargs: tensors=[], error="<class 'TypeError'>, int() argument must be a string, a bytes-like object or a number, not 'NoneType', [<FrameSummary file /tmp/examples/poc_ensemble/3_queryfeast/1/model.py, line 105 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/op_runner.py, line 54 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/ops/feast.py, line 309 in transform>]"

At:
/tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute

I0830 16:28:30.637588 20847 server.cc:257] Waiting for in-flight requests to complete.
I0830 16:28:30.637630 20847 server.cc:273] Timeout 30: Found 0 model versions that have in-flight inferences
I0830 16:28:30.637648 20847 model_repository_manager.cc:1223] unloading: ensemble_model:1
I0830 16:28:30.637744 20847 model_repository_manager.cc:1223] unloading: 6_softmaxsampling:1
I0830 16:28:30.637816 20847 model_repository_manager.cc:1223] unloading: 5_predicttensorflow:1
I0830 16:28:30.637889 20847 model_repository_manager.cc:1223] unloading: 4_unrollfeatures:1
I0830 16:28:30.637917 20847 model_repository_manager.cc:1328] successfully unloaded 'ensemble_model' version 1
I0830 16:28:30.637960 20847 model_repository_manager.cc:1223] unloading: 3_queryfeast:1
I0830 16:28:30.637987 20847 tensorflow.cc:2397] TRITONBACKEND_ModelInstanceFinalize: delete instance state
I0830 16:28:30.638037 20847 model_repository_manager.cc:1223] unloading: 2_queryfaiss:1
I0830 16:28:30.638111 20847 model_repository_manager.cc:1223] unloading: 1_predicttensorflow:1
I0830 16:28:30.638158 20847 model_repository_manager.cc:1223] unloading: 0_queryfeast:1
I0830 16:28:30.638192 20847 tensorflow.cc:2336] TRITONBACKEND_ModelFinalize: delete model state
I0830 16:28:30.638197 20847 server.cc:288] All models are stopped, unloading models
I0830 16:28:30.638298 20847 server.cc:295] Timeout 30: Found 7 live models and 0 in-flight non-inference requests
I0830 16:28:30.638355 20847 tensorflow.cc:2397] TRITONBACKEND_ModelInstanceFinalize: delete instance state
I0830 16:28:30.638538 20847 tensorflow.cc:2336] TRITONBACKEND_ModelFinalize: delete model state
I0830 16:28:30.656851 20847 model_repository_manager.cc:1328] successfully unloaded '1_predicttensorflow' version 1
I0830 16:28:30.665677 20847 model_repository_manager.cc:1328] successfully unloaded '5_predicttensorflow' version 1
I0830 16:28:31.638418 20847 server.cc:295] Timeout 29: Found 5 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 16:28:32.257366 20847 model_repository_manager.cc:1328] successfully unloaded '6_softmaxsampling' version 1
I0830 16:28:32.293134 20847 model_repository_manager.cc:1328] successfully unloaded '4_unrollfeatures' version 1
I0830 16:28:32.365442 20847 model_repository_manager.cc:1328] successfully unloaded '2_queryfaiss' version 1
I0830 16:28:32.638537 20847 server.cc:295] Timeout 28: Found 2 live models and 0 in-flight non-inference requests
I0830 16:28:33.638659 20847 server.cc:295] Timeout 27: Found 2 live models and 0 in-flight non-inference requests
I0830 16:28:34.638779 20847 server.cc:295] Timeout 26: Found 2 live models and 0 in-flight non-inference requests
I0830 16:28:35.638895 20847 server.cc:295] Timeout 25: Found 2 live models and 0 in-flight non-inference requests
I0830 16:28:36.639053 20847 server.cc:295] Timeout 24: Found 2 live models and 0 in-flight non-inference requests
I0830 16:28:37.639170 20847 server.cc:295] Timeout 23: Found 2 live models and 0 in-flight non-inference requests
I0830 16:28:38.639307 20847 server.cc:295] Timeout 22: Found 2 live models and 0 in-flight non-inference requests
I0830 16:28:39.639429 20847 server.cc:295] Timeout 21: Found 2 live models and 0 in-flight non-inference requests
I0830 16:28:40.639552 20847 server.cc:295] Timeout 20: Found 2 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 16:28:41.159074 20847 model_repository_manager.cc:1328] successfully unloaded '0_queryfeast' version 1
I0830 16:28:41.639675 20847 server.cc:295] Timeout 19: Found 1 live models and 0 in-flight non-inference requests
I0830 16:28:42.639794 20847 server.cc:295] Timeout 18: Found 1 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 16:28:43.322891 20847 model_repository_manager.cc:1328] successfully unloaded '3_queryfeast' version 1
I0830 16:28:43.639913 20847 server.cc:295] Timeout 17: Found 0 live models and 0 in-flight non-inference requests
__________________________________ test_func ___________________________________

def test_func():
    with testbook(
        REPO_ROOT / "examples" / "scaling-criteo" / "02-ETL-with-NVTabular.ipynb",
        execute=False,
        timeout=180,
    ) as tb1:
        tb1.inject(
            """
            import os
            os.environ["BASE_DIR"] = "/tmp/input/criteo/"
            os.environ["INPUT_DATA_DIR"] = "/tmp/input/criteo/"
            os.environ["OUTPUT_DATA_DIR"] = "/tmp/output/criteo/"
            os.system("mkdir -p /tmp/input/criteo")
            os.system("mkdir -p /tmp/output/criteo")

            from merlin.datasets.synthetic import generate_data

            train, valid = generate_data("criteo", int(1000000), set_sizes=(0.7, 0.3))

            train.to_ddf().compute().to_parquet('/tmp/input/criteo/day_0.parquet')
            valid.to_ddf().compute().to_parquet('/tmp/input/criteo/day_1.parquet')
            """
        )
      tb1.execute()

tests/unit/examples/test_scaling_criteo_merlin_models.py:37:


/usr/local/lib/python3.8/dist-packages/testbook/client.py:147: in execute
super().execute_cell(cell, index)
/usr/local/lib/python3.8/dist-packages/nbclient/util.py:85: in wrapped
return just_run(coro(*args, **kwargs))
/usr/local/lib/python3.8/dist-packages/nbclient/util.py:60: in just_run
return loop.run_until_complete(coro)
/usr/lib/python3.8/asyncio/base_events.py:616: in run_until_complete
return future.result()
/usr/local/lib/python3.8/dist-packages/nbclient/client.py:1025: in async_execute_cell
await self._check_raise_for_error(cell, cell_index, exec_reply)


self = <testbook.client.TestbookNotebookClient object at 0x7f50787965b0>
cell = {'cell_type': 'code', 'execution_count': 7, 'metadata': {'jupyter': {'outputs_hidden': False}, 'execution': {'iopub.st...pool_size=(device_pool_size // 256) * 256\n )\n\n# Create the distributed client\nclient = Client(cluster)\nclient'}
cell_index = 12
exec_reply = {'buffers': [], 'content': {'ename': 'MemoryError', 'engine_info': {'engine_id': -1, 'engine_uuid': '17c15c0d-d834-4c6...e, 'engine': '17c15c0d-d834-4c63-a3f6-7d20f88d2ead', 'started': '2022-08-30T16:28:53.798716Z', 'status': 'error'}, ...}

async def _check_raise_for_error(
    self, cell: NotebookNode, cell_index: int, exec_reply: t.Optional[t.Dict]
) -> None:

    if exec_reply is None:
        return None

    exec_reply_content = exec_reply['content']
    if exec_reply_content['status'] != 'error':
        return None

    cell_allows_errors = (not self.force_raise_errors) and (
        self.allow_errors
        or exec_reply_content.get('ename') in self.allow_error_names
        or "raises-exception" in cell.metadata.get("tags", [])
    )
    await run_hook(
        self.on_cell_error, cell=cell, cell_index=cell_index, execute_reply=exec_reply
    )
    if not cell_allows_errors:
      raise CellExecutionError.from_cell_and_msg(cell, exec_reply_content)

E nbclient.exceptions.CellExecutionError: An error occurred while executing the following cell:
E ------------------
E # Dask dashboard
E dashboard_port = "8787"
E
E # Deploy a Single-Machine Multi-GPU Cluster
E protocol = "tcp" # "tcp" or "ucx"
E if numba.cuda.is_available():
E NUM_GPUS = list(range(len(numba.cuda.gpus)))
E else:
E NUM_GPUS = []
E visible_devices = ",".join([str(n) for n in NUM_GPUS]) # Select devices to place workers
E device_limit_frac = 0.7 # Spill GPU-Worker memory to host at this limit.
E device_pool_frac = 0.8
E part_mem_frac = 0.15
E
E # Use total device size to calculate args.device_limit_frac
E device_size = device_mem_size(kind="total")
E device_limit = int(device_limit_frac * device_size)
E device_pool_size = int(device_pool_frac * device_size)
E part_size = int(part_mem_frac * device_size)
E
E # Check if any device memory is already occupied
E for dev in visible_devices.split(","):
E fmem = pynvml_mem_size(kind="free", index=int(dev))
E used = (device_size - fmem) / 1e9
E if used > 1.0:
E warnings.warn(f"BEWARE - {used} GB is already occupied on device {int(dev)}!")
E
E cluster = None # (Optional) Specify existing scheduler port
E if cluster is None:
E cluster = LocalCUDACluster(
E protocol=protocol,
E n_workers=len(visible_devices.split(",")),
E CUDA_VISIBLE_DEVICES=visible_devices,
E device_memory_limit=device_limit,
E local_directory=dask_workdir,
E dashboard_address=":" + dashboard_port,
E rmm_pool_size=(device_pool_size // 256) * 256
E )
E
E # Create the distributed client
E client = Client(cluster)
E client
E ------------------
E
E �[0;31m---------------------------------------------------------------------------�[0m
E �[0;31mMemoryError�[0m Traceback (most recent call last)
E Input �[0;32mIn [7]�[0m, in �[0;36m<cell line: 29>�[0;34m()�[0m
E �[1;32m 28�[0m cluster �[38;5;241m=�[39m �[38;5;28;01mNone�[39;00m �[38;5;66;03m# (Optional) Specify existing scheduler port�[39;00m
E �[1;32m 29�[0m �[38;5;28;01mif�[39;00m cluster �[38;5;129;01mis�[39;00m �[38;5;28;01mNone�[39;00m:
E �[0;32m---> 30�[0m cluster �[38;5;241m=�[39m �[43mLocalCUDACluster�[49m�[43m(�[49m
E �[1;32m 31�[0m �[43m �[49m�[43mprotocol�[49m�[38;5;241;43m=�[39;49m�[43mprotocol�[49m�[43m,�[49m
E �[1;32m 32�[0m �[43m �[49m�[43mn_workers�[49m�[38;5;241;43m=�[39;49m�[38;5;28;43mlen�[39;49m�[43m(�[49m�[43mvisible_devices�[49m�[38;5;241;43m.�[39;49m�[43msplit�[49m�[43m(�[49m�[38;5;124;43m"�[39;49m�[38;5;124;43m,�[39;49m�[38;5;124;43m"�[39;49m�[43m)�[49m�[43m)�[49m�[43m,�[49m
E �[1;32m 33�[0m �[43m �[49m�[43mCUDA_VISIBLE_DEVICES�[49m�[38;5;241;43m=�[39;49m�[43mvisible_devices�[49m�[43m,�[49m
E �[1;32m 34�[0m �[43m �[49m�[43mdevice_memory_limit�[49m�[38;5;241;43m=�[39;49m�[43mdevice_limit�[49m�[43m,�[49m
E �[1;32m 35�[0m �[43m �[49m�[43mlocal_directory�[49m�[38;5;241;43m=�[39;49m�[43mdask_workdir�[49m�[43m,�[49m
E �[1;32m 36�[0m �[43m �[49m�[43mdashboard_address�[49m�[38;5;241;43m=�[39;49m�[38;5;124;43m"�[39;49m�[38;5;124;43m:�[39;49m�[38;5;124;43m"�[39;49m�[43m �[49m�[38;5;241;43m+�[39;49m�[43m �[49m�[43mdashboard_port�[49m�[43m,�[49m
E �[1;32m 37�[0m �[43m �[49m�[43mrmm_pool_size�[49m�[38;5;241;43m=�[39;49m�[43m(�[49m�[43mdevice_pool_size�[49m�[43m �[49m�[38;5;241;43m/�[39;49m�[38;5;241;43m/�[39;49m�[43m �[49m�[38;5;241;43m256�[39;49m�[43m)�[49m�[43m �[49m�[38;5;241;43m�[39;49m�[43m �[49m�[38;5;241;43m256�[39;49m
E �[1;32m 38�[0m �[43m �[49m�[43m)�[49m
E �[1;32m 40�[0m �[38;5;66;03m# Create the distributed client�[39;00m
E �[1;32m 41�[0m client �[38;5;241m=�[39m Client(cluster)
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/dask_cuda/local_cuda_cluster.py:366�[0m, in �[0;36mLocalCUDACluster.__init__�[0;34m(self, CUDA_VISIBLE_DEVICES, n_workers, threads_per_worker, memory_limit, device_memory_limit, data, local_directory, shared_filesystem, protocol, enable_tcp_over_ucx, enable_infiniband, enable_nvlink, enable_rdmacm, rmm_pool_size, rmm_maximum_pool_size, rmm_managed_memory, rmm_async, rmm_log_directory, rmm_track_allocations, jit_unspill, log_spilling, worker_class, pre_import, **kwargs)�[0m
E �[1;32m 364�[0m �[38;5;28mself�[39m�[38;5;241m.�[39mcuda_visible_devices �[38;5;241m=�[39m CUDA_VISIBLE_DEVICES
E �[1;32m 365�[0m �[38;5;28mself�[39m�[38;5;241m.�[39mscale(n_workers)
E �[0;32m--> 366�[0m �[38;5;28;43mself�[39;49m�[38;5;241;43m.�[39;49m�[43msync�[49m�[43m(�[49m�[38;5;28;43mself�[39;49m�[38;5;241;43m.�[39;49m�[43m_correct_state�[49m�[43m)�[49m
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/distributed/utils.py:309�[0m, in �[0;36mSyncMethodMixin.sync�[0;34m(self, func, asynchronous, callback_timeout, args, **kwargs)�[0m
E �[1;32m 307�[0m �[38;5;28;01mreturn�[39;00m future
E �[1;32m 308�[0m �[38;5;28;01melse�[39;00m:
E �[0;32m--> 309�[0m �[38;5;28;01mreturn�[39;00m �[43msync�[49m�[43m(�[49m
E �[1;32m 310�[0m �[43m �[49m�[38;5;28;43mself�[39;49m�[38;5;241;43m.�[39;49m�[43mloop�[49m�[43m,�[49m�[43m �[49m�[43mfunc�[49m�[43m,�[49m�[43m �[49m�[38;5;241;43m
�[39;49m�[43margs�[49m�[43m,�[49m�[43m �[49m�[43mcallback_timeout�[49m�[38;5;241;43m=�[39;49m�[43mcallback_timeout�[49m�[43m,�[49m�[43m �[49m�[38;5;241;43m
�[39;49m�[38;5;241;43m*�[39;49m�[43mkwargs�[49m
E �[1;32m 311�[0m �[43m �[49m�[43m)�[49m
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/distributed/utils.py:376�[0m, in �[0;36msync�[0;34m(loop, func, callback_timeout, *args, **kwargs)�[0m
E �[1;32m 374�[0m �[38;5;28;01mif�[39;00m error:
E �[1;32m 375�[0m typ, exc, tb �[38;5;241m=�[39m error
E �[0;32m--> 376�[0m �[38;5;28;01mraise�[39;00m exc�[38;5;241m.�[39mwith_traceback(tb)
E �[1;32m 377�[0m �[38;5;28;01melse�[39;00m:
E �[1;32m 378�[0m �[38;5;28;01mreturn�[39;00m result
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/distributed/utils.py:349�[0m, in �[0;36msync..f�[0;34m()�[0m
E �[1;32m 347�[0m future �[38;5;241m=�[39m asyncio�[38;5;241m.�[39mwait_for(future, callback_timeout)
E �[1;32m 348�[0m future �[38;5;241m=�[39m asyncio�[38;5;241m.�[39mensure_future(future)
E �[0;32m--> 349�[0m result �[38;5;241m=�[39m �[38;5;28;01myield�[39;00m future
E �[1;32m 350�[0m �[38;5;28;01mexcept�[39;00m �[38;5;167;01mException�[39;00m:
E �[1;32m 351�[0m error �[38;5;241m=�[39m sys�[38;5;241m.�[39mexc_info()
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/tornado/gen.py:769�[0m, in �[0;36mRunner.run�[0;34m(self)�[0m
E �[1;32m 766�[0m exc_info �[38;5;241m=�[39m �[38;5;28;01mNone�[39;00m
E �[1;32m 768�[0m �[38;5;28;01mtry�[39;00m:
E �[0;32m--> 769�[0m value �[38;5;241m=�[39m �[43mfuture�[49m�[38;5;241;43m.�[39;49m�[43mresult�[49m�[43m(�[49m�[43m)�[49m
E �[1;32m 770�[0m �[38;5;28;01mexcept�[39;00m �[38;5;167;01mException�[39;00m:
E �[1;32m 771�[0m exc_info �[38;5;241m=�[39m sys�[38;5;241m.�[39mexc_info()
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/distributed/deploy/spec.py:352�[0m, in �[0;36mSpecCluster._correct_state_internal�[0;34m(self)�[0m
E �[1;32m 350�[0m �[38;5;28;01mfor�[39;00m w �[38;5;129;01min�[39;00m workers:
E �[1;32m 351�[0m w�[38;5;241m.�[39m_cluster �[38;5;241m=�[39m weakref�[38;5;241m.�[39mref(�[38;5;28mself�[39m)
E �[0;32m--> 352�[0m �[38;5;28;01mawait�[39;00m w �[38;5;66;03m# for tornado gen.coroutine support�[39;00m
E �[1;32m 353�[0m �[38;5;28mself�[39m�[38;5;241m.�[39mworkers�[38;5;241m.�[39mupdate(�[38;5;28mdict�[39m(�[38;5;28mzip�[39m(to_open, workers)))
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/distributed/core.py:299�[0m, in �[0;36mServer.await.._�[0;34m()�[0m
E �[1;32m 293�[0m �[38;5;28;01mraise�[39;00m �[38;5;167;01mTimeoutError�[39;00m(
E �[1;32m 294�[0m �[38;5;124m"�[39m�[38;5;132;01m{}�[39;00m�[38;5;124m failed to start in �[39m�[38;5;132;01m{}�[39;00m�[38;5;124m seconds�[39m�[38;5;124m"�[39m�[38;5;241m.�[39mformat(
E �[1;32m 295�[0m �[38;5;28mtype�[39m(�[38;5;28mself�[39m)�[38;5;241m.�[39m�[38;5;18m__name__�[39m, timeout
E �[1;32m 296�[0m )
E �[1;32m 297�[0m )
E �[1;32m 298�[0m �[38;5;28;01melse�[39;00m:
E �[0;32m--> 299�[0m �[38;5;28;01mawait�[39;00m �[38;5;28mself�[39m�[38;5;241m.�[39mstart()
E �[1;32m 300�[0m �[38;5;28mself�[39m�[38;5;241m.�[39mstatus �[38;5;241m=�[39m Status�[38;5;241m.�[39mrunning
E �[1;32m 301�[0m �[38;5;28;01mreturn�[39;00m �[38;5;28mself�[39m
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/distributed/nanny.py:347�[0m, in �[0;36mNanny.start�[0;34m(self)�[0m
E �[1;32m 344�[0m �[38;5;28;01mawait�[39;00m �[38;5;28mself�[39m�[38;5;241m.�[39mplugin_add(plugin�[38;5;241m=�[39mplugin, name�[38;5;241m=�[39mname)
E �[1;32m 346�[0m logger�[38;5;241m.�[39minfo(�[38;5;124m"�[39m�[38;5;124m Start Nanny at: �[39m�[38;5;132;01m%r�[39;00m�[38;5;124m"�[39m, �[38;5;28mself�[39m�[38;5;241m.�[39maddress)
E �[0;32m--> 347�[0m response �[38;5;241m=�[39m �[38;5;28;01mawait�[39;00m �[38;5;28mself�[39m�[38;5;241m.�[39minstantiate()
E �[1;32m 348�[0m �[38;5;28;01mif�[39;00m response �[38;5;241m==�[39m Status�[38;5;241m.�[39mrunning:
E �[1;32m 349�[0m �[38;5;28;01massert�[39;00m �[38;5;28mself�[39m�[38;5;241m.�[39mworker_address
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/distributed/nanny.py:430�[0m, in �[0;36mNanny.instantiate�[0;34m(self)�[0m
E �[1;32m 428�[0m �[38;5;28;01melse�[39;00m:
E �[1;32m 429�[0m �[38;5;28;01mtry�[39;00m:
E �[0;32m--> 430�[0m result �[38;5;241m=�[39m �[38;5;28;01mawait�[39;00m �[38;5;28mself�[39m�[38;5;241m.�[39mprocess�[38;5;241m.�[39mstart()
E �[1;32m 431�[0m �[38;5;28;01mexcept�[39;00m �[38;5;167;01mException�[39;00m:
E �[1;32m 432�[0m �[38;5;28;01mawait�[39;00m �[38;5;28mself�[39m�[38;5;241m.�[39mclose()
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/distributed/nanny.py:685�[0m, in �[0;36mWorkerProcess.start�[0;34m(self)�[0m
E �[1;32m 683�[0m �[38;5;28;01mreturn�[39;00m �[38;5;28mself�[39m�[38;5;241m.�[39mstatus
E �[1;32m 684�[0m �[38;5;28;01mtry�[39;00m:
E �[0;32m--> 685�[0m msg �[38;5;241m=�[39m �[38;5;28;01mawait�[39;00m �[38;5;28mself�[39m�[38;5;241m.�[39m_wait_until_connected(uid)
E �[1;32m 686�[0m �[38;5;28;01mexcept�[39;00m �[38;5;167;01mException�[39;00m:
E �[1;32m 687�[0m �[38;5;28mself�[39m�[38;5;241m.�[39mstatus �[38;5;241m=�[39m Status�[38;5;241m.�[39mfailed
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/distributed/nanny.py:803�[0m, in �[0;36mWorkerProcess._wait_until_connected�[0;34m(self, uid)�[0m
E �[1;32m 799�[0m �[38;5;28;01mif�[39;00m �[38;5;124m"�[39m�[38;5;124mexception�[39m�[38;5;124m"�[39m �[38;5;129;01min�[39;00m msg:
E �[1;32m 800�[0m logger�[38;5;241m.�[39merror(
E �[1;32m 801�[0m �[38;5;124m"�[39m�[38;5;124mFailed while trying to start worker process: �[39m�[38;5;132;01m%s�[39;00m�[38;5;124m"�[39m, msg[�[38;5;124m"�[39m�[38;5;124mexception�[39m�[38;5;124m"�[39m]
E �[1;32m 802�[0m )
E �[0;32m--> 803�[0m �[38;5;28;01mraise�[39;00m msg[�[38;5;124m"�[39m�[38;5;124mexception�[39m�[38;5;124m"�[39m]
E �[1;32m 804�[0m �[38;5;28;01melse�[39;00m:
E �[1;32m 805�[0m �[38;5;28;01mreturn�[39;00m msg
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/distributed/nanny.py:869�[0m, in �[0;36mrun�[0;34m()�[0m
E �[1;32m 865�[0m �[38;5;124;03m"""�[39;00m
E �[1;32m 866�[0m �[38;5;124;03mTry to start worker and inform parent of outcome.�[39;00m
E �[1;32m 867�[0m �[38;5;124;03m"""�[39;00m
E �[1;32m 868�[0m �[38;5;28;01mtry�[39;00m:
E �[0;32m--> 869�[0m �[38;5;28;01mawait�[39;00m worker
E �[1;32m 870�[0m �[38;5;28;01mexcept�[39;00m �[38;5;167;01mException�[39;00m �[38;5;28;01mas�[39;00m e:
E �[1;32m 871�[0m logger�[38;5;241m.�[39mexception(�[38;5;124m"�[39m�[38;5;124mFailed to start worker�[39m�[38;5;124m"�[39m)
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/distributed/core.py:299�[0m, in �[0;36m_�[0;34m()�[0m
E �[1;32m 293�[0m �[38;5;28;01mraise�[39;00m �[38;5;167;01mTimeoutError�[39;00m(
E �[1;32m 294�[0m �[38;5;124m"�[39m�[38;5;132;01m{}�[39;00m�[38;5;124m failed to start in �[39m�[38;5;132;01m{}�[39;00m�[38;5;124m seconds�[39m�[38;5;124m"�[39m�[38;5;241m.�[39mformat(
E �[1;32m 295�[0m �[38;5;28mtype�[39m(�[38;5;28mself�[39m)�[38;5;241m.�[39m�[38;5;18m__name__�[39m, timeout
E �[1;32m 296�[0m )
E �[1;32m 297�[0m )
E �[1;32m 298�[0m �[38;5;28;01melse�[39;00m:
E �[0;32m--> 299�[0m �[38;5;28;01mawait�[39;00m �[38;5;28mself�[39m�[38;5;241m.�[39mstart()
E �[1;32m 300�[0m �[38;5;28mself�[39m�[38;5;241m.�[39mstatus �[38;5;241m=�[39m Status�[38;5;241m.�[39mrunning
E �[1;32m 301�[0m �[38;5;28;01mreturn�[39;00m �[38;5;28mself�[39m
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/distributed/worker.py:1372�[0m, in �[0;36mstart�[0;34m()�[0m
E �[1;32m 1370�[0m �[38;5;28;01mfor�[39;00m exc �[38;5;129;01min�[39;00m plugins_exceptions:
E �[1;32m 1371�[0m logger�[38;5;241m.�[39merror(�[38;5;28mrepr�[39m(exc))
E �[0;32m-> 1372�[0m �[38;5;28;01mraise�[39;00m plugins_exceptions[�[38;5;241m0�[39m]
E �[1;32m 1374�[0m �[38;5;28mself�[39m�[38;5;241m.�[39m_pending_plugins �[38;5;241m=�[39m ()
E �[1;32m 1376�[0m �[38;5;28;01mawait�[39;00m �[38;5;28mself�[39m�[38;5;241m.�[39m_register_with_scheduler()
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/distributed/worker.py:3248�[0m, in �[0;36mplugin_add�[0;34m()�[0m
E �[1;32m 3246�[0m �[38;5;28;01mif�[39;00m �[38;5;28mhasattr�[39m(plugin, �[38;5;124m"�[39m�[38;5;124msetup�[39m�[38;5;124m"�[39m):
E �[1;32m 3247�[0m �[38;5;28;01mtry�[39;00m:
E �[0;32m-> 3248�[0m result �[38;5;241m=�[39m plugin�[38;5;241m.�[39msetup(worker�[38;5;241m=�[39m�[38;5;28mself�[39m)
E �[1;32m 3249�[0m �[38;5;28;01mif�[39;00m isawaitable(result):
E �[1;32m 3250�[0m result �[38;5;241m=�[39m �[38;5;28;01mawait�[39;00m result
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/dask_cuda/utils.py:78�[0m, in �[0;36msetup�[0;34m()�[0m
E �[1;32m 74�[0m �[38;5;28;01mimport�[39;00m �[38;5;21;01mrmm�[39;00m
E �[1;32m 76�[0m pool_allocator �[38;5;241m=�[39m �[38;5;28;01mFalse�[39;00m �[38;5;28;01mif�[39;00m �[38;5;28mself�[39m�[38;5;241m.�[39minitial_pool_size �[38;5;129;01mis�[39;00m �[38;5;28;01mNone�[39;00m �[38;5;28;01melse�[39;00m �[38;5;28;01mTrue�[39;00m
E �[0;32m---> 78�[0m rmm�[38;5;241m.�[39mreinitialize(
E �[1;32m 79�[0m pool_allocator�[38;5;241m=�[39mpool_allocator,
E �[1;32m 80�[0m managed_memory�[38;5;241m=�[39m�[38;5;28mself�[39m�[38;5;241m.�[39mmanaged_memory,
E �[1;32m 81�[0m initial_pool_size�[38;5;241m=�[39m�[38;5;28mself�[39m�[38;5;241m.�[39minitial_pool_size,
E �[1;32m 82�[0m maximum_pool_size�[38;5;241m=�[39m�[38;5;28mself�[39m�[38;5;241m.�[39mmaximum_pool_size,
E �[1;32m 83�[0m logging�[38;5;241m=�[39m�[38;5;28mself�[39m�[38;5;241m.�[39mlogging,
E �[1;32m 84�[0m log_file_name�[38;5;241m=�[39mget_rmm_log_file_name(
E �[1;32m 85�[0m worker, �[38;5;28mself�[39m�[38;5;241m.�[39mlogging, �[38;5;28mself�[39m�[38;5;241m.�[39mlog_directory
E �[1;32m 86�[0m ),
E �[1;32m 87�[0m )
E �[1;32m 88�[0m �[38;5;28;01mif�[39;00m �[38;5;28mself�[39m�[38;5;241m.�[39mrmm_track_allocations:
E �[1;32m 89�[0m �[38;5;28;01mimport�[39;00m �[38;5;21;01mrmm�[39;00m
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/rmm/rmm.py:84�[0m, in �[0;36mreinitialize�[0;34m()�[0m
E �[1;32m 31�[0m �[38;5;28;01mdef�[39;00m �[38;5;21mreinitialize�[39m(
E �[1;32m 32�[0m pool_allocator�[38;5;241m=�[39m�[38;5;28;01mFalse�[39;00m,
E �[1;32m 33�[0m managed_memory�[38;5;241m=�[39m�[38;5;28;01mFalse�[39;00m,
E �[0;32m (...)�[0m
E �[1;32m 38�[0m log_file_name�[38;5;241m=�[39m�[38;5;28;01mNone�[39;00m,
E �[1;32m 39�[0m ):
E �[1;32m 40�[0m �[38;5;124;03m"""�[39;00m
E �[1;32m 41�[0m �[38;5;124;03m Finalizes and then initializes RMM using the options passed. Using memory�[39;00m
E �[1;32m 42�[0m �[38;5;124;03m from a previous initialization of RMM is undefined behavior and should be�[39;00m
E �[0;32m (...)�[0m
E �[1;32m 82�[0m �[38;5;124;03m corresponding to each device.�[39;00m
E �[1;32m 83�[0m �[38;5;124;03m """�[39;00m
E �[0;32m---> 84�[0m rmm�[38;5;241m.�[39mmr�[38;5;241m.�[39m_initialize(
E �[1;32m 85�[0m pool_allocator�[38;5;241m=�[39mpool_allocator,
E �[1;32m 86�[0m managed_memory�[38;5;241m=�[39mmanaged_memory,
E �[1;32m 87�[0m initial_pool_size�[38;5;241m=�[39minitial_pool_size,
E �[1;32m 88�[0m maximum_pool_size�[38;5;241m=�[39mmaximum_pool_size,
E �[1;32m 89�[0m devices�[38;5;241m=�[39mdevices,
E �[1;32m 90�[0m logging�[38;5;241m=�[39mlogging,
E �[1;32m 91�[0m log_file_name�[38;5;241m=�[39mlog_file_name,
E �[1;32m 92�[0m )
E
E File �[0;32mrmm/_lib/memory_resource.pyx:674�[0m, in �[0;36mrmm._lib.memory_resource._initialize�[0;34m()�[0m
E
E File �[0;32mrmm/_lib/memory_resource.pyx:734�[0m, in �[0;36mrmm._lib.memory_resource._initialize�[0;34m()�[0m
E
E File �[0;32mrmm/_lib/memory_resource.pyx:272�[0m, in �[0;36mrmm._lib.memory_resource.PoolMemoryResource.__cinit__�[0;34m()�[0m
E
E �[0;31mMemoryError�[0m: std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
E MemoryError: std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded

/usr/local/lib/python3.8/dist-packages/nbclient/client.py:919: CellExecutionError
----------------------------- Captured stderr call -----------------------------
2022-08-30 16:28:55,397 - distributed.preloading - INFO - Import preload module: dask_cuda.initialize
2022-08-30 16:28:55,420 - distributed.preloading - INFO - Import preload module: dask_cuda.initialize
2022-08-30 16:28:55,678 - distributed.utils - ERROR - std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/distributed/utils.py", line 693, in log_errors
yield
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 3248, in plugin_add
result = plugin.setup(worker=self)
File "/usr/local/lib/python3.8/dist-packages/dask_cuda/utils.py", line 78, in setup
rmm.reinitialize(
File "/usr/local/lib/python3.8/dist-packages/rmm/rmm.py", line 84, in reinitialize
rmm.mr._initialize(
File "rmm/_lib/memory_resource.pyx", line 674, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 734, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 272, in rmm._lib.memory_resource.PoolMemoryResource.cinit
MemoryError: std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
2022-08-30 16:28:55,678 - distributed.nanny - ERROR - Failed to start worker
Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/distributed/nanny.py", line 869, in run
await worker
File "/usr/local/lib/python3.8/dist-packages/distributed/core.py", line 299, in _
await self.start()
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 1372, in start
raise plugins_exceptions[0]
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 3248, in plugin_add
result = plugin.setup(worker=self)
File "/usr/local/lib/python3.8/dist-packages/dask_cuda/utils.py", line 78, in setup
rmm.reinitialize(
File "/usr/local/lib/python3.8/dist-packages/rmm/rmm.py", line 84, in reinitialize
rmm.mr._initialize(
File "rmm/_lib/memory_resource.pyx", line 674, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 734, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 272, in rmm._lib.memory_resource.PoolMemoryResource.cinit
MemoryError: std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
2022-08-30 16:28:57,125 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/output/criteo/test_dask/workdir/dask-worker-space/worker-4vdpqvy0', purging
2022-08-30 16:28:57,126 - distributed.preloading - INFO - Import preload module: dask_cuda.initialize
2022-08-30 16:28:57,356 - distributed.utils - ERROR - std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/distributed/utils.py", line 693, in log_errors
yield
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 3248, in plugin_add
result = plugin.setup(worker=self)
File "/usr/local/lib/python3.8/dist-packages/dask_cuda/utils.py", line 78, in setup
rmm.reinitialize(
File "/usr/local/lib/python3.8/dist-packages/rmm/rmm.py", line 84, in reinitialize
rmm.mr._initialize(
File "rmm/_lib/memory_resource.pyx", line 674, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 734, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 272, in rmm._lib.memory_resource.PoolMemoryResource.cinit
MemoryError: std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
2022-08-30 16:28:57,358 - distributed.nanny - ERROR - Failed to start worker
Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/distributed/nanny.py", line 869, in run
await worker
File "/usr/local/lib/python3.8/dist-packages/distributed/core.py", line 299, in _
await self.start()
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 1372, in start
raise plugins_exceptions[0]
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 3248, in plugin_add
result = plugin.setup(worker=self)
File "/usr/local/lib/python3.8/dist-packages/dask_cuda/utils.py", line 78, in setup
rmm.reinitialize(
File "/usr/local/lib/python3.8/dist-packages/rmm/rmm.py", line 84, in reinitialize
rmm.mr._initialize(
File "rmm/_lib/memory_resource.pyx", line 674, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 734, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 272, in rmm._lib.memory_resource.PoolMemoryResource.cinit
MemoryError: std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
2022-08-30 16:28:58,875 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/output/criteo/test_dask/workdir/dask-worker-space/worker-w443co89', purging
2022-08-30 16:28:58,875 - distributed.preloading - INFO - Import preload module: dask_cuda.initialize
2022-08-30 16:28:58,911 - distributed.preloading - INFO - Import preload module: dask_cuda.initialize
2022-08-30 16:28:59,136 - distributed.utils - ERROR - std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/distributed/utils.py", line 693, in log_errors
yield
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 3248, in plugin_add
result = plugin.setup(worker=self)
File "/usr/local/lib/python3.8/dist-packages/dask_cuda/utils.py", line 78, in setup
rmm.reinitialize(
File "/usr/local/lib/python3.8/dist-packages/rmm/rmm.py", line 84, in reinitialize
rmm.mr._initialize(
File "rmm/_lib/memory_resource.pyx", line 674, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 734, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 272, in rmm._lib.memory_resource.PoolMemoryResource.cinit
MemoryError: std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
2022-08-30 16:28:59,137 - distributed.nanny - ERROR - Failed to start worker
Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/distributed/nanny.py", line 869, in run
await worker
File "/usr/local/lib/python3.8/dist-packages/distributed/core.py", line 299, in _
await self.start()
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 1372, in start
raise plugins_exceptions[0]
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 3248, in plugin_add
result = plugin.setup(worker=self)
File "/usr/local/lib/python3.8/dist-packages/dask_cuda/utils.py", line 78, in setup
rmm.reinitialize(
File "/usr/local/lib/python3.8/dist-packages/rmm/rmm.py", line 84, in reinitialize
rmm.mr._initialize(
File "rmm/_lib/memory_resource.pyx", line 674, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 734, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 272, in rmm._lib.memory_resource.PoolMemoryResource.cinit
MemoryError: std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
2022-08-30 16:28:59,232 - distributed.utils - ERROR - std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/distributed/utils.py", line 693, in log_errors
yield
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 3248, in plugin_add
result = plugin.setup(worker=self)
File "/usr/local/lib/python3.8/dist-packages/dask_cuda/utils.py", line 78, in setup
rmm.reinitialize(
File "/usr/local/lib/python3.8/dist-packages/rmm/rmm.py", line 84, in reinitialize
rmm.mr._initialize(
File "rmm/_lib/memory_resource.pyx", line 674, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 734, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 272, in rmm._lib.memory_resource.PoolMemoryResource.cinit
MemoryError: std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
2022-08-30 16:28:59,233 - distributed.nanny - ERROR - Failed to start worker
Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/distributed/nanny.py", line 869, in run
await worker
File "/usr/local/lib/python3.8/dist-packages/distributed/core.py", line 299, in _
await self.start()
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 1372, in start
raise plugins_exceptions[0]
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 3248, in plugin_add
result = plugin.setup(worker=self)
File "/usr/local/lib/python3.8/dist-packages/dask_cuda/utils.py", line 78, in setup
rmm.reinitialize(
File "/usr/local/lib/python3.8/dist-packages/rmm/rmm.py", line 84, in reinitialize
rmm.mr._initialize(
File "rmm/_lib/memory_resource.pyx", line 674, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 734, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 272, in rmm._lib.memory_resource.PoolMemoryResource.cinit
MemoryError: std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
2022-08-30 16:29:00,601 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/output/criteo/test_dask/workdir/dask-worker-space/worker-v5k6wwnt', purging
2022-08-30 16:29:00,602 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/output/criteo/test_dask/workdir/dask-worker-space/worker-3e6ikql1', purging
2022-08-30 16:29:00,602 - distributed.preloading - INFO - Import preload module: dask_cuda.initialize
2022-08-30 16:29:00,837 - distributed.utils - ERROR - std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/distributed/utils.py", line 693, in log_errors
yield
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 3248, in plugin_add
result = plugin.setup(worker=self)
File "/usr/local/lib/python3.8/dist-packages/dask_cuda/utils.py", line 78, in setup
rmm.reinitialize(
File "/usr/local/lib/python3.8/dist-packages/rmm/rmm.py", line 84, in reinitialize
rmm.mr._initialize(
File "rmm/_lib/memory_resource.pyx", line 674, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 734, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 272, in rmm._lib.memory_resource.PoolMemoryResource.cinit
MemoryError: std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
2022-08-30 16:29:00,839 - distributed.nanny - ERROR - Failed to start worker
Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/distributed/nanny.py", line 869, in run
await worker
File "/usr/local/lib/python3.8/dist-packages/distributed/core.py", line 299, in _
await self.start()
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 1372, in start
raise plugins_exceptions[0]
File "/usr/local/lib/python3.8/dist-packages/distributed/worker.py", line 3248, in plugin_add
result = plugin.setup(worker=self)
File "/usr/local/lib/python3.8/dist-packages/dask_cuda/utils.py", line 78, in setup
rmm.reinitialize(
File "/usr/local/lib/python3.8/dist-packages/rmm/rmm.py", line 84, in reinitialize
rmm.mr._initialize(
File "rmm/_lib/memory_resource.pyx", line 674, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 734, in rmm._lib.memory_resource._initialize
File "rmm/_lib/memory_resource.pyx", line 272, in rmm._lib.memory_resource.PoolMemoryResource.cinit
MemoryError: std::bad_alloc: out_of_memory: RMM failure at:/usr/include/rmm/mr/device/pool_memory_resource.hpp:183: Maximum pool size exceeded
/usr/lib/python3.8/multiprocessing/resource_tracker.py:216: UserWarning: resource_tracker: There appear to be 30 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
=============================== warnings summary ===============================
../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_INTEGERSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DOUBLESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_STRINGSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BUCKETSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DECIMALSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_TIMESTAMPSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BINARYSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_COLUMNSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33
/usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
DASK_VERSION = LooseVersion(dask.version)

../../../.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: 34 warnings
/var/jenkins_home/.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
other = LooseVersion(other)

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATATYPE = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE_SECONDARYDEVICEKIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINPUT_FORMAT = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHINPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHOUTPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELOPTIMIZATIONPOLICY_MODELPRIORITY = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELQUEUEPOLICY_TIMEOUTACTION = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELSEQUENCEBATCHING_CONTROL_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER_RESOURCE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/unit/examples/test_building_deploying_multi_stage_RecSys.py::test_func
FAILED tests/unit/examples/test_scaling_criteo_merlin_models.py::test_func - ...
============ 2 failed, 1 passed, 135 warnings in 170.68s (0:02:50) =============
Build step 'Execute shell' marked build as failure
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash
cd /var/jenkins_home/
CUDA_VISIBLE_DEVICES=1 python test_res_push.py "https://github.com/gitapi/repos/NVIDIA-Merlin/Merlin/issues/$ghprbPullId/comments" "/var/jenkins_home/jobs/$JOB_NAME/builds/$BUILD_NUMBER/log"
[merlin_merlin] $ /bin/bash /tmp/jenkins14202385924686551717.sh

@jperez999
Copy link
Collaborator Author

rerun tests

@nvidia-merlin-bot
Copy link
Contributor

Click to view CI Results
GitHub pull request #577 of commit 6ea49e34aa2735b7cfe830deed9f13d7a775cc04, no merge conflicts.
Running as SYSTEM
Setting status of 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 to PENDING with url https://10.20.13.93:8080/job/merlin_merlin/388/console and message: 'Pending'
Using context: Jenkins
Building on master in workspace /var/jenkins_home/workspace/merlin_merlin
using credential systems-login
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/NVIDIA-Merlin/Merlin # timeout=10
Fetching upstream changes from https://github.com/NVIDIA-Merlin/Merlin
 > git --version # timeout=10
using GIT_ASKPASS to set credentials login for merlin-systems
 > git fetch --tags --force --progress -- https://github.com/NVIDIA-Merlin/Merlin +refs/pull/577/*:refs/remotes/origin/pr/577/* # timeout=10
 > git rev-parse 6ea49e34aa2735b7cfe830deed9f13d7a775cc04^{commit} # timeout=10
Checking out Revision 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 # timeout=10
Commit message: "fix test examples in unit and int"
 > git rev-list --no-walk 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 # timeout=10
[merlin_merlin] $ /bin/bash /tmp/jenkins14575813645548120186.sh
============================= test session starts ==============================
platform linux -- Python 3.8.10, pytest-7.1.2, pluggy-1.0.0
rootdir: /var/jenkins_home/workspace/merlin_merlin/merlin
plugins: anyio-3.6.1, xdist-2.5.0, forked-1.4.0, cov-3.0.0
collected 3 items

tests/unit/test_version.py . [ 33%]
tests/unit/examples/test_building_deploying_multi_stage_RecSys.py . [ 66%]
tests/unit/examples/test_scaling_criteo_merlin_models.py F [100%]

=================================== FAILURES ===================================
__________________________________ test_func ___________________________________

def test_func():
    with testbook(
        REPO_ROOT / "examples" / "scaling-criteo" / "02-ETL-with-NVTabular.ipynb",
        execute=False,
        timeout=180,
    ) as tb1:
        tb1.inject(
            """
            import os
            os.environ["BASE_DIR"] = "/tmp/input/criteo/"
            os.environ["INPUT_DATA_DIR"] = "/tmp/input/criteo/"
            os.environ["OUTPUT_DATA_DIR"] = "/tmp/output/criteo/"
            os.system("mkdir -p /tmp/input/criteo")
            os.system("mkdir -p /tmp/output/criteo")

            from merlin.datasets.synthetic import generate_data

            train, valid = generate_data("criteo", int(1000000), set_sizes=(0.7, 0.3))

            train.to_ddf().compute().to_parquet('/tmp/input/criteo/day_0.parquet')
            valid.to_ddf().compute().to_parquet('/tmp/input/criteo/day_1.parquet')
            """
        )
      tb1.execute()

tests/unit/examples/test_scaling_criteo_merlin_models.py:37:


/usr/local/lib/python3.8/dist-packages/testbook/client.py:147: in execute
super().execute_cell(cell, index)
/usr/local/lib/python3.8/dist-packages/nbclient/util.py:85: in wrapped
return just_run(coro(*args, **kwargs))
/usr/local/lib/python3.8/dist-packages/nbclient/util.py:60: in just_run
return loop.run_until_complete(coro)
/usr/lib/python3.8/asyncio/base_events.py:616: in run_until_complete
return future.result()
/usr/local/lib/python3.8/dist-packages/nbclient/client.py:1025: in async_execute_cell
await self._check_raise_for_error(cell, cell_index, exec_reply)


self = <testbook.client.TestbookNotebookClient object at 0x7fc1e44bd460>
cell = {'id': '6963e7ed', 'cell_type': 'code', 'metadata': {'execution': {'iopub.status.busy': '2022-08-30T16:36:23.593308Z',...ry: CUDA error at: /usr/include/rmm/mr/device/cuda_memory_resource.hpp:70: cudaErrorMemoryAllocation out of memory']}]}
cell_index = 27
exec_reply = {'buffers': [], 'content': {'ename': 'MemoryError', 'engine_info': {'engine_id': -1, 'engine_uuid': 'ae671eaf-3863-416...e, 'engine': 'ae671eaf-3863-416d-91cf-5547e48c7b66', 'started': '2022-08-30T16:36:23.593581Z', 'status': 'error'}, ...}

async def _check_raise_for_error(
    self, cell: NotebookNode, cell_index: int, exec_reply: t.Optional[t.Dict]
) -> None:

    if exec_reply is None:
        return None

    exec_reply_content = exec_reply['content']
    if exec_reply_content['status'] != 'error':
        return None

    cell_allows_errors = (not self.force_raise_errors) and (
        self.allow_errors
        or exec_reply_content.get('ename') in self.allow_error_names
        or "raises-exception" in cell.metadata.get("tags", [])
    )
    await run_hook(
        self.on_cell_error, cell=cell, cell_index=cell_index, execute_reply=exec_reply
    )
    if not cell_allows_errors:
      raise CellExecutionError.from_cell_and_msg(cell, exec_reply_content)

E nbclient.exceptions.CellExecutionError: An error occurred while executing the following cell:
E ------------------
E
E import os
E os.environ["BASE_DIR"] = "/tmp/input/criteo/"
E os.environ["INPUT_DATA_DIR"] = "/tmp/input/criteo/"
E os.environ["OUTPUT_DATA_DIR"] = "/tmp/output/criteo/"
E os.system("mkdir -p /tmp/input/criteo")
E os.system("mkdir -p /tmp/output/criteo")
E
E from merlin.datasets.synthetic import generate_data
E
E train, valid = generate_data("criteo", int(1000000), set_sizes=(0.7, 0.3))
E
E train.to_ddf().compute().to_parquet('/tmp/input/criteo/day_0.parquet')
E valid.to_ddf().compute().to_parquet('/tmp/input/criteo/day_1.parquet')
E
E ------------------
E
E �[0;31m---------------------------------------------------------------------------�[0m
E �[0;31mMemoryError�[0m Traceback (most recent call last)
E Input �[0;32mIn [16]�[0m, in �[0;36m<cell line: 10>�[0;34m()�[0m
E �[1;32m 6�[0m os�[38;5;241m.�[39msystem(�[38;5;124m"�[39m�[38;5;124mmkdir -p /tmp/output/criteo�[39m�[38;5;124m"�[39m)
E �[1;32m 8�[0m �[38;5;28;01mfrom�[39;00m �[38;5;21;01mmerlin�[39;00m�[38;5;21;01m.�[39;00m�[38;5;21;01mdatasets�[39;00m�[38;5;21;01m.�[39;00m�[38;5;21;01msynthetic�[39;00m �[38;5;28;01mimport�[39;00m generate_data
E �[0;32m---> 10�[0m train, valid �[38;5;241m=�[39m �[43mgenerate_data�[49m�[43m(�[49m�[38;5;124;43m"�[39;49m�[38;5;124;43mcriteo�[39;49m�[38;5;124;43m"�[39;49m�[43m,�[49m�[43m �[49m�[38;5;28;43mint�[39;49m�[43m(�[49m�[38;5;241;43m1000000�[39;49m�[43m)�[49m�[43m,�[49m�[43m �[49m�[43mset_sizes�[49m�[38;5;241;43m=�[39;49m�[43m(�[49m�[38;5;241;43m0.7�[39;49m�[43m,�[49m�[43m �[49m�[38;5;241;43m0.3�[39;49m�[43m)�[49m�[43m)�[49m
E �[1;32m 12�[0m train�[38;5;241m.�[39mto_ddf()�[38;5;241m.�[39mcompute()�[38;5;241m.�[39mto_parquet(�[38;5;124m'�[39m�[38;5;124m/tmp/input/criteo/day_0.parquet�[39m�[38;5;124m'�[39m)
E �[1;32m 13�[0m valid�[38;5;241m.�[39mto_ddf()�[38;5;241m.�[39mcompute()�[38;5;241m.�[39mto_parquet(�[38;5;124m'�[39m�[38;5;124m/tmp/input/criteo/day_1.parquet�[39m�[38;5;124m'�[39m)
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/merlin/datasets/synthetic.py:131�[0m, in �[0;36mgenerate_data�[0;34m(input, num_rows, set_sizes, min_session_length, max_session_length, device)�[0m
E �[1;32m 128�[0m start_i �[38;5;241m=�[39m end_i
E �[1;32m 129�[0m output_datasets�[38;5;241m.�[39mappend(set_df)
E �[0;32m--> 131�[0m �[38;5;28;01mreturn�[39;00m �[38;5;28mtuple�[39m([merlin�[38;5;241m.�[39mio�[38;5;241m.�[39mDataset(d, schema�[38;5;241m=�[39mschema) �[38;5;28;01mfor�[39;00m d �[38;5;129;01min�[39;00m output_datasets])
E �[1;32m 133�[0m �[38;5;28;01mreturn�[39;00m merlin�[38;5;241m.�[39mio�[38;5;241m.�[39mDataset(df, schema�[38;5;241m=�[39mschema)
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/merlin/datasets/synthetic.py:131�[0m, in �[0;36m�[0;34m(.0)�[0m
E �[1;32m 128�[0m start_i �[38;5;241m=�[39m end_i
E �[1;32m 129�[0m output_datasets�[38;5;241m.�[39mappend(set_df)
E �[0;32m--> 131�[0m �[38;5;28;01mreturn�[39;00m �[38;5;28mtuple�[39m([�[43mmerlin�[49m�[38;5;241;43m.�[39;49m�[43mio�[49m�[38;5;241;43m.�[39;49m�[43mDataset�[49m�[43m(�[49m�[43md�[49m�[43m,�[49m�[43m �[49m�[43mschema�[49m�[38;5;241;43m=�[39;49m�[43mschema�[49m�[43m)�[49m �[38;5;28;01mfor�[39;00m d �[38;5;129;01min�[39;00m output_datasets])
E �[1;32m 133�[0m �[38;5;28;01mreturn�[39;00m merlin�[38;5;241m.�[39mio�[38;5;241m.�[39mDataset(df, schema�[38;5;241m=�[39mschema)
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/merlin/io/dataset.py:262�[0m, in �[0;36mDataset.__init__�[0;34m(self, path_or_source, engine, npartitions, part_size, part_mem_fraction, storage_options, dtypes, client, cpu, base_dataset, schema, **kwargs)�[0m
E �[1;32m 256�[0m npartitions �[38;5;241m=�[39m npartitions �[38;5;129;01mor�[39;00m �[38;5;241m1�[39m
E �[1;32m 257�[0m �[38;5;28;01mif�[39;00m �[38;5;28misinstance�[39m(path_or_source, dask�[38;5;241m.�[39mdataframe�[38;5;241m.�[39mDataFrame) �[38;5;129;01mor�[39;00m is_dataframe_object(
E �[1;32m 258�[0m path_or_source
E �[1;32m 259�[0m ):
E �[1;32m 260�[0m �[38;5;66;03m# User is passing in a <dask.dataframe|cudf|pd>.DataFrame�[39;00m
E �[1;32m 261�[0m �[38;5;66;03m# Use DataFrameDatasetEngine�[39;00m
E �[0;32m--> 262�[0m _path_or_source �[38;5;241m=�[39m �[43mconvert_data�[49m�[43m(�[49m
E �[1;32m 263�[0m �[43m �[49m�[43mpath_or_source�[49m�[43m,�[49m�[43m �[49m�[43mcpu�[49m�[38;5;241;43m=�[39;49m�[38;5;28;43mself�[39;49m�[38;5;241;43m.�[39;49m�[43mcpu�[49m�[43m,�[49m�[43m �[49m�[43mto_collection�[49m�[38;5;241;43m=�[39;49m�[38;5;28;43;01mTrue�[39;49;00m�[43m,�[49m�[43m �[49m�[43mnpartitions�[49m�[38;5;241;43m=�[39;49m�[43mnpartitions�[49m
E �[1;32m 264�[0m �[43m �[49m�[43m)�[49m
E �[1;32m 265�[0m �[38;5;66;03m# Check if this is a collection that has now moved between host <-> device�[39;00m
E �[1;32m 266�[0m moved_collection �[38;5;241m=�[39m �[38;5;28misinstance�[39m(path_or_source, dask�[38;5;241m.�[39mdataframe�[38;5;241m.�[39mDataFrame) �[38;5;129;01mand�[39;00m (
E �[1;32m 267�[0m �[38;5;129;01mnot�[39;00m �[38;5;28misinstance�[39m(_path_or_source�[38;5;241m.�[39m_meta, �[38;5;28mtype�[39m(path_or_source�[38;5;241m.�[39m_meta))
E �[1;32m 268�[0m )
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/merlin/core/dispatch.py:567�[0m, in �[0;36mconvert_data�[0;34m(x, cpu, to_collection, npartitions)�[0m
E �[1;32m 565�[0m _x �[38;5;241m=�[39m cudf�[38;5;241m.�[39mDataFrame�[38;5;241m.�[39mfrom_arrow(x)
E �[1;32m 566�[0m �[38;5;28;01melif�[39;00m �[38;5;28misinstance�[39m(x, pd�[38;5;241m.�[39mDataFrame):
E �[0;32m--> 567�[0m _x �[38;5;241m=�[39m �[43mcudf�[49m�[38;5;241;43m.�[39;49m�[43mDataFrame�[49m�[38;5;241;43m.�[39;49m�[43mfrom_pandas�[49m�[43m(�[49m�[43mx�[49m�[43m)�[49m
E �[1;32m 568�[0m �[38;5;66;03m# Output a collection if to_collection=True�[39;00m
E �[1;32m 569�[0m �[38;5;28;01mreturn�[39;00m (
E �[1;32m 570�[0m dask_cudf�[38;5;241m.�[39mfrom_cudf(_x, sort�[38;5;241m=�[39m�[38;5;28;01mFalse�[39;00m, npartitions�[38;5;241m=�[39mnpartitions)
E �[1;32m 571�[0m �[38;5;28;01mif�[39;00m to_collection
E �[1;32m 572�[0m �[38;5;28;01melse�[39;00m _x
E �[1;32m 573�[0m )
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/nvtx/nvtx.py:101�[0m, in �[0;36mannotate.call..inner�[0;34m(args, **kwargs)�[0m
E �[1;32m 98�[0m �[38;5;129m@wraps�[39m(func)
E �[1;32m 99�[0m �[38;5;28;01mdef�[39;00m �[38;5;21minner�[39m(�[38;5;241m
�[39margs, �[38;5;241m�[39m�[38;5;241m�[39mkwargs):
E �[1;32m 100�[0m libnvtx_push_range(�[38;5;28mself�[39m�[38;5;241m.�[39mattributes, �[38;5;28mself�[39m�[38;5;241m.�[39mdomain�[38;5;241m.�[39mhandle)
E �[0;32m--> 101�[0m result �[38;5;241m=�[39m �[43mfunc�[49m�[43m(�[49m�[38;5;241;43m�[39;49m�[43margs�[49m�[43m,�[49m�[43m �[49m�[38;5;241;43m�[39;49m�[38;5;241;43m*�[39;49m�[43mkwargs�[49m�[43m)�[49m
E �[1;32m 102�[0m libnvtx_pop_range(�[38;5;28mself�[39m�[38;5;241m.�[39mdomain�[38;5;241m.�[39mhandle)
E �[1;32m 103�[0m �[38;5;28;01mreturn�[39;00m result
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/cudf/core/dataframe.py:4386�[0m, in �[0;36mDataFrame.from_pandas�[0;34m(cls, dataframe, nan_as_null)�[0m
E �[1;32m 4382�[0m �[38;5;28;01mfor�[39;00m col_name, col_value �[38;5;129;01min�[39;00m dataframe�[38;5;241m.�[39mitems():
E �[1;32m 4383�[0m �[38;5;66;03m# necessary because multi-index can return multiple�[39;00m
E �[1;32m 4384�[0m �[38;5;66;03m# columns for a single key�[39;00m
E �[1;32m 4385�[0m �[38;5;28;01mif�[39;00m �[38;5;28mlen�[39m(col_value�[38;5;241m.�[39mshape) �[38;5;241m==�[39m �[38;5;241m1�[39m:
E �[0;32m-> 4386�[0m df[col_name] �[38;5;241m=�[39m �[43mcolumn�[49m�[38;5;241;43m.�[39;49m�[43mas_column�[49m�[43m(�[49m
E �[1;32m 4387�[0m �[43m �[49m�[43mcol_value�[49m�[38;5;241;43m.�[39;49m�[43marray�[49m�[43m,�[49m�[43m �[49m�[43mnan_as_null�[49m�[38;5;241;43m=�[39;49m�[43mnan_as_null�[49m
E �[1;32m 4388�[0m �[43m �[49m�[43m)�[49m
E �[1;32m 4389�[0m �[38;5;28;01melse�[39;00m:
E �[1;32m 4390�[0m vals �[38;5;241m=�[39m col_value�[38;5;241m.�[39mvalues�[38;5;241m.�[39mT
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/cudf/core/column/column.py:1983�[0m, in �[0;36mas_column�[0;34m(arbitrary, nan_as_null, dtype, length)�[0m
E �[1;32m 1981�[0m data �[38;5;241m=�[39m as_column(pa�[38;5;241m.�[39mArray�[38;5;241m.�[39mfrom_pandas(arbitrary), dtype�[38;5;241m=�[39marb_dtype)
E �[1;32m 1982�[0m �[38;5;28;01melse�[39;00m:
E �[0;32m-> 1983�[0m data �[38;5;241m=�[39m �[43mas_column�[49m�[43m(�[49m
E �[1;32m 1984�[0m �[43m �[49m�[43mpa�[49m�[38;5;241;43m.�[39;49m�[43marray�[49m�[43m(�[49m
E �[1;32m 1985�[0m �[43m �[49m�[43marbitrary�[49m�[43m,�[49m
E �[1;32m 1986�[0m �[43m �[49m�[43mfrom_pandas�[49m�[38;5;241;43m=�[39;49m�[38;5;28;43;01mTrue�[39;49;00m�[43m �[49m�[38;5;28;43;01mif�[39;49;00m�[43m �[49m�[43mnan_as_null�[49m�[43m �[49m�[38;5;129;43;01mis�[39;49;00m�[43m �[49m�[38;5;28;43;01mNone�[39;49;00m�[43m �[49m�[38;5;28;43;01melse�[39;49;00m�[43m �[49m�[43mnan_as_null�[49m�[43m,�[49m
E �[1;32m 1987�[0m �[43m �[49m�[43m)�[49m�[43m,�[49m
E �[1;32m 1988�[0m �[43m �[49m�[43mnan_as_null�[49m�[38;5;241;43m=�[39;49m�[43mnan_as_null�[49m�[43m,�[49m
E �[1;32m 1989�[0m �[43m �[49m�[43m)�[49m
E �[1;32m 1990�[0m �[38;5;28;01mif�[39;00m dtype �[38;5;129;01mis�[39;00m �[38;5;129;01mnot�[39;00m �[38;5;28;01mNone�[39;00m:
E �[1;32m 1991�[0m data �[38;5;241m=�[39m data�[38;5;241m.�[39mastype(dtype)
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/cudf/core/column/column.py:1776�[0m, in �[0;36mas_column�[0;34m(arbitrary, nan_as_null, dtype, length)�[0m
E �[1;32m 1770�[0m �[38;5;28;01mif�[39;00m �[38;5;28misinstance�[39m(arbitrary, pa�[38;5;241m.�[39mlib�[38;5;241m.�[39mHalfFloatArray):
E �[1;32m 1771�[0m �[38;5;28;01mraise�[39;00m �[38;5;167;01mNotImplementedError�[39;00m(
E �[1;32m 1772�[0m �[38;5;124m"�[39m�[38;5;124mType casting from float16 to float32 is not �[39m�[38;5;124m"�[39m
E �[1;32m 1773�[0m �[38;5;124m"�[39m�[38;5;124myet supported in pyarrow, see: �[39m�[38;5;124m"�[39m
E �[1;32m 1774�[0m �[38;5;124m"�[39m�[38;5;124mhttps://issues.apache.org/jira/browse/ARROW-3802�[39m�[38;5;124m"�[39m
E �[1;32m 1775�[0m )
E �[0;32m-> 1776�[0m col �[38;5;241m=�[39m �[43mColumnBase�[49m�[38;5;241;43m.�[39;49m�[43mfrom_arrow�[49m�[43m(�[49m�[43marbitrary�[49m�[43m)�[49m
E �[1;32m 1778�[0m �[38;5;28;01mif�[39;00m �[38;5;28misinstance�[39m(arbitrary, pa�[38;5;241m.�[39mNullArray):
E �[1;32m 1779�[0m new_dtype �[38;5;241m=�[39m cudf�[38;5;241m.�[39mdtype(arbitrary�[38;5;241m.�[39mtype�[38;5;241m.�[39mto_pandas_dtype())
E
E File �[0;32m/usr/local/lib/python3.8/dist-packages/cudf/core/column/column.py:302�[0m, in �[0;36mColumnBase.from_arrow�[0;34m(cls, array)�[0m
E �[1;32m 297�[0m �[38;5;28;01melif�[39;00m �[38;5;28misinstance�[39m(
E �[1;32m 298�[0m array�[38;5;241m.�[39mtype, pd�[38;5;241m.�[39mcore�[38;5;241m.�[39marrays�[38;5;241m.�[39m_arrow_utils�[38;5;241m.�[39mArrowIntervalType
E �[1;32m 299�[0m ):
E �[1;32m 300�[0m �[38;5;28;01mreturn�[39;00m cudf�[38;5;241m.�[39mcore�[38;5;241m.�[39mcolumn�[38;5;241m.�[39mIntervalColumn�[38;5;241m.�[39mfrom_arrow(array)
E �[0;32m--> 302�[0m result �[38;5;241m=�[39m �[43mlibcudf�[49m�[38;5;241;43m.�[39;49m�[43minterop�[49m�[38;5;241;43m.�[39;49m�[43mfrom_arrow�[49m�[43m(�[49m�[43mdata�[49m�[43m,�[49m�[43m �[49m�[43mdata�[49m�[38;5;241;43m.�[39;49m�[43mcolumn_names�[49m�[43m)�[49m[�[38;5;241m0�[39m][�[38;5;124m"�[39m�[38;5;124mNone�[39m�[38;5;124m"�[39m]
E �[1;32m 304�[0m �[38;5;28;01mreturn�[39;00m result�[38;5;241m.�[39m_with_type_metadata(cudf_dtype_from_pa_type(array�[38;5;241m.�[39mtype))
E
E File �[0;32mcudf/_lib/interop.pyx:167�[0m, in �[0;36mcudf._lib.interop.from_arrow�[0;34m()�[0m
E
E �[0;31mMemoryError�[0m: std::bad_alloc: out_of_memory: CUDA error at: /usr/include/rmm/mr/device/cuda_memory_resource.hpp:70: cudaErrorMemoryAllocation out of memory
E MemoryError: std::bad_alloc: out_of_memory: CUDA error at: /usr/include/rmm/mr/device/cuda_memory_resource.hpp:70: cudaErrorMemoryAllocation out of memory

/usr/local/lib/python3.8/dist-packages/nbclient/client.py:919: CellExecutionError
----------------------------- Captured stderr call -----------------------------
2022-08-30 16:36:15,084 - distributed.preloading - INFO - Import preload module: dask_cuda.initialize
2022-08-30 16:36:15,097 - distributed.preloading - INFO - Import preload module: dask_cuda.initialize
/usr/local/lib/python3.8/dist-packages/cudf/core/frame.py:384: UserWarning: The deep parameter is ignored and is only included for pandas compatibility.
warnings.warn(
/usr/local/lib/python3.8/dist-packages/cudf/core/frame.py:384: UserWarning: The deep parameter is ignored and is only included for pandas compatibility.
warnings.warn(
Process Dask Worker process (from Nanny):
Traceback (most recent call last):
File "/usr/lib/python3.8/multiprocessing/process.py", line 315, in _bootstrap
self.run()
File "/usr/lib/python3.8/multiprocessing/process.py", line 108, in run
self._target(*self._args, **self._kwargs)
File "/usr/local/lib/python3.8/dist-packages/distributed/process.py", line 175, in _run
target(*args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/distributed/nanny.py", line 918, in _run
loop.run_sync(do_stop)
File "/usr/local/lib/python3.8/dist-packages/tornado/ioloop.py", line 523, in run_sync
self.start()
File "/usr/local/lib/python3.8/dist-packages/tornado/platform/asyncio.py", line 215, in start
self.asyncio_loop.run_forever()
File "/usr/lib/python3.8/asyncio/base_events.py", line 570, in run_forever
self._run_once()
File "/usr/lib/python3.8/asyncio/base_events.py", line 1859, in _run_once
handle._run()
File "/usr/lib/python3.8/asyncio/events.py", line 81, in _run
self._context.run(self._callback, *self._args)
File "/usr/local/lib/python3.8/dist-packages/tornado/ioloop.py", line 687, in
lambda f: self._run_callback(functools.partial(callback, future))
File "/usr/local/lib/python3.8/dist-packages/tornado/ioloop.py", line 740, in _run_callback
ret = callback()
File "/usr/local/lib/python3.8/dist-packages/tornado/ioloop.py", line 764, in _discard_future_result
future.result()
File "/usr/local/lib/python3.8/dist-packages/distributed/nanny.py", line 911, in _run
loop.run_sync(run)
File "/usr/local/lib/python3.8/dist-packages/tornado/ioloop.py", line 523, in run_sync
self.start()
File "/usr/local/lib/python3.8/dist-packages/tornado/platform/asyncio.py", line 215, in start
self.asyncio_loop.run_forever()
File "/usr/lib/python3.8/asyncio/base_events.py", line 570, in run_forever
self._run_once()
File "/usr/lib/python3.8/asyncio/base_events.py", line 1859, in _run_once
handle._run()
File "/usr/lib/python3.8/asyncio/events.py", line 81, in _run
self._context.run(self._callback, *self._args)
File "/usr/local/lib/python3.8/dist-packages/tornado/ioloop.py", line 927, in _run
self._schedule_next()
File "/usr/local/lib/python3.8/dist-packages/tornado/ioloop.py", line 931, in _schedule_next
self._update_next(self.io_loop.time())
File "/usr/local/lib/python3.8/dist-packages/tornado/ioloop.py", line 945, in _update_next
math.floor((current_time - self._next_timeout) / callback_time_sec) + 1
KeyboardInterrupt
/usr/lib/python3.8/multiprocessing/resource_tracker.py:216: UserWarning: resource_tracker: There appear to be 27 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
=============================== warnings summary ===============================
../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_INTEGERSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DOUBLESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_STRINGSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BUCKETSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DECIMALSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_TIMESTAMPSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BINARYSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_COLUMNSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33
/usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
DASK_VERSION = LooseVersion(dask.version)

../../../.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: 34 warnings
/var/jenkins_home/.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
other = LooseVersion(other)

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATATYPE = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE_SECONDARYDEVICEKIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINPUT_FORMAT = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHINPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHOUTPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELOPTIMIZATIONPOLICY_MODELPRIORITY = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELQUEUEPOLICY_TIMEOUTACTION = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELSEQUENCEBATCHING_CONTROL_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER_RESOURCE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/unit/examples/test_scaling_criteo_merlin_models.py::test_func - ...
============ 1 failed, 2 passed, 135 warnings in 174.35s (0:02:54) =============
Build step 'Execute shell' marked build as failure
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash
cd /var/jenkins_home/
CUDA_VISIBLE_DEVICES=1 python test_res_push.py "https://github.com/gitapi/repos/NVIDIA-Merlin/Merlin/issues/$ghprbPullId/comments" "/var/jenkins_home/jobs/$JOB_NAME/builds/$BUILD_NUMBER/log"
[merlin_merlin] $ /bin/bash /tmp/jenkins3567920290753443654.sh

@jperez999
Copy link
Collaborator Author

rerun tests

@nvidia-merlin-bot
Copy link
Contributor

Click to view CI Results
GitHub pull request #577 of commit 6ea49e34aa2735b7cfe830deed9f13d7a775cc04, no merge conflicts.
Running as SYSTEM
Setting status of 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 to PENDING with url https://10.20.13.93:8080/job/merlin_merlin/389/console and message: 'Pending'
Using context: Jenkins
Building on master in workspace /var/jenkins_home/workspace/merlin_merlin
using credential systems-login
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/NVIDIA-Merlin/Merlin # timeout=10
Fetching upstream changes from https://github.com/NVIDIA-Merlin/Merlin
 > git --version # timeout=10
using GIT_ASKPASS to set credentials login for merlin-systems
 > git fetch --tags --force --progress -- https://github.com/NVIDIA-Merlin/Merlin +refs/pull/577/*:refs/remotes/origin/pr/577/* # timeout=10
 > git rev-parse 6ea49e34aa2735b7cfe830deed9f13d7a775cc04^{commit} # timeout=10
Checking out Revision 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 # timeout=10
Commit message: "fix test examples in unit and int"
 > git rev-list --no-walk 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 # timeout=10
[merlin_merlin] $ /bin/bash /tmp/jenkins27008449363642341.sh
============================= test session starts ==============================
platform linux -- Python 3.8.10, pytest-7.1.2, pluggy-1.0.0
rootdir: /var/jenkins_home/workspace/merlin_merlin/merlin
plugins: anyio-3.6.1, xdist-2.5.0, forked-1.4.0, cov-3.0.0
collected 3 items

tests/unit/test_version.py . [ 33%]
tests/unit/examples/test_building_deploying_multi_stage_RecSys.py F [ 66%]
tests/unit/examples/test_scaling_criteo_merlin_models.py . [100%]

=================================== FAILURES ===================================
__________________________________ test_func ___________________________________

def test_func():
    with testbook(
        REPO_ROOT
        / "examples"
        / "Building-and-deploying-multi-stage-RecSys"
        / "01-Building-Recommender-Systems-with-Merlin.ipynb",
        execute=False,
    ) as tb1:
        tb1.inject(
            """
            import os
            os.environ["DATA_FOLDER"] = "/tmp/data/"
            os.environ["NUM_ROWS"] = "10000"
            os.system("mkdir -p /tmp/examples")
            os.environ["BASE_DIR"] = "/tmp/examples/"
            """
        )
        tb1.execute()
        assert os.path.isdir("/tmp/examples/dlrm")
        assert os.path.isdir("/tmp/examples/feature_repo")
        assert os.path.isdir("/tmp/examples/query_tower")
        assert os.path.isfile("/tmp/examples/item_embeddings.parquet")
        assert os.path.isfile("/tmp/examples/feature_repo/user_features.py")
        assert os.path.isfile("/tmp/examples/feature_repo/item_features.py")

    with testbook(
        REPO_ROOT
        / "examples"
        / "Building-and-deploying-multi-stage-RecSys"
        / "02-Deploying-multi-stage-RecSys-with-Merlin-Systems.ipynb",
        execute=False,
    ) as tb2:
        tb2.inject(
            """
            import os
            os.environ["DATA_FOLDER"] = "/tmp/data/"
            os.environ["BASE_DIR"] = "/tmp/examples/"
            """
        )
        NUM_OF_CELLS = len(tb2.cells)
        tb2.execute_cell(list(range(0, NUM_OF_CELLS - 3)))
        top_k = tb2.ref("top_k")
        outputs = tb2.ref("outputs")
        assert outputs[0] == "ordered_ids"

        df_lib = get_lib()

        # read in data for request
        batch = df_lib.read_parquet(
            os.path.join("/tmp/data/processed/retrieval/", "train", "part_0.parquet"),
            num_rows=1,
            columns=["user_id"],
        )
        configure_tensorflow()
      response = run_ensemble_on_tritonserver(
            "/tmp/examples/poc_ensemble/", outputs, batch, "ensemble_model"
        )

tests/unit/examples/test_building_deploying_multi_stage_RecSys.py:74:


/usr/local/lib/python3.8/dist-packages/merlin/systems/triton/utils.py:130: in run_ensemble_on_tritonserver
response = send_triton_request(df, output_columns, client=client, triton_model=model_name)
/usr/local/lib/python3.8/dist-packages/merlin/systems/triton/utils.py:178: in send_triton_request
response = client.infer(triton_model, inputs, request_id=request_id, outputs=outputs)
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/init.py:1322: in infer
raise_error_grpc(rpc_error)


rpc_error = <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INTERNAL
details = "in ensemble 'ensemble_model'... 309 in transform>]"\n\nAt:\n /tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute\n","grpc_status":13}"

def raise_error_grpc(rpc_error):
  raise get_error_grpc(rpc_error) from None

E tritonclient.utils.InferenceServerException: [StatusCode.INTERNAL] in ensemble 'ensemble_model', Failed to process the request(s) for model instance '3_queryfeast', message: TypeError: init(): incompatible constructor arguments. The following argument types are supported:
E 1. c_python_backend_utils.InferenceResponse(output_tensors: List[c_python_backend_utils.Tensor], error: c_python_backend_utils.TritonError = None)
E
E Invoked with: kwargs: tensors=[], error="<class 'TypeError'>, int() argument must be a string, a bytes-like object or a number, not 'NoneType', [<FrameSummary file /tmp/examples/poc_ensemble/3_queryfeast/1/model.py, line 105 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/op_runner.py, line 54 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/ops/feast.py, line 309 in transform>]"
E
E At:
E /tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute

/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/init.py:62: InferenceServerException
----------------------------- Captured stdout call -----------------------------
Signal (2) received.
----------------------------- Captured stderr call -----------------------------
2022-08-30 16:47:54.080775: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:47:56.136899: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 1627 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0e:00.0, compute capability: 6.0
2022-08-30 16:47:56.137674: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:1 with 14532 MB memory: -> device: 1, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0f:00.0, compute capability: 6.0
Error in atexit._run_exitfuncs:
Traceback (most recent call last):
File "/usr/lib/python3.8/logging/init.py", line 2127, in shutdown
h.close()
File "/usr/local/lib/python3.8/dist-packages/absl/logging/init.py", line 934, in close
self.stream.close()
File "/usr/local/lib/python3.8/dist-packages/ipykernel/iostream.py", line 438, in close
self.watch_fd_thread.join()
AttributeError: 'OutStream' object has no attribute 'watch_fd_thread'
WARNING clustering 247 points to 32 centroids: please provide at least 1248 training points
2022-08-30 16:49:30.963958: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:49:32.982359: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 1627 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0e:00.0, compute capability: 6.0
2022-08-30 16:49:32.983148: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:1 with 15153 MB memory: -> device: 1, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0f:00.0, compute capability: 6.0
I0830 16:49:40.444304 4369 pinned_memory_manager.cc:240] Pinned memory pool is created at '0x7f8c6c000000' with size 268435456
I0830 16:49:40.445053 4369 cuda_memory_manager.cc:105] CUDA memory pool is created on device 0 with size 67108864
I0830 16:49:40.452477 4369 model_repository_manager.cc:1191] loading: 0_queryfeast:1
I0830 16:49:40.552805 4369 model_repository_manager.cc:1191] loading: 1_predicttensorflow:1
I0830 16:49:40.560052 4369 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 0_queryfeast (GPU device 0)
I0830 16:49:40.653177 4369 model_repository_manager.cc:1191] loading: 2_queryfaiss:1
I0830 16:49:40.753420 4369 model_repository_manager.cc:1191] loading: 3_queryfeast:1
I0830 16:49:40.853695 4369 model_repository_manager.cc:1191] loading: 4_unrollfeatures:1
I0830 16:49:40.953966 4369 model_repository_manager.cc:1191] loading: 5_predicttensorflow:1
I0830 16:49:41.054299 4369 model_repository_manager.cc:1191] loading: 6_softmaxsampling:1
I0830 16:49:42.817959 4369 model_repository_manager.cc:1345] successfully loaded '0_queryfeast' version 1
I0830 16:49:43.096910 4369 tensorflow.cc:2204] TRITONBACKEND_Initialize: tensorflow
I0830 16:49:43.096951 4369 tensorflow.cc:2214] Triton TRITONBACKEND API version: 1.10
I0830 16:49:43.096958 4369 tensorflow.cc:2220] 'tensorflow' TRITONBACKEND API version: 1.10
I0830 16:49:43.096964 4369 tensorflow.cc:2244] backend configuration:
{"cmdline":{"auto-complete-config":"false","backend-directory":"/opt/tritonserver/backends","min-compute-capability":"6.000000","version":"2","default-max-batch-size":"4"}}
I0830 16:49:43.097006 4369 tensorflow.cc:2310] TRITONBACKEND_ModelInitialize: 1_predicttensorflow (version 1)
I0830 16:49:43.099305 4369 tensorflow.cc:2310] TRITONBACKEND_ModelInitialize: 5_predicttensorflow (version 1)
I0830 16:49:43.103218 4369 tensorflow.cc:2359] TRITONBACKEND_ModelInstanceInitialize: 1_predicttensorflow (GPU device 0)
2022-08-30 16:49:43.468474: I tensorflow/cc/saved_model/reader.cc:43] Reading SavedModel from: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:49:43.472251: I tensorflow/cc/saved_model/reader.cc:81] Reading meta graph with tags { serve }
2022-08-30 16:49:43.472281: I tensorflow/cc/saved_model/reader.cc:122] Reading SavedModel debug info (if present) from: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:49:43.472376: I tensorflow/core/platform/cpu_feature_guard.cc:194] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: SSE3 SSE4.1 SSE4.2 AVX
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:49:43.520506: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 14897 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 16:49:43.563142: I tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc:354] MLIR V1 optimization pass is not enabled
2022-08-30 16:49:43.565405: I tensorflow/cc/saved_model/loader.cc:230] Restoring SavedModel bundle.
2022-08-30 16:49:43.644718: I tensorflow/cc/saved_model/loader.cc:214] Running initialization op on SavedModel bundle at path: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:49:43.670102: I tensorflow/cc/saved_model/loader.cc:321] SavedModel load for tags { serve }; Status: success: OK. Took 201646 microseconds.
I0830 16:49:43.670217 4369 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 2_queryfaiss (GPU device 0)
I0830 16:49:43.670303 4369 model_repository_manager.cc:1345] successfully loaded '1_predicttensorflow' version 1
I0830 16:49:45.998837 4369 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 3_queryfeast (GPU device 0)
I0830 16:49:45.999402 4369 model_repository_manager.cc:1345] successfully loaded '2_queryfaiss' version 1
I0830 16:49:48.259918 4369 tensorflow.cc:2359] TRITONBACKEND_ModelInstanceInitialize: 5_predicttensorflow (GPU device 0)
I0830 16:49:48.260135 4369 model_repository_manager.cc:1345] successfully loaded '3_queryfeast' version 1
2022-08-30 16:49:48.260812: I tensorflow/cc/saved_model/reader.cc:43] Reading SavedModel from: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:49:48.286360: I tensorflow/cc/saved_model/reader.cc:81] Reading meta graph with tags { serve }
2022-08-30 16:49:48.286408: I tensorflow/cc/saved_model/reader.cc:122] Reading SavedModel debug info (if present) from: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:49:48.288596: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 14897 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 16:49:48.317854: I tensorflow/cc/saved_model/loader.cc:230] Restoring SavedModel bundle.
2022-08-30 16:49:48.467330: I tensorflow/cc/saved_model/loader.cc:214] Running initialization op on SavedModel bundle at path: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:49:48.519740: I tensorflow/cc/saved_model/loader.cc:321] SavedModel load for tags { serve }; Status: success: OK. Took 258941 microseconds.
I0830 16:49:48.519896 4369 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 4_unrollfeatures (GPU device 0)
I0830 16:49:48.519975 4369 model_repository_manager.cc:1345] successfully loaded '5_predicttensorflow' version 1
I0830 16:49:50.597567 4369 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 6_softmaxsampling (GPU device 0)
I0830 16:49:50.597833 4369 model_repository_manager.cc:1345] successfully loaded '4_unrollfeatures' version 1
I0830 16:49:52.696592 4369 model_repository_manager.cc:1345] successfully loaded '6_softmaxsampling' version 1
I0830 16:49:52.699526 4369 model_repository_manager.cc:1191] loading: ensemble_model:1
I0830 16:49:52.800306 4369 model_repository_manager.cc:1345] successfully loaded 'ensemble_model' version 1
I0830 16:49:52.800473 4369 server.cc:556]
+------------------+------+
| Repository Agent | Path |
+------------------+------+
+------------------+------+

I0830 16:49:52.800582 4369 server.cc:583]
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Backend | Path | Config |
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| python | /opt/tritonserver/backends/python/libtriton_python.so | {"cmdline":{"auto-complete-config":"false","min-compute-capability":"6.000000","backend-directory":"/opt/tritonserver/backends","default-max-batch-size":"4"}} |
| tensorflow | /opt/tritonserver/backends/tensorflow2/libtriton_tensorflow2.so | {"cmdline":{"auto-complete-config":"false","backend-directory":"/opt/tritonserver/backends","min-compute-capability":"6.000000","version":"2","default-max-batch-size":"4"}} |
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

I0830 16:49:52.800696 4369 server.cc:626]
+---------------------+---------+--------+
| Model | Version | Status |
+---------------------+---------+--------+
| 0_queryfeast | 1 | READY |
| 1_predicttensorflow | 1 | READY |
| 2_queryfaiss | 1 | READY |
| 3_queryfeast | 1 | READY |
| 4_unrollfeatures | 1 | READY |
| 5_predicttensorflow | 1 | READY |
| 6_softmaxsampling | 1 | READY |
| ensemble_model | 1 | READY |
+---------------------+---------+--------+

I0830 16:49:52.863224 4369 metrics.cc:650] Collecting metrics for GPU 0: Tesla P100-DGXS-16GB
I0830 16:49:52.864122 4369 tritonserver.cc:2159]
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Option | Value |
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| server_id | triton |
| server_version | 2.23.0 |
| server_extensions | classification sequence model_repository model_repository(unload_dependents) schedule_policy model_configuration system_shared_memory cuda_shared_memory binary_tensor_data statistics trace |
| model_repository_path[0] | /tmp/examples/poc_ensemble/ |
| model_control_mode | MODE_NONE |
| strict_model_config | 1 |
| rate_limit | OFF |
| pinned_memory_pool_byte_size | 268435456 |
| cuda_memory_pool_byte_size{0} | 67108864 |
| response_cache_byte_size | 0 |
| min_supported_compute_capability | 6.0 |
| strict_readiness | 1 |
| exit_timeout | 30 |
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

E0830 16:49:52.864919079 4369 server_chttp2.cc:40] {"created":"@1661878192.864901379","description":"Only 1 addresses added out of total 2 resolved","file":"/tmp/tritonbuild/tritonserver/build/_deps/repo-third-party-build/grpc-repo/src/grpc/src/core/ext/transport/chttp2/server/chttp2_server.cc","file_line":403,"referenced_errors":[{"created":"@1661878192.864899268","description":"Address family not supported by protocol","errno":97,"file":"/tmp/tritonbuild/tritonserver/build/_deps/repo-third-party-build/grpc-repo/src/grpc/src/core/lib/iomgr/socket_utils_common_posix.cc","file_line":395,"os_error":"Address family not supported by protocol","syscall":"socket","target_address":"[::1]:8001"}]}
I0830 16:49:52.865297 4369 grpc_server.cc:4587] Started GRPCInferenceService at localhost:8001
I0830 16:49:52.865823 4369 http_server.cc:3303] Started HTTPService at 0.0.0.0:8000
I0830 16:49:52.907012 4369 http_server.cc:178] Started Metrics Service at 0.0.0.0:8002
W0830 16:49:53.888652 4369 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
W0830 16:49:54.888862 4369 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
W0830 16:49:55.915731 4369 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
0830 16:49:56.745853 4594 pb_stub.cc:776] Failed to process the request(s) for model '3_queryfeast', message: TypeError: init(): incompatible constructor arguments. The following argument types are supported:
1. c_python_backend_utils.InferenceResponse(output_tensors: List[c_python_backend_utils.Tensor], error: c_python_backend_utils.TritonError = None)

Invoked with: kwargs: tensors=[], error="<class 'TypeError'>, int() argument must be a string, a bytes-like object or a number, not 'NoneType', [<FrameSummary file /tmp/examples/poc_ensemble/3_queryfeast/1/model.py, line 105 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/op_runner.py, line 54 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/ops/feast.py, line 309 in transform>]"

At:
/tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute

I0830 16:49:56.747112 4369 server.cc:257] Waiting for in-flight requests to complete.
I0830 16:49:56.747136 4369 server.cc:273] Timeout 30: Found 0 model versions that have in-flight inferences
I0830 16:49:56.747144 4369 model_repository_manager.cc:1223] unloading: ensemble_model:1
I0830 16:49:56.747205 4369 model_repository_manager.cc:1223] unloading: 6_softmaxsampling:1
I0830 16:49:56.747234 4369 model_repository_manager.cc:1223] unloading: 5_predicttensorflow:1
I0830 16:49:56.747267 4369 model_repository_manager.cc:1223] unloading: 4_unrollfeatures:1
I0830 16:49:56.747316 4369 model_repository_manager.cc:1223] unloading: 3_queryfeast:1
I0830 16:49:56.747340 4369 model_repository_manager.cc:1223] unloading: 2_queryfaiss:1
I0830 16:49:56.747359 4369 model_repository_manager.cc:1328] successfully unloaded 'ensemble_model' version 1
I0830 16:49:56.747435 4369 tensorflow.cc:2397] TRITONBACKEND_ModelInstanceFinalize: delete instance state
I0830 16:49:56.747451 4369 model_repository_manager.cc:1223] unloading: 1_predicttensorflow:1
I0830 16:49:56.747531 4369 model_repository_manager.cc:1223] unloading: 0_queryfeast:1
I0830 16:49:56.747559 4369 server.cc:288] All models are stopped, unloading models
I0830 16:49:56.747574 4369 server.cc:295] Timeout 30: Found 7 live models and 0 in-flight non-inference requests
I0830 16:49:56.747750 4369 tensorflow.cc:2397] TRITONBACKEND_ModelInstanceFinalize: delete instance state
I0830 16:49:56.747761 4369 tensorflow.cc:2336] TRITONBACKEND_ModelFinalize: delete model state
I0830 16:49:56.747937 4369 tensorflow.cc:2336] TRITONBACKEND_ModelFinalize: delete model state
I0830 16:49:56.764154 4369 model_repository_manager.cc:1328] successfully unloaded '1_predicttensorflow' version 1
I0830 16:49:56.782420 4369 model_repository_manager.cc:1328] successfully unloaded '5_predicttensorflow' version 1
I0830 16:49:57.747703 4369 server.cc:295] Timeout 29: Found 5 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 16:49:58.252483 4369 model_repository_manager.cc:1328] successfully unloaded '6_softmaxsampling' version 1
I0830 16:49:58.278842 4369 model_repository_manager.cc:1328] successfully unloaded '4_unrollfeatures' version 1
I0830 16:49:58.339344 4369 model_repository_manager.cc:1328] successfully unloaded '2_queryfaiss' version 1
I0830 16:49:58.747886 4369 server.cc:295] Timeout 28: Found 2 live models and 0 in-flight non-inference requests
I0830 16:49:59.748017 4369 server.cc:295] Timeout 27: Found 2 live models and 0 in-flight non-inference requests
I0830 16:50:00.748165 4369 server.cc:295] Timeout 26: Found 2 live models and 0 in-flight non-inference requests
I0830 16:50:01.748302 4369 server.cc:295] Timeout 25: Found 2 live models and 0 in-flight non-inference requests
I0830 16:50:02.748437 4369 server.cc:295] Timeout 24: Found 2 live models and 0 in-flight non-inference requests
I0830 16:50:03.748610 4369 server.cc:295] Timeout 23: Found 2 live models and 0 in-flight non-inference requests
I0830 16:50:04.748744 4369 server.cc:295] Timeout 22: Found 2 live models and 0 in-flight non-inference requests
I0830 16:50:05.748885 4369 server.cc:295] Timeout 21: Found 2 live models and 0 in-flight non-inference requests
I0830 16:50:06.749024 4369 server.cc:295] Timeout 20: Found 2 live models and 0 in-flight non-inference requests
I0830 16:50:07.749160 4369 server.cc:295] Timeout 19: Found 2 live models and 0 in-flight non-inference requests
I0830 16:50:08.749290 4369 server.cc:295] Timeout 18: Found 2 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 16:50:09.218080 4369 model_repository_manager.cc:1328] successfully unloaded '0_queryfeast' version 1
I0830 16:50:09.749416 4369 server.cc:295] Timeout 17: Found 1 live models and 0 in-flight non-inference requests
I0830 16:50:10.749540 4369 server.cc:295] Timeout 16: Found 1 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 16:50:11.073150 4369 model_repository_manager.cc:1328] successfully unloaded '3_queryfeast' version 1
I0830 16:50:11.749671 4369 server.cc:295] Timeout 15: Found 0 live models and 0 in-flight non-inference requests
=============================== warnings summary ===============================
../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_INTEGERSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DOUBLESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_STRINGSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BUCKETSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DECIMALSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_TIMESTAMPSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BINARYSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_COLUMNSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33
/usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
DASK_VERSION = LooseVersion(dask.version)

../../../.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: 34 warnings
/var/jenkins_home/.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
other = LooseVersion(other)

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATATYPE = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE_SECONDARYDEVICEKIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINPUT_FORMAT = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHINPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHOUTPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELOPTIMIZATIONPOLICY_MODELPRIORITY = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELQUEUEPOLICY_TIMEOUTACTION = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELSEQUENCEBATCHING_CONTROL_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER_RESOURCE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/unit/examples/test_building_deploying_multi_stage_RecSys.py::test_func
============ 1 failed, 2 passed, 135 warnings in 255.06s (0:04:15) =============
Build step 'Execute shell' marked build as failure
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash
cd /var/jenkins_home/
CUDA_VISIBLE_DEVICES=1 python test_res_push.py "https://github.com/gitapi/repos/NVIDIA-Merlin/Merlin/issues/$ghprbPullId/comments" "/var/jenkins_home/jobs/$JOB_NAME/builds/$BUILD_NUMBER/log"
[merlin_merlin] $ /bin/bash /tmp/jenkins7103943570630619108.sh

@jperez999
Copy link
Collaborator Author

rerun tests

@nvidia-merlin-bot
Copy link
Contributor

Click to view CI Results
GitHub pull request #577 of commit 6ea49e34aa2735b7cfe830deed9f13d7a775cc04, no merge conflicts.
Running as SYSTEM
Setting status of 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 to PENDING with url https://10.20.13.93:8080/job/merlin_merlin/390/console and message: 'Pending'
Using context: Jenkins
Building on master in workspace /var/jenkins_home/workspace/merlin_merlin
using credential systems-login
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/NVIDIA-Merlin/Merlin # timeout=10
Fetching upstream changes from https://github.com/NVIDIA-Merlin/Merlin
 > git --version # timeout=10
using GIT_ASKPASS to set credentials login for merlin-systems
 > git fetch --tags --force --progress -- https://github.com/NVIDIA-Merlin/Merlin +refs/pull/577/*:refs/remotes/origin/pr/577/* # timeout=10
 > git rev-parse 6ea49e34aa2735b7cfe830deed9f13d7a775cc04^{commit} # timeout=10
Checking out Revision 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 # timeout=10
Commit message: "fix test examples in unit and int"
 > git rev-list --no-walk 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 # timeout=10
[merlin_merlin] $ /bin/bash /tmp/jenkins17482419345066425440.sh
============================= test session starts ==============================
platform linux -- Python 3.8.10, pytest-7.1.2, pluggy-1.0.0
rootdir: /var/jenkins_home/workspace/merlin_merlin/merlin
plugins: anyio-3.6.1, xdist-2.5.0, forked-1.4.0, cov-3.0.0
collected 3 items

tests/unit/test_version.py . [ 33%]
tests/unit/examples/test_building_deploying_multi_stage_RecSys.py F [ 66%]
tests/unit/examples/test_scaling_criteo_merlin_models.py . [100%]

=================================== FAILURES ===================================
__________________________________ test_func ___________________________________

def test_func():
    with testbook(
        REPO_ROOT
        / "examples"
        / "Building-and-deploying-multi-stage-RecSys"
        / "01-Building-Recommender-Systems-with-Merlin.ipynb",
        execute=False,
    ) as tb1:
        tb1.inject(
            """
            import os
            os.environ["DATA_FOLDER"] = "/tmp/data/"
            os.environ["NUM_ROWS"] = "10000"
            os.system("mkdir -p /tmp/examples")
            os.environ["BASE_DIR"] = "/tmp/examples/"
            """
        )
        tb1.execute()
        assert os.path.isdir("/tmp/examples/dlrm")
        assert os.path.isdir("/tmp/examples/feature_repo")
        assert os.path.isdir("/tmp/examples/query_tower")
        assert os.path.isfile("/tmp/examples/item_embeddings.parquet")
        assert os.path.isfile("/tmp/examples/feature_repo/user_features.py")
        assert os.path.isfile("/tmp/examples/feature_repo/item_features.py")

    with testbook(
        REPO_ROOT
        / "examples"
        / "Building-and-deploying-multi-stage-RecSys"
        / "02-Deploying-multi-stage-RecSys-with-Merlin-Systems.ipynb",
        execute=False,
    ) as tb2:
        tb2.inject(
            """
            import os
            os.environ["DATA_FOLDER"] = "/tmp/data/"
            os.environ["BASE_DIR"] = "/tmp/examples/"
            """
        )
        NUM_OF_CELLS = len(tb2.cells)
        tb2.execute_cell(list(range(0, NUM_OF_CELLS - 3)))
        top_k = tb2.ref("top_k")
        outputs = tb2.ref("outputs")
        assert outputs[0] == "ordered_ids"

        df_lib = get_lib()

        # read in data for request
        batch = df_lib.read_parquet(
            os.path.join("/tmp/data/processed/retrieval/", "train", "part_0.parquet"),
            num_rows=1,
            columns=["user_id"],
        )
        configure_tensorflow()
      response = run_ensemble_on_tritonserver(
            "/tmp/examples/poc_ensemble/", outputs, batch, "ensemble_model"
        )

tests/unit/examples/test_building_deploying_multi_stage_RecSys.py:74:


/usr/local/lib/python3.8/dist-packages/merlin/systems/triton/utils.py:130: in run_ensemble_on_tritonserver
response = send_triton_request(df, output_columns, client=client, triton_model=model_name)
/usr/local/lib/python3.8/dist-packages/merlin/systems/triton/utils.py:178: in send_triton_request
response = client.infer(triton_model, inputs, request_id=request_id, outputs=outputs)
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/init.py:1322: in infer
raise_error_grpc(rpc_error)


rpc_error = <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INTERNAL
details = "in ensemble 'ensemble_model'... 309 in transform>]"\n\nAt:\n /tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute\n","grpc_status":13}"

def raise_error_grpc(rpc_error):
  raise get_error_grpc(rpc_error) from None

E tritonclient.utils.InferenceServerException: [StatusCode.INTERNAL] in ensemble 'ensemble_model', Failed to process the request(s) for model instance '3_queryfeast', message: TypeError: init(): incompatible constructor arguments. The following argument types are supported:
E 1. c_python_backend_utils.InferenceResponse(output_tensors: List[c_python_backend_utils.Tensor], error: c_python_backend_utils.TritonError = None)
E
E Invoked with: kwargs: tensors=[], error="<class 'TypeError'>, int() argument must be a string, a bytes-like object or a number, not 'NoneType', [<FrameSummary file /tmp/examples/poc_ensemble/3_queryfeast/1/model.py, line 105 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/op_runner.py, line 54 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/ops/feast.py, line 309 in transform>]"
E
E At:
E /tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute

/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/init.py:62: InferenceServerException
----------------------------- Captured stdout call -----------------------------
Signal (2) received.
----------------------------- Captured stderr call -----------------------------
2022-08-30 16:53:08.894009: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:53:10.946352: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 1627 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0e:00.0, compute capability: 6.0
2022-08-30 16:53:10.947166: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:1 with 15153 MB memory: -> device: 1, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0f:00.0, compute capability: 6.0
Error in atexit._run_exitfuncs:
Traceback (most recent call last):
File "/usr/lib/python3.8/logging/init.py", line 2127, in shutdown
h.close()
File "/usr/local/lib/python3.8/dist-packages/absl/logging/init.py", line 934, in close
self.stream.close()
File "/usr/local/lib/python3.8/dist-packages/ipykernel/iostream.py", line 438, in close
self.watch_fd_thread.join()
AttributeError: 'OutStream' object has no attribute 'watch_fd_thread'
WARNING clustering 230 points to 32 centroids: please provide at least 1248 training points
2022-08-30 16:54:47.028087: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:54:49.077990: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 1627 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0e:00.0, compute capability: 6.0
2022-08-30 16:54:49.078747: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:1 with 15153 MB memory: -> device: 1, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0f:00.0, compute capability: 6.0
I0830 16:54:56.548295 6310 pinned_memory_manager.cc:240] Pinned memory pool is created at '0x7fedd4000000' with size 268435456
I0830 16:54:56.549038 6310 cuda_memory_manager.cc:105] CUDA memory pool is created on device 0 with size 67108864
I0830 16:54:56.556404 6310 model_repository_manager.cc:1191] loading: 0_queryfeast:1
I0830 16:54:56.656707 6310 model_repository_manager.cc:1191] loading: 1_predicttensorflow:1
I0830 16:54:56.663888 6310 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 0_queryfeast (GPU device 0)
I0830 16:54:56.757070 6310 model_repository_manager.cc:1191] loading: 2_queryfaiss:1
I0830 16:54:56.857305 6310 model_repository_manager.cc:1191] loading: 3_queryfeast:1
I0830 16:54:56.957586 6310 model_repository_manager.cc:1191] loading: 4_unrollfeatures:1
I0830 16:54:57.057896 6310 model_repository_manager.cc:1191] loading: 5_predicttensorflow:1
I0830 16:54:57.158212 6310 model_repository_manager.cc:1191] loading: 6_softmaxsampling:1
I0830 16:54:58.946473 6310 model_repository_manager.cc:1345] successfully loaded '0_queryfeast' version 1
I0830 16:54:59.223548 6310 tensorflow.cc:2204] TRITONBACKEND_Initialize: tensorflow
I0830 16:54:59.223587 6310 tensorflow.cc:2214] Triton TRITONBACKEND API version: 1.10
I0830 16:54:59.223594 6310 tensorflow.cc:2220] 'tensorflow' TRITONBACKEND API version: 1.10
I0830 16:54:59.223599 6310 tensorflow.cc:2244] backend configuration:
{"cmdline":{"auto-complete-config":"false","backend-directory":"/opt/tritonserver/backends","min-compute-capability":"6.000000","version":"2","default-max-batch-size":"4"}}
I0830 16:54:59.223645 6310 tensorflow.cc:2310] TRITONBACKEND_ModelInitialize: 1_predicttensorflow (version 1)
I0830 16:54:59.226243 6310 tensorflow.cc:2310] TRITONBACKEND_ModelInitialize: 5_predicttensorflow (version 1)
I0830 16:54:59.229603 6310 tensorflow.cc:2359] TRITONBACKEND_ModelInstanceInitialize: 1_predicttensorflow (GPU device 0)
2022-08-30 16:54:59.590129: I tensorflow/cc/saved_model/reader.cc:43] Reading SavedModel from: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:54:59.593952: I tensorflow/cc/saved_model/reader.cc:81] Reading meta graph with tags { serve }
2022-08-30 16:54:59.593982: I tensorflow/cc/saved_model/reader.cc:122] Reading SavedModel debug info (if present) from: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:54:59.594071: I tensorflow/core/platform/cpu_feature_guard.cc:194] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: SSE3 SSE4.1 SSE4.2 AVX
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:54:59.631309: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 14897 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 16:54:59.661183: I tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc:354] MLIR V1 optimization pass is not enabled
2022-08-30 16:54:59.663367: I tensorflow/cc/saved_model/loader.cc:230] Restoring SavedModel bundle.
2022-08-30 16:54:59.747387: I tensorflow/cc/saved_model/loader.cc:214] Running initialization op on SavedModel bundle at path: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:54:59.772105: I tensorflow/cc/saved_model/loader.cc:321] SavedModel load for tags { serve }; Status: success: OK. Took 181995 microseconds.
I0830 16:54:59.772222 6310 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 2_queryfaiss (GPU device 0)
I0830 16:54:59.772312 6310 model_repository_manager.cc:1345] successfully loaded '1_predicttensorflow' version 1
I0830 16:55:02.140605 6310 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 3_queryfeast (GPU device 0)
I0830 16:55:02.141689 6310 model_repository_manager.cc:1345] successfully loaded '2_queryfaiss' version 1
I0830 16:55:04.395173 6310 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 6_softmaxsampling (GPU device 0)
I0830 16:55:04.396104 6310 model_repository_manager.cc:1345] successfully loaded '3_queryfeast' version 1
I0830 16:55:06.444182 6310 tensorflow.cc:2359] TRITONBACKEND_ModelInstanceInitialize: 5_predicttensorflow (GPU device 0)
I0830 16:55:06.444394 6310 model_repository_manager.cc:1345] successfully loaded '6_softmaxsampling' version 1
2022-08-30 16:55:06.445024: I tensorflow/cc/saved_model/reader.cc:43] Reading SavedModel from: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:55:06.455802: I tensorflow/cc/saved_model/reader.cc:81] Reading meta graph with tags { serve }
2022-08-30 16:55:06.455835: I tensorflow/cc/saved_model/reader.cc:122] Reading SavedModel debug info (if present) from: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:55:06.457754: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 14897 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 16:55:06.485224: I tensorflow/cc/saved_model/loader.cc:230] Restoring SavedModel bundle.
2022-08-30 16:55:06.627353: I tensorflow/cc/saved_model/loader.cc:214] Running initialization op on SavedModel bundle at path: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:55:06.680085: I tensorflow/cc/saved_model/loader.cc:321] SavedModel load for tags { serve }; Status: success: OK. Took 235067 microseconds.
I0830 16:55:06.680226 6310 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 4_unrollfeatures (GPU device 0)
I0830 16:55:06.680322 6310 model_repository_manager.cc:1345] successfully loaded '5_predicttensorflow' version 1
I0830 16:55:08.796589 6310 model_repository_manager.cc:1345] successfully loaded '4_unrollfeatures' version 1
I0830 16:55:08.799548 6310 model_repository_manager.cc:1191] loading: ensemble_model:1
I0830 16:55:08.900368 6310 model_repository_manager.cc:1345] successfully loaded 'ensemble_model' version 1
I0830 16:55:08.900544 6310 server.cc:556]
+------------------+------+
| Repository Agent | Path |
+------------------+------+
+------------------+------+

I0830 16:55:08.900650 6310 server.cc:583]
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Backend | Path | Config |
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| python | /opt/tritonserver/backends/python/libtriton_python.so | {"cmdline":{"auto-complete-config":"false","min-compute-capability":"6.000000","backend-directory":"/opt/tritonserver/backends","default-max-batch-size":"4"}} |
| tensorflow | /opt/tritonserver/backends/tensorflow2/libtriton_tensorflow2.so | {"cmdline":{"auto-complete-config":"false","backend-directory":"/opt/tritonserver/backends","min-compute-capability":"6.000000","version":"2","default-max-batch-size":"4"}} |
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

I0830 16:55:08.900764 6310 server.cc:626]
+---------------------+---------+--------+
| Model | Version | Status |
+---------------------+---------+--------+
| 0_queryfeast | 1 | READY |
| 1_predicttensorflow | 1 | READY |
| 2_queryfaiss | 1 | READY |
| 3_queryfeast | 1 | READY |
| 4_unrollfeatures | 1 | READY |
| 5_predicttensorflow | 1 | READY |
| 6_softmaxsampling | 1 | READY |
| ensemble_model | 1 | READY |
+---------------------+---------+--------+

I0830 16:55:08.963944 6310 metrics.cc:650] Collecting metrics for GPU 0: Tesla P100-DGXS-16GB
I0830 16:55:08.964803 6310 tritonserver.cc:2159]
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Option | Value |
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| server_id | triton |
| server_version | 2.23.0 |
| server_extensions | classification sequence model_repository model_repository(unload_dependents) schedule_policy model_configuration system_shared_memory cuda_shared_memory binary_tensor_data statistics trace |
| model_repository_path[0] | /tmp/examples/poc_ensemble/ |
| model_control_mode | MODE_NONE |
| strict_model_config | 1 |
| rate_limit | OFF |
| pinned_memory_pool_byte_size | 268435456 |
| cuda_memory_pool_byte_size{0} | 67108864 |
| response_cache_byte_size | 0 |
| min_supported_compute_capability | 6.0 |
| strict_readiness | 1 |
| exit_timeout | 30 |
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

E0830 16:55:08.965601568 6310 server_chttp2.cc:40] {"created":"@1661878508.965583711","description":"Only 1 addresses added out of total 2 resolved","file":"/tmp/tritonbuild/tritonserver/build/_deps/repo-third-party-build/grpc-repo/src/grpc/src/core/ext/transport/chttp2/server/chttp2_server.cc","file_line":403,"referenced_errors":[{"created":"@1661878508.965581741","description":"Address family not supported by protocol","errno":97,"file":"/tmp/tritonbuild/tritonserver/build/_deps/repo-third-party-build/grpc-repo/src/grpc/src/core/lib/iomgr/socket_utils_common_posix.cc","file_line":395,"os_error":"Address family not supported by protocol","syscall":"socket","target_address":"[::1]:8001"}]}
I0830 16:55:08.965912 6310 grpc_server.cc:4587] Started GRPCInferenceService at localhost:8001
I0830 16:55:08.966128 6310 http_server.cc:3303] Started HTTPService at 0.0.0.0:8000
I0830 16:55:09.007025 6310 http_server.cc:178] Started Metrics Service at 0.0.0.0:8002
W0830 16:55:09.988817 6310 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
0830 16:55:10.859188 6535 pb_stub.cc:776] Failed to process the request(s) for model '3_queryfeast', message: TypeError: init(): incompatible constructor arguments. The following argument types are supported:
1. c_python_backend_utils.InferenceResponse(output_tensors: List[c_python_backend_utils.Tensor], error: c_python_backend_utils.TritonError = None)

Invoked with: kwargs: tensors=[], error="<class 'TypeError'>, int() argument must be a string, a bytes-like object or a number, not 'NoneType', [<FrameSummary file /tmp/examples/poc_ensemble/3_queryfeast/1/model.py, line 105 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/op_runner.py, line 54 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/ops/feast.py, line 309 in transform>]"

At:
/tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute

I0830 16:55:10.860109 6310 server.cc:257] Waiting for in-flight requests to complete.
I0830 16:55:10.860156 6310 server.cc:273] Timeout 30: Found 0 model versions that have in-flight inferences
I0830 16:55:10.860175 6310 model_repository_manager.cc:1223] unloading: ensemble_model:1
I0830 16:55:10.860271 6310 model_repository_manager.cc:1223] unloading: 6_softmaxsampling:1
I0830 16:55:10.860343 6310 model_repository_manager.cc:1223] unloading: 5_predicttensorflow:1
I0830 16:55:10.860404 6310 model_repository_manager.cc:1328] successfully unloaded 'ensemble_model' version 1
I0830 16:55:10.860445 6310 model_repository_manager.cc:1223] unloading: 4_unrollfeatures:1
I0830 16:55:10.860502 6310 tensorflow.cc:2397] TRITONBACKEND_ModelInstanceFinalize: delete instance state
I0830 16:55:10.860512 6310 model_repository_manager.cc:1223] unloading: 3_queryfeast:1
I0830 16:55:10.860599 6310 model_repository_manager.cc:1223] unloading: 2_queryfaiss:1
I0830 16:55:10.860649 6310 model_repository_manager.cc:1223] unloading: 1_predicttensorflow:1
I0830 16:55:10.860700 6310 tensorflow.cc:2336] TRITONBACKEND_ModelFinalize: delete model state
I0830 16:55:10.860721 6310 model_repository_manager.cc:1223] unloading: 0_queryfeast:1
I0830 16:55:10.860774 6310 server.cc:288] All models are stopped, unloading models
I0830 16:55:10.860798 6310 server.cc:295] Timeout 30: Found 7 live models and 0 in-flight non-inference requests
I0830 16:55:10.860852 6310 tensorflow.cc:2397] TRITONBACKEND_ModelInstanceFinalize: delete instance state
I0830 16:55:10.860986 6310 tensorflow.cc:2336] TRITONBACKEND_ModelFinalize: delete model state
I0830 16:55:10.875131 6310 model_repository_manager.cc:1328] successfully unloaded '1_predicttensorflow' version 1
I0830 16:55:10.888937 6310 model_repository_manager.cc:1328] successfully unloaded '5_predicttensorflow' version 1
W0830 16:55:10.989022 6310 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
I0830 16:55:11.861164 6310 server.cc:295] Timeout 29: Found 5 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
W0830 16:55:12.007873 6310 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
I0830 16:55:12.219253 6310 model_repository_manager.cc:1328] successfully unloaded '4_unrollfeatures' version 1
I0830 16:55:12.332374 6310 model_repository_manager.cc:1328] successfully unloaded '2_queryfaiss' version 1
I0830 16:55:12.361883 6310 model_repository_manager.cc:1328] successfully unloaded '6_softmaxsampling' version 1
I0830 16:55:12.861337 6310 server.cc:295] Timeout 28: Found 2 live models and 0 in-flight non-inference requests
I0830 16:55:13.861470 6310 server.cc:295] Timeout 27: Found 2 live models and 0 in-flight non-inference requests
I0830 16:55:14.861602 6310 server.cc:295] Timeout 26: Found 2 live models and 0 in-flight non-inference requests
I0830 16:55:15.861753 6310 server.cc:295] Timeout 25: Found 2 live models and 0 in-flight non-inference requests
I0830 16:55:16.861889 6310 server.cc:295] Timeout 24: Found 2 live models and 0 in-flight non-inference requests
I0830 16:55:17.862064 6310 server.cc:295] Timeout 23: Found 2 live models and 0 in-flight non-inference requests
I0830 16:55:18.862197 6310 server.cc:295] Timeout 22: Found 2 live models and 0 in-flight non-inference requests
I0830 16:55:19.862325 6310 server.cc:295] Timeout 21: Found 2 live models and 0 in-flight non-inference requests
I0830 16:55:20.862471 6310 server.cc:295] Timeout 20: Found 2 live models and 0 in-flight non-inference requests
I0830 16:55:21.862603 6310 server.cc:295] Timeout 19: Found 2 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 16:55:22.204458 6310 model_repository_manager.cc:1328] successfully unloaded '0_queryfeast' version 1
I0830 16:55:22.862736 6310 server.cc:295] Timeout 18: Found 1 live models and 0 in-flight non-inference requests
I0830 16:55:23.862868 6310 server.cc:295] Timeout 17: Found 1 live models and 0 in-flight non-inference requests
I0830 16:55:24.862995 6310 server.cc:295] Timeout 16: Found 1 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 16:55:25.169479 6310 model_repository_manager.cc:1328] successfully unloaded '3_queryfeast' version 1
I0830 16:55:25.863137 6310 server.cc:295] Timeout 15: Found 0 live models and 0 in-flight non-inference requests
=============================== warnings summary ===============================
../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_INTEGERSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DOUBLESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_STRINGSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BUCKETSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DECIMALSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_TIMESTAMPSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BINARYSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_COLUMNSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33
/usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
DASK_VERSION = LooseVersion(dask.version)

../../../.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: 34 warnings
/var/jenkins_home/.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
other = LooseVersion(other)

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATATYPE = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE_SECONDARYDEVICEKIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINPUT_FORMAT = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHINPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHOUTPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELOPTIMIZATIONPOLICY_MODELPRIORITY = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELQUEUEPOLICY_TIMEOUTACTION = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELSEQUENCEBATCHING_CONTROL_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER_RESOURCE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/unit/examples/test_building_deploying_multi_stage_RecSys.py::test_func
============ 1 failed, 2 passed, 135 warnings in 254.24s (0:04:14) =============
Build step 'Execute shell' marked build as failure
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash
cd /var/jenkins_home/
CUDA_VISIBLE_DEVICES=1 python test_res_push.py "https://github.com/gitapi/repos/NVIDIA-Merlin/Merlin/issues/$ghprbPullId/comments" "/var/jenkins_home/jobs/$JOB_NAME/builds/$BUILD_NUMBER/log"
[merlin_merlin] $ /bin/bash /tmp/jenkins6661351388539191328.sh

@jperez999
Copy link
Collaborator Author

rerun tests

@nvidia-merlin-bot
Copy link
Contributor

Click to view CI Results
GitHub pull request #577 of commit 6ea49e34aa2735b7cfe830deed9f13d7a775cc04, no merge conflicts.
Running as SYSTEM
Setting status of 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 to PENDING with url https://10.20.13.93:8080/job/merlin_merlin/391/console and message: 'Pending'
Using context: Jenkins
Building on master in workspace /var/jenkins_home/workspace/merlin_merlin
using credential systems-login
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/NVIDIA-Merlin/Merlin # timeout=10
Fetching upstream changes from https://github.com/NVIDIA-Merlin/Merlin
 > git --version # timeout=10
using GIT_ASKPASS to set credentials login for merlin-systems
 > git fetch --tags --force --progress -- https://github.com/NVIDIA-Merlin/Merlin +refs/pull/577/*:refs/remotes/origin/pr/577/* # timeout=10
 > git rev-parse 6ea49e34aa2735b7cfe830deed9f13d7a775cc04^{commit} # timeout=10
Checking out Revision 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 # timeout=10
Commit message: "fix test examples in unit and int"
 > git rev-list --no-walk 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 # timeout=10
[merlin_merlin] $ /bin/bash /tmp/jenkins15052005584185564176.sh
============================= test session starts ==============================
platform linux -- Python 3.8.10, pytest-7.1.2, pluggy-1.0.0
rootdir: /var/jenkins_home/workspace/merlin_merlin/merlin
plugins: anyio-3.6.1, xdist-2.5.0, forked-1.4.0, cov-3.0.0
collected 3 items

tests/unit/test_version.py . [ 33%]
tests/unit/examples/test_building_deploying_multi_stage_RecSys.py F [ 66%]
tests/unit/examples/test_scaling_criteo_merlin_models.py . [100%]

=================================== FAILURES ===================================
__________________________________ test_func ___________________________________

def test_func():
    with testbook(
        REPO_ROOT
        / "examples"
        / "Building-and-deploying-multi-stage-RecSys"
        / "01-Building-Recommender-Systems-with-Merlin.ipynb",
        execute=False,
    ) as tb1:
        tb1.inject(
            """
            import os
            os.environ["DATA_FOLDER"] = "/tmp/data/"
            os.environ["NUM_ROWS"] = "10000"
            os.system("mkdir -p /tmp/examples")
            os.environ["BASE_DIR"] = "/tmp/examples/"
            """
        )
        tb1.execute()
        assert os.path.isdir("/tmp/examples/dlrm")
        assert os.path.isdir("/tmp/examples/feature_repo")
        assert os.path.isdir("/tmp/examples/query_tower")
        assert os.path.isfile("/tmp/examples/item_embeddings.parquet")
        assert os.path.isfile("/tmp/examples/feature_repo/user_features.py")
        assert os.path.isfile("/tmp/examples/feature_repo/item_features.py")

    with testbook(
        REPO_ROOT
        / "examples"
        / "Building-and-deploying-multi-stage-RecSys"
        / "02-Deploying-multi-stage-RecSys-with-Merlin-Systems.ipynb",
        execute=False,
    ) as tb2:
        tb2.inject(
            """
            import os
            os.environ["DATA_FOLDER"] = "/tmp/data/"
            os.environ["BASE_DIR"] = "/tmp/examples/"
            """
        )
        NUM_OF_CELLS = len(tb2.cells)
        tb2.execute_cell(list(range(0, NUM_OF_CELLS - 3)))
        top_k = tb2.ref("top_k")
        outputs = tb2.ref("outputs")
        assert outputs[0] == "ordered_ids"

        df_lib = get_lib()

        # read in data for request
        batch = df_lib.read_parquet(
            os.path.join("/tmp/data/processed/retrieval/", "train", "part_0.parquet"),
            num_rows=1,
            columns=["user_id"],
        )
        configure_tensorflow()
      response = run_ensemble_on_tritonserver(
            "/tmp/examples/poc_ensemble/", outputs, batch, "ensemble_model"
        )

tests/unit/examples/test_building_deploying_multi_stage_RecSys.py:74:


/usr/local/lib/python3.8/dist-packages/merlin/systems/triton/utils.py:130: in run_ensemble_on_tritonserver
response = send_triton_request(df, output_columns, client=client, triton_model=model_name)
/usr/local/lib/python3.8/dist-packages/merlin/systems/triton/utils.py:178: in send_triton_request
response = client.infer(triton_model, inputs, request_id=request_id, outputs=outputs)
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/init.py:1322: in infer
raise_error_grpc(rpc_error)


rpc_error = <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INTERNAL
details = "in ensemble 'ensemble_model'... 309 in transform>]"\n\nAt:\n /tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute\n","grpc_status":13}"

def raise_error_grpc(rpc_error):
  raise get_error_grpc(rpc_error) from None

E tritonclient.utils.InferenceServerException: [StatusCode.INTERNAL] in ensemble 'ensemble_model', Failed to process the request(s) for model instance '3_queryfeast', message: TypeError: init(): incompatible constructor arguments. The following argument types are supported:
E 1. c_python_backend_utils.InferenceResponse(output_tensors: List[c_python_backend_utils.Tensor], error: c_python_backend_utils.TritonError = None)
E
E Invoked with: kwargs: tensors=[], error="<class 'TypeError'>, int() argument must be a string, a bytes-like object or a number, not 'NoneType', [<FrameSummary file /tmp/examples/poc_ensemble/3_queryfeast/1/model.py, line 105 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/op_runner.py, line 54 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/ops/feast.py, line 309 in transform>]"
E
E At:
E /tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute

/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/init.py:62: InferenceServerException
----------------------------- Captured stdout call -----------------------------
Signal (2) received.
----------------------------- Captured stderr call -----------------------------
2022-08-30 16:57:49.000019: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:57:51.028452: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 1627 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0e:00.0, compute capability: 6.0
2022-08-30 16:57:51.029358: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:1 with 15153 MB memory: -> device: 1, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0f:00.0, compute capability: 6.0
Error in atexit._run_exitfuncs:
Traceback (most recent call last):
File "/usr/lib/python3.8/logging/init.py", line 2127, in shutdown
h.close()
File "/usr/local/lib/python3.8/dist-packages/absl/logging/init.py", line 934, in close
self.stream.close()
File "/usr/local/lib/python3.8/dist-packages/ipykernel/iostream.py", line 438, in close
self.watch_fd_thread.join()
AttributeError: 'OutStream' object has no attribute 'watch_fd_thread'
WARNING clustering 254 points to 32 centroids: please provide at least 1248 training points
2022-08-30 16:59:26.424486: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:59:28.466015: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 1627 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0e:00.0, compute capability: 6.0
2022-08-30 16:59:28.466759: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:1 with 15153 MB memory: -> device: 1, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0f:00.0, compute capability: 6.0
I0830 16:59:35.988285 8258 pinned_memory_manager.cc:240] Pinned memory pool is created at '0x7f65b4000000' with size 268435456
I0830 16:59:35.989011 8258 cuda_memory_manager.cc:105] CUDA memory pool is created on device 0 with size 67108864
I0830 16:59:35.996239 8258 model_repository_manager.cc:1191] loading: 1_predicttensorflow:1
I0830 16:59:36.096564 8258 model_repository_manager.cc:1191] loading: 0_queryfeast:1
I0830 16:59:36.196887 8258 model_repository_manager.cc:1191] loading: 2_queryfaiss:1
I0830 16:59:36.297192 8258 model_repository_manager.cc:1191] loading: 3_queryfeast:1
I0830 16:59:36.377898 8258 tensorflow.cc:2204] TRITONBACKEND_Initialize: tensorflow
I0830 16:59:36.377937 8258 tensorflow.cc:2214] Triton TRITONBACKEND API version: 1.10
I0830 16:59:36.377944 8258 tensorflow.cc:2220] 'tensorflow' TRITONBACKEND API version: 1.10
I0830 16:59:36.377950 8258 tensorflow.cc:2244] backend configuration:
{"cmdline":{"auto-complete-config":"false","backend-directory":"/opt/tritonserver/backends","min-compute-capability":"6.000000","version":"2","default-max-batch-size":"4"}}
I0830 16:59:36.377990 8258 tensorflow.cc:2310] TRITONBACKEND_ModelInitialize: 1_predicttensorflow (version 1)
I0830 16:59:36.383024 8258 tensorflow.cc:2359] TRITONBACKEND_ModelInstanceInitialize: 1_predicttensorflow (GPU device 0)
I0830 16:59:36.397506 8258 model_repository_manager.cc:1191] loading: 4_unrollfeatures:1
I0830 16:59:36.497815 8258 model_repository_manager.cc:1191] loading: 5_predicttensorflow:1
I0830 16:59:36.598126 8258 model_repository_manager.cc:1191] loading: 6_softmaxsampling:1
2022-08-30 16:59:36.745033: I tensorflow/cc/saved_model/reader.cc:43] Reading SavedModel from: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:59:36.749173: I tensorflow/cc/saved_model/reader.cc:81] Reading meta graph with tags { serve }
2022-08-30 16:59:36.749225: I tensorflow/cc/saved_model/reader.cc:122] Reading SavedModel debug info (if present) from: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:59:36.749315: I tensorflow/core/platform/cpu_feature_guard.cc:194] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: SSE3 SSE4.1 SSE4.2 AVX
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 16:59:36.796763: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 15150 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 16:59:36.828136: I tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc:354] MLIR V1 optimization pass is not enabled
2022-08-30 16:59:36.830401: I tensorflow/cc/saved_model/loader.cc:230] Restoring SavedModel bundle.
2022-08-30 16:59:36.912663: I tensorflow/cc/saved_model/loader.cc:214] Running initialization op on SavedModel bundle at path: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 16:59:36.946347: I tensorflow/cc/saved_model/loader.cc:321] SavedModel load for tags { serve }; Status: success: OK. Took 201333 microseconds.
I0830 16:59:36.946594 8258 model_repository_manager.cc:1345] successfully loaded '1_predicttensorflow' version 1
I0830 16:59:36.950466 8258 tensorflow.cc:2310] TRITONBACKEND_ModelInitialize: 5_predicttensorflow (version 1)
I0830 16:59:36.953004 8258 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 0_queryfeast (GPU device 0)
I0830 16:59:39.230832 8258 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 2_queryfaiss (GPU device 0)
I0830 16:59:39.232169 8258 model_repository_manager.cc:1345] successfully loaded '0_queryfeast' version 1
I0830 16:59:41.606462 8258 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 3_queryfeast (GPU device 0)
I0830 16:59:41.607384 8258 model_repository_manager.cc:1345] successfully loaded '2_queryfaiss' version 1
I0830 16:59:43.901984 8258 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 4_unrollfeatures (GPU device 0)
I0830 16:59:43.902095 8258 model_repository_manager.cc:1345] successfully loaded '3_queryfeast' version 1
I0830 16:59:45.952952 8258 tensorflow.cc:2359] TRITONBACKEND_ModelInstanceInitialize: 5_predicttensorflow (GPU device 0)
I0830 16:59:45.953175 8258 model_repository_manager.cc:1345] successfully loaded '4_unrollfeatures' version 1
2022-08-30 16:59:45.954487: I tensorflow/cc/saved_model/reader.cc:43] Reading SavedModel from: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:59:45.980609: I tensorflow/cc/saved_model/reader.cc:81] Reading meta graph with tags { serve }
2022-08-30 16:59:45.980655: I tensorflow/cc/saved_model/reader.cc:122] Reading SavedModel debug info (if present) from: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:59:45.982827: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 15150 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 16:59:46.011824: I tensorflow/cc/saved_model/loader.cc:230] Restoring SavedModel bundle.
2022-08-30 16:59:46.161757: I tensorflow/cc/saved_model/loader.cc:214] Running initialization op on SavedModel bundle at path: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 16:59:46.218051: I tensorflow/cc/saved_model/loader.cc:321] SavedModel load for tags { serve }; Status: success: OK. Took 263575 microseconds.
I0830 16:59:46.218211 8258 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 6_softmaxsampling (GPU device 0)
I0830 16:59:46.218288 8258 model_repository_manager.cc:1345] successfully loaded '5_predicttensorflow' version 1
I0830 16:59:48.273882 8258 model_repository_manager.cc:1345] successfully loaded '6_softmaxsampling' version 1
I0830 16:59:48.276954 8258 model_repository_manager.cc:1191] loading: ensemble_model:1
I0830 16:59:48.377749 8258 model_repository_manager.cc:1345] successfully loaded 'ensemble_model' version 1
I0830 16:59:48.377923 8258 server.cc:556]
+------------------+------+
| Repository Agent | Path |
+------------------+------+
+------------------+------+

I0830 16:59:48.378032 8258 server.cc:583]
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Backend | Path | Config |
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tensorflow | /opt/tritonserver/backends/tensorflow2/libtriton_tensorflow2.so | {"cmdline":{"auto-complete-config":"false","backend-directory":"/opt/tritonserver/backends","min-compute-capability":"6.000000","version":"2","default-max-batch-size":"4"}} |
| python | /opt/tritonserver/backends/python/libtriton_python.so | {"cmdline":{"auto-complete-config":"false","min-compute-capability":"6.000000","backend-directory":"/opt/tritonserver/backends","default-max-batch-size":"4"}} |
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

I0830 16:59:48.378149 8258 server.cc:626]
+---------------------+---------+--------+
| Model | Version | Status |
+---------------------+---------+--------+
| 0_queryfeast | 1 | READY |
| 1_predicttensorflow | 1 | READY |
| 2_queryfaiss | 1 | READY |
| 3_queryfeast | 1 | READY |
| 4_unrollfeatures | 1 | READY |
| 5_predicttensorflow | 1 | READY |
| 6_softmaxsampling | 1 | READY |
| ensemble_model | 1 | READY |
+---------------------+---------+--------+

I0830 16:59:48.442278 8258 metrics.cc:650] Collecting metrics for GPU 0: Tesla P100-DGXS-16GB
I0830 16:59:48.443139 8258 tritonserver.cc:2159]
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Option | Value |
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| server_id | triton |
| server_version | 2.23.0 |
| server_extensions | classification sequence model_repository model_repository(unload_dependents) schedule_policy model_configuration system_shared_memory cuda_shared_memory binary_tensor_data statistics trace |
| model_repository_path[0] | /tmp/examples/poc_ensemble/ |
| model_control_mode | MODE_NONE |
| strict_model_config | 1 |
| rate_limit | OFF |
| pinned_memory_pool_byte_size | 268435456 |
| cuda_memory_pool_byte_size{0} | 67108864 |
| response_cache_byte_size | 0 |
| min_supported_compute_capability | 6.0 |
| strict_readiness | 1 |
| exit_timeout | 30 |
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

E0830 16:59:48.443948421 8258 server_chttp2.cc:40] {"created":"@1661878788.443932775","description":"Only 1 addresses added out of total 2 resolved","file":"/tmp/tritonbuild/tritonserver/build/_deps/repo-third-party-build/grpc-repo/src/grpc/src/core/ext/transport/chttp2/server/chttp2_server.cc","file_line":403,"referenced_errors":[{"created":"@1661878788.443930817","description":"Address family not supported by protocol","errno":97,"file":"/tmp/tritonbuild/tritonserver/build/_deps/repo-third-party-build/grpc-repo/src/grpc/src/core/lib/iomgr/socket_utils_common_posix.cc","file_line":395,"os_error":"Address family not supported by protocol","syscall":"socket","target_address":"[::1]:8001"}]}
I0830 16:59:48.444344 8258 grpc_server.cc:4587] Started GRPCInferenceService at localhost:8001
I0830 16:59:48.444570 8258 http_server.cc:3303] Started HTTPService at 0.0.0.0:8000
I0830 16:59:48.485427 8258 http_server.cc:178] Started Metrics Service at 0.0.0.0:8002
W0830 16:59:49.470855 8258 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
W0830 16:59:50.471062 8258 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
W0830 16:59:51.490189 8258 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
0830 16:59:52.308034 8483 pb_stub.cc:776] Failed to process the request(s) for model '3_queryfeast', message: TypeError: init(): incompatible constructor arguments. The following argument types are supported:
1. c_python_backend_utils.InferenceResponse(output_tensors: List[c_python_backend_utils.Tensor], error: c_python_backend_utils.TritonError = None)

Invoked with: kwargs: tensors=[], error="<class 'TypeError'>, int() argument must be a string, a bytes-like object or a number, not 'NoneType', [<FrameSummary file /tmp/examples/poc_ensemble/3_queryfeast/1/model.py, line 105 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/op_runner.py, line 54 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/ops/feast.py, line 309 in transform>]"

At:
/tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute

I0830 16:59:52.309324 8258 server.cc:257] Waiting for in-flight requests to complete.
I0830 16:59:52.309370 8258 server.cc:273] Timeout 30: Found 0 model versions that have in-flight inferences
I0830 16:59:52.309389 8258 model_repository_manager.cc:1223] unloading: ensemble_model:1
I0830 16:59:52.309493 8258 model_repository_manager.cc:1223] unloading: 6_softmaxsampling:1
I0830 16:59:52.309558 8258 model_repository_manager.cc:1223] unloading: 5_predicttensorflow:1
I0830 16:59:52.309638 8258 model_repository_manager.cc:1223] unloading: 4_unrollfeatures:1
I0830 16:59:52.309650 8258 model_repository_manager.cc:1328] successfully unloaded 'ensemble_model' version 1
I0830 16:59:52.309711 8258 model_repository_manager.cc:1223] unloading: 3_queryfeast:1
I0830 16:59:52.309798 8258 tensorflow.cc:2397] TRITONBACKEND_ModelInstanceFinalize: delete instance state
I0830 16:59:52.309856 8258 model_repository_manager.cc:1223] unloading: 2_queryfaiss:1
I0830 16:59:52.309944 8258 model_repository_manager.cc:1223] unloading: 1_predicttensorflow:1
I0830 16:59:52.310017 8258 model_repository_manager.cc:1223] unloading: 0_queryfeast:1
I0830 16:59:52.310088 8258 server.cc:288] All models are stopped, unloading models
I0830 16:59:52.310138 8258 server.cc:295] Timeout 30: Found 7 live models and 0 in-flight non-inference requests
I0830 16:59:52.310142 8258 tensorflow.cc:2336] TRITONBACKEND_ModelFinalize: delete model state
I0830 16:59:52.310143 8258 tensorflow.cc:2397] TRITONBACKEND_ModelInstanceFinalize: delete instance state
I0830 16:59:52.310367 8258 tensorflow.cc:2336] TRITONBACKEND_ModelFinalize: delete model state
I0830 16:59:52.323186 8258 model_repository_manager.cc:1328] successfully unloaded '1_predicttensorflow' version 1
I0830 16:59:52.339526 8258 model_repository_manager.cc:1328] successfully unloaded '5_predicttensorflow' version 1
I0830 16:59:53.310437 8258 server.cc:295] Timeout 29: Found 5 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 16:59:53.841891 8258 model_repository_manager.cc:1328] successfully unloaded '2_queryfaiss' version 1
I0830 16:59:53.868178 8258 model_repository_manager.cc:1328] successfully unloaded '6_softmaxsampling' version 1
I0830 16:59:53.927163 8258 model_repository_manager.cc:1328] successfully unloaded '4_unrollfeatures' version 1
I0830 16:59:54.310646 8258 server.cc:295] Timeout 28: Found 2 live models and 0 in-flight non-inference requests
I0830 16:59:55.310786 8258 server.cc:295] Timeout 27: Found 2 live models and 0 in-flight non-inference requests
I0830 16:59:56.310923 8258 server.cc:295] Timeout 26: Found 2 live models and 0 in-flight non-inference requests
I0830 16:59:57.311062 8258 server.cc:295] Timeout 25: Found 2 live models and 0 in-flight non-inference requests
I0830 16:59:58.311200 8258 server.cc:295] Timeout 24: Found 2 live models and 0 in-flight non-inference requests
I0830 16:59:59.311381 8258 server.cc:295] Timeout 23: Found 2 live models and 0 in-flight non-inference requests
I0830 17:00:00.311520 8258 server.cc:295] Timeout 22: Found 2 live models and 0 in-flight non-inference requests
I0830 17:00:01.311656 8258 server.cc:295] Timeout 21: Found 2 live models and 0 in-flight non-inference requests
I0830 17:00:02.311793 8258 server.cc:295] Timeout 20: Found 2 live models and 0 in-flight non-inference requests
I0830 17:00:03.311927 8258 server.cc:295] Timeout 19: Found 2 live models and 0 in-flight non-inference requests
I0830 17:00:04.312071 8258 server.cc:295] Timeout 18: Found 2 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 17:00:05.030746 8258 model_repository_manager.cc:1328] successfully unloaded '0_queryfeast' version 1
I0830 17:00:05.312227 8258 server.cc:295] Timeout 17: Found 1 live models and 0 in-flight non-inference requests
I0830 17:00:06.312381 8258 server.cc:295] Timeout 16: Found 1 live models and 0 in-flight non-inference requests
I0830 17:00:07.312515 8258 server.cc:295] Timeout 15: Found 1 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 17:00:08.204960 8258 model_repository_manager.cc:1328] successfully unloaded '3_queryfeast' version 1
I0830 17:00:08.312643 8258 server.cc:295] Timeout 14: Found 0 live models and 0 in-flight non-inference requests
=============================== warnings summary ===============================
../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_INTEGERSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DOUBLESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_STRINGSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BUCKETSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DECIMALSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_TIMESTAMPSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BINARYSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_COLUMNSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33
/usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
DASK_VERSION = LooseVersion(dask.version)

../../../.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: 34 warnings
/var/jenkins_home/.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
other = LooseVersion(other)

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATATYPE = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE_SECONDARYDEVICEKIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINPUT_FORMAT = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHINPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHOUTPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELOPTIMIZATIONPOLICY_MODELPRIORITY = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELQUEUEPOLICY_TIMEOUTACTION = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELSEQUENCEBATCHING_CONTROL_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER_RESOURCE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/unit/examples/test_building_deploying_multi_stage_RecSys.py::test_func
============ 1 failed, 2 passed, 135 warnings in 255.41s (0:04:15) =============
Build step 'Execute shell' marked build as failure
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash
cd /var/jenkins_home/
CUDA_VISIBLE_DEVICES=1 python test_res_push.py "https://github.com/gitapi/repos/NVIDIA-Merlin/Merlin/issues/$ghprbPullId/comments" "/var/jenkins_home/jobs/$JOB_NAME/builds/$BUILD_NUMBER/log"
[merlin_merlin] $ /bin/bash /tmp/jenkins10934254446203165885.sh

@jperez999
Copy link
Collaborator Author

rerun tests

@nvidia-merlin-bot
Copy link
Contributor

Click to view CI Results
GitHub pull request #577 of commit 6ea49e34aa2735b7cfe830deed9f13d7a775cc04, no merge conflicts.
Running as SYSTEM
Setting status of 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 to PENDING with url https://10.20.13.93:8080/job/merlin_merlin/392/console and message: 'Pending'
Using context: Jenkins
Building on master in workspace /var/jenkins_home/workspace/merlin_merlin
using credential systems-login
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/NVIDIA-Merlin/Merlin # timeout=10
Fetching upstream changes from https://github.com/NVIDIA-Merlin/Merlin
 > git --version # timeout=10
using GIT_ASKPASS to set credentials login for merlin-systems
 > git fetch --tags --force --progress -- https://github.com/NVIDIA-Merlin/Merlin +refs/pull/577/*:refs/remotes/origin/pr/577/* # timeout=10
 > git rev-parse 6ea49e34aa2735b7cfe830deed9f13d7a775cc04^{commit} # timeout=10
Checking out Revision 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 # timeout=10
Commit message: "fix test examples in unit and int"
 > git rev-list --no-walk 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 # timeout=10
[merlin_merlin] $ /bin/bash /tmp/jenkins11777884499681204544.sh
============================= test session starts ==============================
platform linux -- Python 3.8.10, pytest-7.1.2, pluggy-1.0.0
rootdir: /var/jenkins_home/workspace/merlin_merlin/merlin
plugins: anyio-3.6.1, xdist-2.5.0, forked-1.4.0, cov-3.0.0
collected 3 items

tests/unit/test_version.py . [ 33%]
tests/unit/examples/test_building_deploying_multi_stage_RecSys.py F [ 66%]
tests/unit/examples/test_scaling_criteo_merlin_models.py . [100%]

=================================== FAILURES ===================================
__________________________________ test_func ___________________________________

def test_func():
    with testbook(
        REPO_ROOT
        / "examples"
        / "Building-and-deploying-multi-stage-RecSys"
        / "01-Building-Recommender-Systems-with-Merlin.ipynb",
        execute=False,
    ) as tb1:
        tb1.inject(
            """
            import os
            os.environ["DATA_FOLDER"] = "/tmp/data/"
            os.environ["NUM_ROWS"] = "10000"
            os.system("mkdir -p /tmp/examples")
            os.environ["BASE_DIR"] = "/tmp/examples/"
            """
        )
        tb1.execute()
        assert os.path.isdir("/tmp/examples/dlrm")
        assert os.path.isdir("/tmp/examples/feature_repo")
        assert os.path.isdir("/tmp/examples/query_tower")
        assert os.path.isfile("/tmp/examples/item_embeddings.parquet")
        assert os.path.isfile("/tmp/examples/feature_repo/user_features.py")
        assert os.path.isfile("/tmp/examples/feature_repo/item_features.py")

    with testbook(
        REPO_ROOT
        / "examples"
        / "Building-and-deploying-multi-stage-RecSys"
        / "02-Deploying-multi-stage-RecSys-with-Merlin-Systems.ipynb",
        execute=False,
    ) as tb2:
        tb2.inject(
            """
            import os
            os.environ["DATA_FOLDER"] = "/tmp/data/"
            os.environ["BASE_DIR"] = "/tmp/examples/"
            """
        )
        NUM_OF_CELLS = len(tb2.cells)
        tb2.execute_cell(list(range(0, NUM_OF_CELLS - 3)))
        top_k = tb2.ref("top_k")
        outputs = tb2.ref("outputs")
        assert outputs[0] == "ordered_ids"

        df_lib = get_lib()

        # read in data for request
        batch = df_lib.read_parquet(
            os.path.join("/tmp/data/processed/retrieval/", "train", "part_0.parquet"),
            num_rows=1,
            columns=["user_id"],
        )
        configure_tensorflow()
      response = run_ensemble_on_tritonserver(
            "/tmp/examples/poc_ensemble/", outputs, batch, "ensemble_model"
        )

tests/unit/examples/test_building_deploying_multi_stage_RecSys.py:74:


/usr/local/lib/python3.8/dist-packages/merlin/systems/triton/utils.py:130: in run_ensemble_on_tritonserver
response = send_triton_request(df, output_columns, client=client, triton_model=model_name)
/usr/local/lib/python3.8/dist-packages/merlin/systems/triton/utils.py:178: in send_triton_request
response = client.infer(triton_model, inputs, request_id=request_id, outputs=outputs)
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/init.py:1322: in infer
raise_error_grpc(rpc_error)


rpc_error = <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INTERNAL
details = "in ensemble 'ensemble_model'... 309 in transform>]"\n\nAt:\n /tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute\n","grpc_status":13}"

def raise_error_grpc(rpc_error):
  raise get_error_grpc(rpc_error) from None

E tritonclient.utils.InferenceServerException: [StatusCode.INTERNAL] in ensemble 'ensemble_model', Failed to process the request(s) for model instance '3_queryfeast', message: TypeError: init(): incompatible constructor arguments. The following argument types are supported:
E 1. c_python_backend_utils.InferenceResponse(output_tensors: List[c_python_backend_utils.Tensor], error: c_python_backend_utils.TritonError = None)
E
E Invoked with: kwargs: tensors=[], error="<class 'TypeError'>, int() argument must be a string, a bytes-like object or a number, not 'NoneType', [<FrameSummary file /tmp/examples/poc_ensemble/3_queryfeast/1/model.py, line 105 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/op_runner.py, line 54 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/ops/feast.py, line 309 in transform>]"
E
E At:
E /tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute

/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/init.py:62: InferenceServerException
----------------------------- Captured stdout call -----------------------------
Signal (2) received.
----------------------------- Captured stderr call -----------------------------
2022-08-30 17:02:53.893098: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 17:02:55.940165: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 1627 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0e:00.0, compute capability: 6.0
2022-08-30 17:02:55.940997: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:1 with 15153 MB memory: -> device: 1, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0f:00.0, compute capability: 6.0
Error in atexit._run_exitfuncs:
Traceback (most recent call last):
File "/usr/lib/python3.8/logging/init.py", line 2127, in shutdown
h.close()
File "/usr/local/lib/python3.8/dist-packages/absl/logging/init.py", line 934, in close
self.stream.close()
File "/usr/local/lib/python3.8/dist-packages/ipykernel/iostream.py", line 438, in close
self.watch_fd_thread.join()
AttributeError: 'OutStream' object has no attribute 'watch_fd_thread'
WARNING clustering 256 points to 32 centroids: please provide at least 1248 training points
2022-08-30 17:04:30.743494: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 17:04:32.776974: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 1627 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0e:00.0, compute capability: 6.0
2022-08-30 17:04:32.777741: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:1 with 15153 MB memory: -> device: 1, name: Tesla P100-DGXS-16GB, pci bus id: 0000:0f:00.0, compute capability: 6.0
I0830 17:04:40.342775 10201 pinned_memory_manager.cc:240] Pinned memory pool is created at '0x7f16b2000000' with size 268435456
I0830 17:04:40.343511 10201 cuda_memory_manager.cc:105] CUDA memory pool is created on device 0 with size 67108864
I0830 17:04:40.350934 10201 model_repository_manager.cc:1191] loading: 0_queryfeast:1
I0830 17:04:40.451247 10201 model_repository_manager.cc:1191] loading: 1_predicttensorflow:1
I0830 17:04:40.458532 10201 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 0_queryfeast (GPU device 0)
I0830 17:04:40.551631 10201 model_repository_manager.cc:1191] loading: 2_queryfaiss:1
I0830 17:04:40.651945 10201 model_repository_manager.cc:1191] loading: 3_queryfeast:1
I0830 17:04:40.752246 10201 model_repository_manager.cc:1191] loading: 4_unrollfeatures:1
I0830 17:04:40.852501 10201 model_repository_manager.cc:1191] loading: 5_predicttensorflow:1
I0830 17:04:40.952786 10201 model_repository_manager.cc:1191] loading: 6_softmaxsampling:1
I0830 17:04:42.756194 10201 model_repository_manager.cc:1345] successfully loaded '0_queryfeast' version 1
I0830 17:04:43.016619 10201 tensorflow.cc:2204] TRITONBACKEND_Initialize: tensorflow
I0830 17:04:43.016660 10201 tensorflow.cc:2214] Triton TRITONBACKEND API version: 1.10
I0830 17:04:43.016666 10201 tensorflow.cc:2220] 'tensorflow' TRITONBACKEND API version: 1.10
I0830 17:04:43.016672 10201 tensorflow.cc:2244] backend configuration:
{"cmdline":{"auto-complete-config":"false","backend-directory":"/opt/tritonserver/backends","min-compute-capability":"6.000000","version":"2","default-max-batch-size":"4"}}
I0830 17:04:43.016716 10201 tensorflow.cc:2310] TRITONBACKEND_ModelInitialize: 1_predicttensorflow (version 1)
I0830 17:04:43.020728 10201 tensorflow.cc:2310] TRITONBACKEND_ModelInitialize: 5_predicttensorflow (version 1)
I0830 17:04:43.021940 10201 tensorflow.cc:2359] TRITONBACKEND_ModelInstanceInitialize: 1_predicttensorflow (GPU device 0)
2022-08-30 17:04:43.390579: I tensorflow/cc/saved_model/reader.cc:43] Reading SavedModel from: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 17:04:43.394459: I tensorflow/cc/saved_model/reader.cc:81] Reading meta graph with tags { serve }
2022-08-30 17:04:43.394489: I tensorflow/cc/saved_model/reader.cc:122] Reading SavedModel debug info (if present) from: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 17:04:43.394587: I tensorflow/core/platform/cpu_feature_guard.cc:194] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: SSE3 SSE4.1 SSE4.2 AVX
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2022-08-30 17:04:43.445394: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 14897 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 17:04:43.476151: I tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc:354] MLIR V1 optimization pass is not enabled
2022-08-30 17:04:43.478200: I tensorflow/cc/saved_model/loader.cc:230] Restoring SavedModel bundle.
2022-08-30 17:04:43.559622: I tensorflow/cc/saved_model/loader.cc:214] Running initialization op on SavedModel bundle at path: /tmp/examples/poc_ensemble/1_predicttensorflow/1/model.savedmodel
2022-08-30 17:04:43.585213: I tensorflow/cc/saved_model/loader.cc:321] SavedModel load for tags { serve }; Status: success: OK. Took 194654 microseconds.
I0830 17:04:43.585333 10201 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 2_queryfaiss (GPU device 0)
I0830 17:04:43.585423 10201 model_repository_manager.cc:1345] successfully loaded '1_predicttensorflow' version 1
I0830 17:04:45.946306 10201 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 3_queryfeast (GPU device 0)
I0830 17:04:45.947893 10201 model_repository_manager.cc:1345] successfully loaded '2_queryfaiss' version 1
I0830 17:04:48.229307 10201 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 6_softmaxsampling (GPU device 0)
I0830 17:04:48.232204 10201 model_repository_manager.cc:1345] successfully loaded '3_queryfeast' version 1
I0830 17:04:50.325688 10201 python_be.cc:1774] TRITONBACKEND_ModelInstanceInitialize: 4_unrollfeatures (GPU device 0)
I0830 17:04:50.325799 10201 model_repository_manager.cc:1345] successfully loaded '6_softmaxsampling' version 1
I0830 17:04:52.423538 10201 tensorflow.cc:2359] TRITONBACKEND_ModelInstanceInitialize: 5_predicttensorflow (GPU device 0)
I0830 17:04:52.423697 10201 model_repository_manager.cc:1345] successfully loaded '4_unrollfeatures' version 1
2022-08-30 17:04:52.424466: I tensorflow/cc/saved_model/reader.cc:43] Reading SavedModel from: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 17:04:52.445512: I tensorflow/cc/saved_model/reader.cc:81] Reading meta graph with tags { serve }
2022-08-30 17:04:52.445561: I tensorflow/cc/saved_model/reader.cc:122] Reading SavedModel debug info (if present) from: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 17:04:52.447585: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1532] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 14897 MB memory: -> device: 0, name: Tesla P100-DGXS-16GB, pci bus id: 0000:07:00.0, compute capability: 6.0
2022-08-30 17:04:52.476707: I tensorflow/cc/saved_model/loader.cc:230] Restoring SavedModel bundle.
2022-08-30 17:04:52.627360: I tensorflow/cc/saved_model/loader.cc:214] Running initialization op on SavedModel bundle at path: /tmp/examples/poc_ensemble/5_predicttensorflow/1/model.savedmodel
2022-08-30 17:04:52.678455: I tensorflow/cc/saved_model/loader.cc:321] SavedModel load for tags { serve }; Status: success: OK. Took 254001 microseconds.
I0830 17:04:52.678682 10201 model_repository_manager.cc:1345] successfully loaded '5_predicttensorflow' version 1
I0830 17:04:52.681572 10201 model_repository_manager.cc:1191] loading: ensemble_model:1
I0830 17:04:52.782372 10201 model_repository_manager.cc:1345] successfully loaded 'ensemble_model' version 1
I0830 17:04:52.782531 10201 server.cc:556]
+------------------+------+
| Repository Agent | Path |
+------------------+------+
+------------------+------+

I0830 17:04:52.782626 10201 server.cc:583]
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Backend | Path | Config |
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| python | /opt/tritonserver/backends/python/libtriton_python.so | {"cmdline":{"auto-complete-config":"false","min-compute-capability":"6.000000","backend-directory":"/opt/tritonserver/backends","default-max-batch-size":"4"}} |
| tensorflow | /opt/tritonserver/backends/tensorflow2/libtriton_tensorflow2.so | {"cmdline":{"auto-complete-config":"false","backend-directory":"/opt/tritonserver/backends","min-compute-capability":"6.000000","version":"2","default-max-batch-size":"4"}} |
+------------+-----------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

I0830 17:04:52.782725 10201 server.cc:626]
+---------------------+---------+--------+
| Model | Version | Status |
+---------------------+---------+--------+
| 0_queryfeast | 1 | READY |
| 1_predicttensorflow | 1 | READY |
| 2_queryfaiss | 1 | READY |
| 3_queryfeast | 1 | READY |
| 4_unrollfeatures | 1 | READY |
| 5_predicttensorflow | 1 | READY |
| 6_softmaxsampling | 1 | READY |
| ensemble_model | 1 | READY |
+---------------------+---------+--------+

I0830 17:04:52.845397 10201 metrics.cc:650] Collecting metrics for GPU 0: Tesla P100-DGXS-16GB
I0830 17:04:52.846257 10201 tritonserver.cc:2159]
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Option | Value |
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| server_id | triton |
| server_version | 2.23.0 |
| server_extensions | classification sequence model_repository model_repository(unload_dependents) schedule_policy model_configuration system_shared_memory cuda_shared_memory binary_tensor_data statistics trace |
| model_repository_path[0] | /tmp/examples/poc_ensemble/ |
| model_control_mode | MODE_NONE |
| strict_model_config | 1 |
| rate_limit | OFF |
| pinned_memory_pool_byte_size | 268435456 |
| cuda_memory_pool_byte_size{0} | 67108864 |
| response_cache_byte_size | 0 |
| min_supported_compute_capability | 6.0 |
| strict_readiness | 1 |
| exit_timeout | 30 |
+----------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

E0830 17:04:52.847043641 10201 server_chttp2.cc:40] {"created":"@1661879092.847025714","description":"Only 1 addresses added out of total 2 resolved","file":"/tmp/tritonbuild/tritonserver/build/_deps/repo-third-party-build/grpc-repo/src/grpc/src/core/ext/transport/chttp2/server/chttp2_server.cc","file_line":403,"referenced_errors":[{"created":"@1661879092.847023742","description":"Address family not supported by protocol","errno":97,"file":"/tmp/tritonbuild/tritonserver/build/_deps/repo-third-party-build/grpc-repo/src/grpc/src/core/lib/iomgr/socket_utils_common_posix.cc","file_line":395,"os_error":"Address family not supported by protocol","syscall":"socket","target_address":"[::1]:8001"}]}
I0830 17:04:52.847390 10201 grpc_server.cc:4587] Started GRPCInferenceService at localhost:8001
I0830 17:04:52.847906 10201 http_server.cc:3303] Started HTTPService at 0.0.0.0:8000
I0830 17:04:52.889134 10201 http_server.cc:178] Started Metrics Service at 0.0.0.0:8002
W0830 17:04:53.869547 10201 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
W0830 17:04:54.869755 10201 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
W0830 17:04:55.896298 10201 metrics.cc:468] Unable to get energy consumption for GPU 0. Status:Success, value:0
0830 17:04:57.669091 10426 pb_stub.cc:776] Failed to process the request(s) for model '3_queryfeast', message: TypeError: init(): incompatible constructor arguments. The following argument types are supported:
1. c_python_backend_utils.InferenceResponse(output_tensors: List[c_python_backend_utils.Tensor], error: c_python_backend_utils.TritonError = None)

Invoked with: kwargs: tensors=[], error="<class 'TypeError'>, int() argument must be a string, a bytes-like object or a number, not 'NoneType', [<FrameSummary file /tmp/examples/poc_ensemble/3_queryfeast/1/model.py, line 105 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/op_runner.py, line 54 in execute>, <FrameSummary file /usr/local/lib/python3.8/dist-packages/merlin/systems/dag/ops/feast.py, line 309 in transform>]"

At:
/tmp/examples/poc_ensemble/3_queryfeast/1/model.py(122): execute

I0830 17:04:57.670385 10201 server.cc:257] Waiting for in-flight requests to complete.
I0830 17:04:57.670423 10201 server.cc:273] Timeout 30: Found 0 model versions that have in-flight inferences
I0830 17:04:57.670439 10201 model_repository_manager.cc:1223] unloading: ensemble_model:1
I0830 17:04:57.670525 10201 model_repository_manager.cc:1223] unloading: 6_softmaxsampling:1
I0830 17:04:57.670580 10201 model_repository_manager.cc:1223] unloading: 5_predicttensorflow:1
I0830 17:04:57.670641 10201 model_repository_manager.cc:1223] unloading: 4_unrollfeatures:1
I0830 17:04:57.670688 10201 model_repository_manager.cc:1223] unloading: 3_queryfeast:1
I0830 17:04:57.670684 10201 tensorflow.cc:2397] TRITONBACKEND_ModelInstanceFinalize: delete instance state
I0830 17:04:57.670727 10201 model_repository_manager.cc:1223] unloading: 2_queryfaiss:1
I0830 17:04:57.670723 10201 model_repository_manager.cc:1328] successfully unloaded 'ensemble_model' version 1
I0830 17:04:57.670769 10201 tensorflow.cc:2336] TRITONBACKEND_ModelFinalize: delete model state
I0830 17:04:57.670816 10201 model_repository_manager.cc:1223] unloading: 1_predicttensorflow:1
I0830 17:04:57.670882 10201 model_repository_manager.cc:1223] unloading: 0_queryfeast:1
I0830 17:04:57.670933 10201 server.cc:288] All models are stopped, unloading models
I0830 17:04:57.670960 10201 server.cc:295] Timeout 30: Found 7 live models and 0 in-flight non-inference requests
I0830 17:04:57.671052 10201 tensorflow.cc:2397] TRITONBACKEND_ModelInstanceFinalize: delete instance state
I0830 17:04:57.671139 10201 tensorflow.cc:2336] TRITONBACKEND_ModelFinalize: delete model state
I0830 17:04:57.682956 10201 model_repository_manager.cc:1328] successfully unloaded '1_predicttensorflow' version 1
I0830 17:04:57.688897 10201 model_repository_manager.cc:1328] successfully unloaded '5_predicttensorflow' version 1
I0830 17:04:58.671082 10201 server.cc:295] Timeout 29: Found 5 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 17:04:59.101869 10201 model_repository_manager.cc:1328] successfully unloaded '2_queryfaiss' version 1
I0830 17:04:59.161466 10201 model_repository_manager.cc:1328] successfully unloaded '4_unrollfeatures' version 1
I0830 17:04:59.186927 10201 model_repository_manager.cc:1328] successfully unloaded '6_softmaxsampling' version 1
I0830 17:04:59.671232 10201 server.cc:295] Timeout 28: Found 2 live models and 0 in-flight non-inference requests
I0830 17:05:00.671369 10201 server.cc:295] Timeout 27: Found 2 live models and 0 in-flight non-inference requests
I0830 17:05:01.671510 10201 server.cc:295] Timeout 26: Found 2 live models and 0 in-flight non-inference requests
I0830 17:05:02.671647 10201 server.cc:295] Timeout 25: Found 2 live models and 0 in-flight non-inference requests
I0830 17:05:03.671835 10201 server.cc:295] Timeout 24: Found 2 live models and 0 in-flight non-inference requests
I0830 17:05:04.671977 10201 server.cc:295] Timeout 23: Found 2 live models and 0 in-flight non-inference requests
I0830 17:05:05.672133 10201 server.cc:295] Timeout 22: Found 2 live models and 0 in-flight non-inference requests
I0830 17:05:06.672266 10201 server.cc:295] Timeout 21: Found 2 live models and 0 in-flight non-inference requests
I0830 17:05:07.672403 10201 server.cc:295] Timeout 20: Found 2 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 17:05:08.088142 10201 model_repository_manager.cc:1328] successfully unloaded '0_queryfeast' version 1
I0830 17:05:08.672542 10201 server.cc:295] Timeout 19: Found 1 live models and 0 in-flight non-inference requests
I0830 17:05:09.672679 10201 server.cc:295] Timeout 18: Found 1 live models and 0 in-flight non-inference requests
I0830 17:05:10.672817 10201 server.cc:295] Timeout 17: Found 1 live models and 0 in-flight non-inference requests
/usr/lib/python3/dist-packages/requests/init.py:89: RequestsDependencyWarning: urllib3 (1.26.11) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
I0830 17:05:10.983073 10201 model_repository_manager.cc:1328] successfully unloaded '3_queryfeast' version 1
I0830 17:05:11.672953 10201 server.cc:295] Timeout 16: Found 0 live models and 0 in-flight non-inference requests
=============================== warnings summary ===============================
../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_INTEGERSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DOUBLESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_STRINGSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BUCKETSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DECIMALSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_TIMESTAMPSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BINARYSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_COLUMNSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33
/usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
DASK_VERSION = LooseVersion(dask.version)

../../../.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: 34 warnings
/var/jenkins_home/.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
other = LooseVersion(other)

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATATYPE = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE_SECONDARYDEVICEKIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINPUT_FORMAT = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHINPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHOUTPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELOPTIMIZATIONPOLICY_MODELPRIORITY = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELQUEUEPOLICY_TIMEOUTACTION = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELSEQUENCEBATCHING_CONTROL_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER_RESOURCE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/unit/examples/test_building_deploying_multi_stage_RecSys.py::test_func
============ 1 failed, 2 passed, 135 warnings in 253.31s (0:04:13) =============
Build step 'Execute shell' marked build as failure
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash
cd /var/jenkins_home/
CUDA_VISIBLE_DEVICES=1 python test_res_push.py "https://github.com/gitapi/repos/NVIDIA-Merlin/Merlin/issues/$ghprbPullId/comments" "/var/jenkins_home/jobs/$JOB_NAME/builds/$BUILD_NUMBER/log"
[merlin_merlin] $ /bin/bash /tmp/jenkins16363616217577015117.sh

@nvidia-merlin-bot
Copy link
Contributor

Click to view CI Results
GitHub pull request #577 of commit f9eefe39e5758da4e189491e4c4257ec5cddb88f, no merge conflicts.
Running as SYSTEM
Setting status of f9eefe39e5758da4e189491e4c4257ec5cddb88f to PENDING with url https://10.20.13.93:8080/job/merlin_merlin/393/console and message: 'Pending'
Using context: Jenkins
Building on master in workspace /var/jenkins_home/workspace/merlin_merlin
using credential systems-login
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/NVIDIA-Merlin/Merlin # timeout=10
Fetching upstream changes from https://github.com/NVIDIA-Merlin/Merlin
 > git --version # timeout=10
using GIT_ASKPASS to set credentials login for merlin-systems
 > git fetch --tags --force --progress -- https://github.com/NVIDIA-Merlin/Merlin +refs/pull/577/*:refs/remotes/origin/pr/577/* # timeout=10
 > git rev-parse f9eefe39e5758da4e189491e4c4257ec5cddb88f^{commit} # timeout=10
Checking out Revision f9eefe39e5758da4e189491e4c4257ec5cddb88f (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f f9eefe39e5758da4e189491e4c4257ec5cddb88f # timeout=10
Commit message: "adding skip to unit test because of randomly generated data"
 > git rev-list --no-walk 6ea49e34aa2735b7cfe830deed9f13d7a775cc04 # timeout=10
[merlin_merlin] $ /bin/bash /tmp/jenkins2129144988119244482.sh
============================= test session starts ==============================
platform linux -- Python 3.8.10, pytest-7.1.2, pluggy-1.0.0
rootdir: /var/jenkins_home/workspace/merlin_merlin/merlin
plugins: anyio-3.6.1, xdist-2.5.0, forked-1.4.0, cov-3.0.0
collected 3 items

tests/unit/test_version.py . [ 33%]
tests/unit/examples/test_building_deploying_multi_stage_RecSys.py s [ 66%]
tests/unit/examples/test_scaling_criteo_merlin_models.py . [100%]

=============================== warnings summary ===============================
../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:37: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:44: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:51: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:30: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_INTEGERSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:82: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:89: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:96: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:75: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DOUBLESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:127: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:134: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:141: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:120: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_STRINGSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:172: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:165: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BUCKETSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:203: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:210: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:217: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:196: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DECIMALSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:248: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:255: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:241: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATESTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:286: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:293: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:300: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:307: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:279: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_TIMESTAMPSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:338: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:331: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BINARYSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:369: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:376: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:383: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:390: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:397: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:404: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:411: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:418: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:425: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:432: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362
/usr/local/lib/python3.8/dist-packages/cudf/utils/metadata/orc_column_statistics_pb2.py:362: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_COLUMNSTATISTICS = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33
/usr/local/lib/python3.8/dist-packages/dask_cudf/core.py:33: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
DASK_VERSION = LooseVersion(dask.version)

../../../.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: 34 warnings
/var/jenkins_home/.local/lib/python3.8/site-packages/setuptools/_distutils/version.py:346: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
other = LooseVersion(other)

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:19: DeprecationWarning: Call to deprecated create function FileDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
DESCRIPTOR = _descriptor.FileDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:33: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:37: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:41: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:45: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:49: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:53: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:57: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:61: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:65: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:69: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:73: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:77: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:81: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:85: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:89: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:27: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_DATATYPE = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:125: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:119: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE_SECONDARYDEVICEKIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:143: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:147: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:151: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:155: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:137: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:173: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:177: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:181: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:167: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINPUT_FORMAT = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:199: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:203: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:207: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:211: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:215: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:219: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:193: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHINPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:237: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:231: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_BATCHOUTPUT_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:255: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:259: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:263: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:249: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELOPTIMIZATIONPOLICY_MODELPRIORITY = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:281: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:285: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:275: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELQUEUEPOLICY_TIMEOUTACTION = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:303: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:307: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:311: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:315: DeprecationWarning: Call to deprecated create function EnumValueDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.EnumValueDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:297: DeprecationWarning: Call to deprecated create function EnumDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELSEQUENCEBATCHING_CONTROL_KIND = _descriptor.EnumDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:335: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:342: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:349: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:328: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER_RESOURCE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:379: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:386: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:372: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELRATELIMITER = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:417: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:424: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:410: DeprecationWarning: Call to deprecated create function Descriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_MODELINSTANCEGROUP_SECONDARYDEVICE = _descriptor.Descriptor(

../../../../../usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455
/usr/local/lib/python3.8/dist-packages/tritonclient/grpc/model_config_pb2.py:455: DeprecationWarning: Call to deprecated create function FieldDescriptor(). Note: Create unlinked descriptors is going to go away. Please use get/find descriptors from generated code or query the descriptor_pool.
_descriptor.FieldDescriptor(

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
============ 2 passed, 1 skipped, 135 warnings in 109.54s (0:01:49) ============
Performing Post build task...
Match found for : : True
Logical operation result is TRUE
Running script : #!/bin/bash
cd /var/jenkins_home/
CUDA_VISIBLE_DEVICES=1 python test_res_push.py "https://github.com/gitapi/repos/NVIDIA-Merlin/Merlin/issues/$ghprbPullId/comments" "/var/jenkins_home/jobs/$JOB_NAME/builds/$BUILD_NUMBER/log"
[merlin_merlin] $ /bin/bash /tmp/jenkins27873102978142104.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
chore Infrastructure update ci
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants