일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- virtualservice
- Strimzi
- traceId
- istio
- hammerDB
- zset
- Debezium
- MSSQL
- 동등성
- Kubernetes
- minreplica
- slow query
- spring boot
- 스프링부트
- Leaderboard
- propogation
- Grafana
- Benchmarks
- keda
- Kafka
- 0 replica
- Database
- blue-green
- Salting
- SW 마에스트로
- eks
- logback
- docket
- Helm
- yml
- Today
- Total
목록전체 글 (65)
김태오

A general way of automatically constructing a procedure for computer derivatives numerically - a mathematical tool that allows us to compute the gradients of complex functions, including those with multiple inputs and outputs. * this is not a function or a formula, it is a mathematical procedure. Most of the times, it makes a computation graph. a computation graph is a graphical representation o..
@Configuration @EnableWebSecurity public class SecurityConfig extends WebSecurityConfigurerAdapter { @Autowired private CustomUserDetailsService customUserDetailsService; @Autowired private CustomAuthenticationProvider customAuthenticationProvider; @Autowired private CustomAccessDeniedHandler customAccessDeniedHandler; @Autowired private CustomAuthenticationSuccessHandler customAuthenticationSuc..

OS : What helps softwares run well in a hardware CPU: - ISA (Instruction Set Architecture) CISC vs RISC RISC had decreased number of instructions, it reduced the complexity, resulting in high speed and CPU Clock. - Pipelining Fetch | Decode | Execute | Write Back Mainly used for enhancing performance by executing multiple instructions at once, which is called pipelining. - Instruction Level Para..

The Open Systems Interconnection (OSI) model is a conceptual framework used to describe the communication functions of a network. It consists of seven layers, each of which represents a specific function in the communication process. The seven layers of the OSI model, from bottom to top, are: Physical Layer: Deals with the physical characteristics of the communication medium, such as voltage lev..

FDMA and TDMA seemed pretty intuitive, but studying CDMA seemed like a slightly more higher level then both. Some key terms in CDMA is Data Representation and the Chip Sequence. The The chip sequence is a short binary code, often just a few bits long, and is unique to each user in the network. In data representation, each data bit is represented by a long sequence of chips, which are produced by..

In computer networking, a packet is a unit of data that is routed between an origin and a destination on the internet. A packet contains two types of information: control information, which contains the source and destination addresses, and payload data, which contains the actual data being sent. On the other hand, a frame is a unit of data that is used for data transmission between two devices ..