🧾 curl 주요 옵션 정리📡 1. 기본 요청curl http://example.com기본 GET 요청을 보냄🔁 2. HTTP 메서드 지정curl -X POST http://example.comcurl -X PUT http://example.com-X를 이용해 HTTP 메서드 설정📤 3. 데이터 전송 (POST/PUT 등)curl -d "key=value&key2=value2" http://example.comcurl -d '{"json":"data"}' -H "Content-Type: application/json" http://example.com-d: 데이터 전송-H: 헤더 설정🧾 4. 헤더 추가curl -H "Authorization: Bearer token" http://example...
✅ MongoDB Sink Connector 설정에 유용한 주요 옵션들키설명connection.uri필수. MongoDB 접속 주소 (mongodb://user:pass@host:port/?authSource=...)topicsKafka에서 수신할 토픽 이름 (쉼표로 여러 개 가능)databaseMongoDB 내 사용할 데이터베이스 이름collectionMongoDB 내 컬렉션 이름tasks.max병렬 태스크 수 (성능 확장용)writemodel.strategyReplaceOneDefaultStrategy, InsertOneDefaultStrategy 등 쓰기 전략document.id.strategy문서의 _id 생성 방식 (예: BsonOidStrategy, ProvidedInKeyStrategy, F..