Amazon Redshift 일시중지/재개 Description은 어디에 표시됩니까?
소개
AWS의 Redshift는 중지/재개 작업을 일정으로 자동화할 수 있습니다.
콘솔에서 일정을 설정할 때 일정에 대한 설명을 추가 할 수 있습니다.
가능하지만, 어디에서 Description을 확인할 수 있는지 몰랐기 때문에, 찾아 보았습니다.
스케줄 설정
Description을 보는 것만 목적이므로, 설정은 적당하게 합니다.
아래의 빨간색 프레임의 기재 내용을 나중에 확인합니다.
설정 후 확인
Amazon Redshift > 클러스터 > 구성할 클러스터 > 스케줄(탭)
빨간색 테두리가 설정된 일정이지만 일정 이름 옆에 설명이 표시되지 않습니다.
그런 다음 설정한 일정의 "test-resume"을 클릭합니다. 다음 화면으로 이동합니다.
여기에도 표시되지 않습니다.
분명히 현재 콘솔에서 Description을 확인할 수없는 것 같습니다.
AWS CLI에서 확인
AWS CLI의 "describe-scheduled-actions"명령을 사용하여 확인할 수 있습니다.
"ScheduledActionDescription": "Scheduled pause and resume"가 표시됩니다.
$ aws redshift describe-scheduled-actions
{
"ScheduledActions": [
{
"ScheduledActionName": "test-pause",
"TargetAction": {
"PauseCluster": {
"ClusterIdentifier": "redshift-cluster-test"
}
},
"Schedule": "cron(00 00 * * ? *)",
"IamRole": "*****",
"ScheduledActionDescription": "Scheduled pause and resume",
"State": "ACTIVE",
"NextInvocations": [
"2020-08-02T00:00:00Z",
"2020-08-03T00:00:00Z",
"2020-08-04T00:00:00Z",
"2020-08-05T00:00:00Z",
"2020-08-06T00:00:00Z"
],
"StartTime": "2020-08-01T00:00:00Z"
},
{
"ScheduledActionName": "test-resume",
"TargetAction": {
"ResumeCluster": {
"ClusterIdentifier": "redshift-cluster-test"
}
},
"Schedule": "cron(00 23 * * ? *)",
"IamRole": "*****",
"ScheduledActionDescription": "Scheduled pause and resume",
"State": "ACTIVE",
"NextInvocations": [
"2020-08-01T23:00:00Z",
"2020-08-02T23:00:00Z",
"2020-08-03T23:00:00Z",
"2020-08-04T23:00:00Z",
"2020-08-05T23:00:00Z"
],
"StartTime": "2020-08-01T00:00:00Z"
}
]
}
Reference
이 문제에 관하여(Amazon Redshift 일시중지/재개 Description은 어디에 표시됩니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/latin1/items/4c3af88a012daeb22902
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
$ aws redshift describe-scheduled-actions
{
"ScheduledActions": [
{
"ScheduledActionName": "test-pause",
"TargetAction": {
"PauseCluster": {
"ClusterIdentifier": "redshift-cluster-test"
}
},
"Schedule": "cron(00 00 * * ? *)",
"IamRole": "*****",
"ScheduledActionDescription": "Scheduled pause and resume",
"State": "ACTIVE",
"NextInvocations": [
"2020-08-02T00:00:00Z",
"2020-08-03T00:00:00Z",
"2020-08-04T00:00:00Z",
"2020-08-05T00:00:00Z",
"2020-08-06T00:00:00Z"
],
"StartTime": "2020-08-01T00:00:00Z"
},
{
"ScheduledActionName": "test-resume",
"TargetAction": {
"ResumeCluster": {
"ClusterIdentifier": "redshift-cluster-test"
}
},
"Schedule": "cron(00 23 * * ? *)",
"IamRole": "*****",
"ScheduledActionDescription": "Scheduled pause and resume",
"State": "ACTIVE",
"NextInvocations": [
"2020-08-01T23:00:00Z",
"2020-08-02T23:00:00Z",
"2020-08-03T23:00:00Z",
"2020-08-04T23:00:00Z",
"2020-08-05T23:00:00Z"
],
"StartTime": "2020-08-01T00:00:00Z"
}
]
}
Reference
이 문제에 관하여(Amazon Redshift 일시중지/재개 Description은 어디에 표시됩니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/latin1/items/4c3af88a012daeb22902텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)