You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What happened
: VM 추천 모델을 받기 위해 How to reproduce it (as minimally and precisely as possible)
: How to run and use the CM-Beetle 문서에 나온 샘플 Data로 {{baseUrl}}/recommendation/mci API를 호출 했습니다.
beetle의 api 응답 결과를 보면 실제 추천된 VM 정보는 없지만 에러 메시지는 없어서 정상 응답처럼 보이는데...
log 내용을 살펴 보면 추천할 모델이 없기 때문에 추천을 못 한 것으로 추정됩니다.
cm-beetle | 4:52AM WRN pkg/core/recommendation/recommendation.go:193 > no VM spec recommended for the inserted PM/VM with spec (cores: 18, memory (GiB): 244)
What you expected to happen
: 추천 모델 정보 또는 추전 모델이 없을 경우 추천할 VM이 없다는 내용이 있어야 할 것 같습니다.
{
"name": "mmci01",
"installMonAgent": "no",
"label": "rehosted-mci",
"systemLabel": "",
"description": "A cloud infra recommended by CM-Beetle",
"vm": []
}
아래는 로그 내용입니다.
cm-beetle | 2024/09/03 04:52:59.223126 WARN RESTY Using Basic Auth in HTTP mode is not secure, use HTTPS
cb-tumblebug | 4:52AM DBG src/core/infra/recommendation.go:111 > [Filtering specs]
cb-tumblebug | 4:52AM INF src/core/resource/spec.go:390 > Filtering by providerName: aws
cb-tumblebug | 4:52AM INF src/core/resource/spec.go:390 > Filtering by regionName: ap-northeast-2
cb-tumblebug | 4:52AM INF src/api/rest/server/middlewares/custom-middleware/custom-middleware.go:62 > request URI=/tumblebug/mciRecommendVm bytes_in=471 bytes_out=3 client_ip=172.18.0.14 id=1725339179225590647 latency_human=1.371202ms method=POST status=200
cm-beetle | 4:52AM WRN pkg/core/recommendation/recommendation.go:193 > no VM spec recommended for the inserted PM/VM with spec (cores: 18, memory (GiB): 244)
cm-beetle | 2024/09/03 04:52:59.229126 WARN RESTY Using Basic Auth in HTTP mode is not secure, use HTTPS
cb-tumblebug | 4:52AM DBG src/core/infra/recommendation.go:111 > [Filtering specs]
cb-tumblebug | 4:52AM INF src/core/resource/spec.go:390 > Filtering by providerName: aws
cb-tumblebug | 4:52AM INF src/core/resource/spec.go:390 > Filtering by regionName: ap-northeast-2
cb-tumblebug | 4:52AM INF src/api/rest/server/middlewares/custom-middleware/custom-middleware.go:62 > request URI=/tumblebug/mciRecommendVm bytes_in=471 bytes_out=3 client_ip=172.18.0.14 id=1725339179229545600 latency_human="936.566µs" method=POST status=200
cm-beetle | 4:52AM WRN pkg/core/recommendation/recommendation.go:193 > no VM spec recommended for the inserted PM/VM with spec (cores: 18, memory (GiB): 244)
cm-beetle | 4:52AM INF pkg/api/rest/middlewares/zerologger.go:56 > request URI=/beetle/recommendation/mci bytes_in=12845 bytes_out=144 id= latency_human=9.617665ms method=POST remote_ip=106.247.225.50 status=200
Environment
Source version or branch: edge
OS: docker container
Others:
docker 기반으로 테스트했으며 tumblebug에서 MCIS가 MCI로 변경되어서 9월 2일과 3일 기준 가장 최신 도커 이미지들로 진행했었습니다. Proposed solution
: 에러가 발생한 어제까지 테스트했을 때에는 cb-spider의 adminweb에서 등록된 데이터로만 테스트했었는데... 오늘 전체 데이터 파일을 삭제 후 텀블벅의 init.sh로 DB를 구축 후 테스트했더니 정상적으로 결과가 나옵니다.
MCI 추천 방식에서 텀블벅이 사용하는 커넥션들을 비롯한 리소스들의 네이밍 규칙 등의 종속성과 관련이 있다면 관련 가이드 보완이
필요해 보이며, 어제 테스트처럼 텀블벅에서 에러를 리턴 받았을 때 사용자에게는 정상적으로 응답되는 현상도 있기에 리포팅해 놓습니다.
Any other context
:
The text was updated successfully, but these errors were encountered:
추천할 모델이 없는 경우는 시스템 에러는 아닌 것이라 생각됩니다. 그래서 성공에 대한 상태 코드 200으로 응답하고자 합니다.
API 사용자가 추천된 모델이 없음을 확인하고 처리하는 방식을 지원하고자, Response Body에 Status 를 추가해둔 상태 입니다.
현재는 "none", "partial", "ok" 세 가지 상태가 지원됩니다.
Tumbleubug 초기 설정 (init/init.sh)은 Beetle 동작에 중요한 부분입니다. 향후 가이드를 확실히 보강해 놓도록 하겠습니다 :-)
What happened
: VM 추천 모델을 받기 위해 How to reproduce it (as minimally and precisely as possible)
: How to run and use the CM-Beetle 문서에 나온 샘플 Data로
{{baseUrl}}/recommendation/mci
API를 호출 했습니다.beetle의 api 응답 결과를 보면 실제 추천된 VM 정보는 없지만 에러 메시지는 없어서 정상 응답처럼 보이는데...
log 내용을 살펴 보면 추천할 모델이 없기 때문에 추천을 못 한 것으로 추정됩니다.
What you expected to happen
: 추천 모델 정보 또는 추전 모델이 없을 경우 추천할 VM이 없다는 내용이 있어야 할 것 같습니다.
Anything else we need to know?
:
아래는 Body Data입니다.
아래는 API 응답 결과입니다.
아래는 로그 내용입니다.
Environment
Source version or branch: edge
OS: docker container
Others:
docker 기반으로 테스트했으며 tumblebug에서 MCIS가 MCI로 변경되어서 9월 2일과 3일 기준 가장 최신 도커 이미지들로 진행했었습니다.
Proposed solution
: 에러가 발생한 어제까지 테스트했을 때에는 cb-spider의 adminweb에서 등록된 데이터로만 테스트했었는데...
오늘 전체 데이터 파일을 삭제 후 텀블벅의 init.sh로 DB를 구축 후 테스트했더니 정상적으로 결과가 나옵니다.
MCI 추천 방식에서 텀블벅이 사용하는 커넥션들을 비롯한 리소스들의 네이밍 규칙 등의 종속성과 관련이 있다면 관련 가이드 보완이
필요해 보이며, 어제 테스트처럼 텀블벅에서 에러를 리턴 받았을 때 사용자에게는 정상적으로 응답되는 현상도 있기에 리포팅해 놓습니다.
Any other context
:
The text was updated successfully, but these errors were encountered: