Lookout for Vision Greengrass component failing to start

I packaged my lookout for vision model into a greengrass component and I am deploying it to my Jetson Xavier AGX. I have deployed this model to this same machine successfully in the past but IT recently wiped it and am running into the following issue. Note that IT did set up a bunch of security stuff so maybe something is messing with the gcc_user/gcc_group?

From the AWS documentation, I borrowed this function.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>def start_model_if_needed(stub, model_name):
# Starting model if needed.
while True:
model_description_response = stub.DescribeModel(pb2.DescribeModelRequest(model_component=model_name))
print(f"DescribeModel() returned {model_description_response}")
if model_description_response.model_description.status == pb2.RUNNING:
print("Model is already running.")
break
elif model_description_response.model_description.status == pb2.STOPPED:
print("Starting the model.")
stub.StartModel(pb2.StartModelRequest(model_component=model_name))
continue
elif model_description_response.model_description.status == pb2.FAILED:
raise Exception(f"model {model_name} failed to start")
print(f"Waiting for model to start.")
if model_description_response.model_description.status != pb2.STARTING:
break
time.sleep(1.0)
</code>
<code>def start_model_if_needed(stub, model_name): # Starting model if needed. while True: model_description_response = stub.DescribeModel(pb2.DescribeModelRequest(model_component=model_name)) print(f"DescribeModel() returned {model_description_response}") if model_description_response.model_description.status == pb2.RUNNING: print("Model is already running.") break elif model_description_response.model_description.status == pb2.STOPPED: print("Starting the model.") stub.StartModel(pb2.StartModelRequest(model_component=model_name)) continue elif model_description_response.model_description.status == pb2.FAILED: raise Exception(f"model {model_name} failed to start") print(f"Waiting for model to start.") if model_description_response.model_description.status != pb2.STARTING: break time.sleep(1.0) </code>
def start_model_if_needed(stub, model_name):
    # Starting model if needed.
    while True:
        model_description_response = stub.DescribeModel(pb2.DescribeModelRequest(model_component=model_name))
        print(f"DescribeModel() returned {model_description_response}")
        if model_description_response.model_description.status == pb2.RUNNING:
            print("Model is already running.")
            break
        elif model_description_response.model_description.status == pb2.STOPPED:
            print("Starting the model.")
            stub.StartModel(pb2.StartModelRequest(model_component=model_name))
            continue
        elif model_description_response.model_description.status == pb2.FAILED:
            raise Exception(f"model {model_name} failed to start")

        print(f"Waiting for model to start.")
        if model_description_response.model_description.status != pb2.STARTING:
            break
        time.sleep(1.0)

However, I am seeing this output when I run it:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>DescribeModel() returned model_description {
model_component: "[ModelName]"
lookout_vision_model_arn: "..."
status: FAILED
status_message: "Model failed with unknown reason."
}
</code>
<code>DescribeModel() returned model_description { model_component: "[ModelName]" lookout_vision_model_arn: "..." status: FAILED status_message: "Model failed with unknown reason." } </code>
DescribeModel() returned model_description {
  model_component: "[ModelName]"
  lookout_vision_model_arn: "..."
  status: FAILED
  status_message: "Model failed with unknown reason."
}

Here is my /greengrass/v2/logs/aws.iot.lookoutvision.EdgeAgent.log

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>2024-09-21T08:31:35.939Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. File "/greengrass/v2/work/aws.iot.lookoutvision.EdgeAgent/env/lib/python3.8/site-packages/dlr/api.py", line 88, in __init__. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.939Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. raise ex. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.940Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. File "/greengrass/v2/work/aws.iot.lookoutvision.EdgeAgent/env/lib/python3.8/site-packages/dlr/api.py", line 85, in __init__. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.940Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. self._impl = DLRModelImpl(model_path, dev_type, dev_id, error_log_file, use_default_dlr). {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.940Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. File "/greengrass/v2/work/aws.iot.lookoutvision.EdgeAgent/env/lib/python3.8/site-packages/dlr/dlr_model.py", line 79, in __init__. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.940Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. self._check_call(self._lib.CreateDLRModel(byref(self.handle),. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.941Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. File "/greengrass/v2/work/aws.iot.lookoutvision.EdgeAgent/env/lib/python3.8/site-packages/dlr/dlr_model.py", line 160, in _check_call. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.941Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. raise DLRError(self._lib.DLRGetLastError().decode('ascii')). {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.941Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. dlr.dlr_model.DLRError. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.941Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
</code>
<code>2024-09-21T08:31:35.939Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. File "/greengrass/v2/work/aws.iot.lookoutvision.EdgeAgent/env/lib/python3.8/site-packages/dlr/api.py", line 88, in __init__. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING} 2024-09-21T08:31:35.939Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. raise ex. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING} 2024-09-21T08:31:35.940Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. File "/greengrass/v2/work/aws.iot.lookoutvision.EdgeAgent/env/lib/python3.8/site-packages/dlr/api.py", line 85, in __init__. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING} 2024-09-21T08:31:35.940Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. self._impl = DLRModelImpl(model_path, dev_type, dev_id, error_log_file, use_default_dlr). {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING} 2024-09-21T08:31:35.940Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. File "/greengrass/v2/work/aws.iot.lookoutvision.EdgeAgent/env/lib/python3.8/site-packages/dlr/dlr_model.py", line 79, in __init__. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING} 2024-09-21T08:31:35.940Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. self._check_call(self._lib.CreateDLRModel(byref(self.handle),. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING} 2024-09-21T08:31:35.941Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. File "/greengrass/v2/work/aws.iot.lookoutvision.EdgeAgent/env/lib/python3.8/site-packages/dlr/dlr_model.py", line 160, in _check_call. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING} 2024-09-21T08:31:35.941Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. raise DLRError(self._lib.DLRGetLastError().decode('ascii')). {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING} 2024-09-21T08:31:35.941Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. dlr.dlr_model.DLRError. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING} 2024-09-21T08:31:35.941Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING} </code>
2024-09-21T08:31:35.939Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. File "/greengrass/v2/work/aws.iot.lookoutvision.EdgeAgent/env/lib/python3.8/site-packages/dlr/api.py", line 88, in __init__. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.939Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. raise ex. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.940Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. File "/greengrass/v2/work/aws.iot.lookoutvision.EdgeAgent/env/lib/python3.8/site-packages/dlr/api.py", line 85, in __init__. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.940Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. self._impl = DLRModelImpl(model_path, dev_type, dev_id, error_log_file, use_default_dlr). {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.940Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. File "/greengrass/v2/work/aws.iot.lookoutvision.EdgeAgent/env/lib/python3.8/site-packages/dlr/dlr_model.py", line 79, in __init__. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.940Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. self._check_call(self._lib.CreateDLRModel(byref(self.handle),. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.941Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. File "/greengrass/v2/work/aws.iot.lookoutvision.EdgeAgent/env/lib/python3.8/site-packages/dlr/dlr_model.py", line 160, in _check_call. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.941Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. raise DLRError(self._lib.DLRGetLastError().decode('ascii')). {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.941Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. dlr.dlr_model.DLRError. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}
2024-09-21T08:31:35.941Z [WARN] (Copier) aws.iot.lookoutvision.EdgeAgent: stderr. {scriptName=services.aws.iot.lookoutvision.EdgeAgent.lifecycle.run.script, serviceName=aws.iot.lookoutvision.EdgeAgent, currentState=RUNNING}

And here is my /greengrass/v2/logs/[ModelName].log

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>2024-09-21T08:14:14.518Z [WARN] (Copier) [ModelName]: stderr. raise _InactiveRpcError(state). {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:14.518Z [WARN] (Copier) [ModelName]: stderr. grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:14.519Z [WARN] (Copier) [ModelName]: stderr. status = StatusCode.UNAVAILABLE. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:14.519Z [WARN] (Copier) [ModelName]: stderr. details = "failed to connect to all addresses". {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:14.519Z [WARN] (Copier) [ModelName]: stderr. debug_error_string = "{"created":"@1726906454.511841809","description":"Failed to pick subchannel","file":"src/core/ext/filters/client_channel/client_channel.cc","file_line":3134,"referenced_errors":[{"created":"@1726906454.511839313","description":"failed to connect to all addresses","file":"src/core/lib/transport/error_utils.cc","file_line":163,"grpc_status":14}]}". {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:14.519Z [WARN] (Copier) [ModelName]: stderr. >. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:17.143Z [WARN] (Copier) [ModelName]: stderr. pid-21123 thread-548325888016 - [INFO]: Creating model info.. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:17.145Z [WARN] (Copier) [ModelName]: stderr. pid-21123 thread-548325888016 - [INFO]: Registering model LyraModel(model_component_name='[ModelName]', lyra_model_arn='arn...', model_asset_path='/greengrass/v2/packages/artifacts/[ModelName]/2.0.1/greengrass_model_component.zip').. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:17.149Z [WARN] (Copier) [ModelName]: stderr. pid-21123 thread-548325888016 - [INFO]: Model registered.. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:17.215Z [INFO] (Copier) [ModelName]: Startup script exited. {exitCode=0, serviceName=[ModelName], currentState=STARTING}
</code>
<code>2024-09-21T08:14:14.518Z [WARN] (Copier) [ModelName]: stderr. raise _InactiveRpcError(state). {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING} 2024-09-21T08:14:14.518Z [WARN] (Copier) [ModelName]: stderr. grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING} 2024-09-21T08:14:14.519Z [WARN] (Copier) [ModelName]: stderr. status = StatusCode.UNAVAILABLE. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING} 2024-09-21T08:14:14.519Z [WARN] (Copier) [ModelName]: stderr. details = "failed to connect to all addresses". {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING} 2024-09-21T08:14:14.519Z [WARN] (Copier) [ModelName]: stderr. debug_error_string = "{"created":"@1726906454.511841809","description":"Failed to pick subchannel","file":"src/core/ext/filters/client_channel/client_channel.cc","file_line":3134,"referenced_errors":[{"created":"@1726906454.511839313","description":"failed to connect to all addresses","file":"src/core/lib/transport/error_utils.cc","file_line":163,"grpc_status":14}]}". {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING} 2024-09-21T08:14:14.519Z [WARN] (Copier) [ModelName]: stderr. >. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING} 2024-09-21T08:14:17.143Z [WARN] (Copier) [ModelName]: stderr. pid-21123 thread-548325888016 - [INFO]: Creating model info.. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING} 2024-09-21T08:14:17.145Z [WARN] (Copier) [ModelName]: stderr. pid-21123 thread-548325888016 - [INFO]: Registering model LyraModel(model_component_name='[ModelName]', lyra_model_arn='arn...', model_asset_path='/greengrass/v2/packages/artifacts/[ModelName]/2.0.1/greengrass_model_component.zip').. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING} 2024-09-21T08:14:17.149Z [WARN] (Copier) [ModelName]: stderr. pid-21123 thread-548325888016 - [INFO]: Model registered.. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING} 2024-09-21T08:14:17.215Z [INFO] (Copier) [ModelName]: Startup script exited. {exitCode=0, serviceName=[ModelName], currentState=STARTING} </code>
2024-09-21T08:14:14.518Z [WARN] (Copier) [ModelName]: stderr. raise _InactiveRpcError(state). {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:14.518Z [WARN] (Copier) [ModelName]: stderr. grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:14.519Z [WARN] (Copier) [ModelName]: stderr. status = StatusCode.UNAVAILABLE. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:14.519Z [WARN] (Copier) [ModelName]: stderr. details = "failed to connect to all addresses". {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:14.519Z [WARN] (Copier) [ModelName]: stderr. debug_error_string = "{"created":"@1726906454.511841809","description":"Failed to pick subchannel","file":"src/core/ext/filters/client_channel/client_channel.cc","file_line":3134,"referenced_errors":[{"created":"@1726906454.511839313","description":"failed to connect to all addresses","file":"src/core/lib/transport/error_utils.cc","file_line":163,"grpc_status":14}]}". {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:14.519Z [WARN] (Copier) [ModelName]: stderr. >. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:17.143Z [WARN] (Copier) [ModelName]: stderr. pid-21123 thread-548325888016 - [INFO]: Creating model info.. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:17.145Z [WARN] (Copier) [ModelName]: stderr. pid-21123 thread-548325888016 - [INFO]: Registering model LyraModel(model_component_name='[ModelName]', lyra_model_arn='arn...', model_asset_path='/greengrass/v2/packages/artifacts/[ModelName]/2.0.1/greengrass_model_component.zip').. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:17.149Z [WARN] (Copier) [ModelName]: stderr. pid-21123 thread-548325888016 - [INFO]: Model registered.. {scriptName=services.[ModelName].lifecycle.Startup.Script, serviceName=[ModelName], currentState=STARTING}
2024-09-21T08:14:17.215Z [INFO] (Copier) [ModelName]: Startup script exited. {exitCode=0, serviceName=[ModelName], currentState=STARTING}

I’ve tried removing and recreating the greengrass core component and reinstalling the greengrass nucleus software. The only thing that I can think of is that the lookout for vision model is on us-east-2 while the greengrass component/core device are on us-east-1. Though it seems like I would have to redo all my annotations in order to get the model also on east-1…

My manager and I thank you for the help!!

New contributor

Boopi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật