

Amazon Timestream for LiveAnalytics와 유사한 기능을 원하는 경우 Amazon Timestream for InfluxDB를 고려해 보세요. 간소화된 데이터 수집과 실시간 분석을 위한 10밀리초 미만의 쿼리 응답 시간을 제공합니다. [여기](https://docs.aws.amazon.com//timestream/latest/developerguide/timestream-for-influxdb.html)에서 자세히 알아보세요.

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# DB 인스턴스 업데이트
<a name="timestream-for-influx-managing-modifying-db"></a>

 Timestream for InfluxDB 인스턴스의 다음 구성 파라미터를 업데이트할 수 있습니다.
+ 인스턴스 클래스
+ 스토리지 유형
+ 할당된 스토리지(증가만 가능)
+ 배포 유형
+ 파라미터 그룹
+ 로그 전송 구성

**중요**  
특히 데이터베이스 버전을 업그레이드할 때 프로덕션 인스턴스를 수정하기 전에 테스트 인스턴스에서 모든 변경 사항을 테스트하여 그 영향을 파악하는 것이 좋습니다. 설정을 업데이트하기 전에 데이터베이스 및 애플리케이션에 미치는 영향을 확인하세요. 일부 수정 작업은 DB 인스턴스 재부팅이 필요하며, 이로 인해 가동 중지 시간이 발생합니다.

**사용 AWS Management Console**

1. 에 로그인 AWS Management Console 하고 [Amazon Timestream for InfluxDB 콘솔](https://console.aws.amazon.com/timestream/)을 엽니다.

1. 탐색 창에서 **InfluxDB 데이터베이스**를 선택한 다음 변경하려는 DB 인스턴스를 선택합니다.

1. **수정**을 선택합니다.

1. **DB 인스턴스 수정** 페이지에서 원하는 대로 변경합니다.

1. **계속**해서 수정 사항을 요약한 내용을 확인합니다.

1. **다음**을 선택합니다.

1. 변경 사항을 검토합니다.

1. **인스턴스 수정**을 선택하여 변경 사항을 적용합니다.

**참고**  
이러한 수정 작업은 Influx DB 인스턴스 재부팅이 필요하며 경우에 따라 중단이 발생할 수 있습니다.

**사용 AWS Command Line Interface**

를 사용하여 DB 인스턴스를 업데이트하려면 `update-db-instance` 명령을 AWS Command Line Interface호출합니다. DB 인스턴스 식별자와 수정하려는 옵션 값을 지정합니다. 각 옵션에 대한 자세한 내용은 [DB 인스턴스에 대한 설정](timestream-for-influx-configuring.md#timestream-for-influx-configuring-create-db-settings) 섹션을 참조하세요.

**Example 예제**  
 다음 코드는 다른 `db-parameter-group-name`을 설정하여 *my-db-instance*를 수정합니다. *user input placeholder*를 사용자의 정보로 바꿉니다. 변경이 바로 적용됩니다.  
Linux, macOS 또는 Unix의 경우는 다음과 같습니다.  

```
aws timestream-influxdb update-db-instance \
    --identifier my-db-instance \
    --db-storage-type desired-storage-type \
    --allocated-storage desired-allocated-storage \
    --db-instance-type desired-instance-type \
    --deployment-type desired-deployment-type \
    --db-parameter-group-name new-param-group \
    --port 8086
```
Windows의 경우:  

```
aws timestream-influxdb update-db-instance ^
    --identifier my-db-instance ^
    --db-storage-type desired-storage-type ^
    --allocated-storage desired-allocated-storage ^
    --db-instance-type desired-instance-type ^
    --deployment-type desired-deployment-type ^
    --db-parameter-group-name new-param-group
    --port 8086
```