Skip to content

Commit b6ff262

Browse files
author
Bharathi Ramana Joshi
committed
Mac notes
1 parent d320995 commit b6ff262

File tree

5 files changed

+137
-5
lines changed

5 files changed

+137
-5
lines changed

java-concurrency.md

+63-4
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,15 @@
5757
+ `size` and `isEmpty` are approximate
5858
+ only when application needs to lock Map for exclusive access the
5959
ConcurrentHashMap is not correct replacement
60+
- `ConcurrentHashMap` interface:
61+
+ `putIfAbsent` (atomic check and insert)
6062
- Copy-on-write collection
6163
- `BlockingQueue`: blocks threads on queue underflow and overflow.
64+
- `BlockingQueue` interface:
65+
+ `add`
66+
+ `offer`
67+
+ `take`
68+
+ `poll`
6269
- Implementations of `BlockingQueue`:
6370
+ LinkedBlockingQueue
6471
+ ArrayBlockingQueue
@@ -67,14 +74,66 @@
6774
participate in hand-off from producer; otherwise producer will block
6875
- Work stealing pattern: consumers can consume from other consumer's queue
6976
- Deque: double eneded queue used for work stealing pattern
70-
- `CountDownLatch`: `await` and `countDown`
71-
- `Semaphore`: `acquire` and `release`. Fair if FIFO is followed in granting
72-
the permits.
77+
- Synchronizer: object used to coordinate control flow of threads based on
78+
shared state of syncrhonizer.
79+
80+
- `Latch`: synchronizer used to delay progress of thread until latch reaches
81+
terminal state.
82+
- `CountDownLatch` interface:
83+
+ `await`
84+
+ `countDown`
85+
86+
- `CyclicBarrier`: synchronizer that allows a set of threads to all wait for
87+
each other to reach a common barrier point repeatedly.
88+
- `CyclicBarrier` interface:
89+
+ `await`
90+
91+
- `Semaphore` used to control number of threads that can access a certain
92+
resource (e.g. file descriptor) or perform a given action at a time.
93+
- `Semaphore` controls a set of virtual permits which threads can acquire and
94+
release.
95+
- `Semaphore` interface:
96+
+ `acquire`
97+
+ `release`.
98+
- `Semaphore` is fair if FIFO is followed in granting the permits.
7399

74100
# Chapter 6
75-
- Executor: separates task submission from task execution.
101+
- Disadvantages of unbounded thread creation:
102+
+ Threadlife cycle overhead
103+
+ Idle thread increase resource consumption (CPU, garbage collection, etc)
104+
+ JVM has implementation limit on number of allowed threads, will throw
105+
`OutOfMemoryError` upon hitting this limit which is hard to recover from
106+
- `Executor`: separates task submission from task execution.
107+
- Tasks are wrapped in Runnable or Callable and submitted to an executor.
108+
- Lifecycle of a task submitted to an executor:
109+
1. Created
110+
2. Submitted
111+
3. Started
112+
4. Completed
113+
- ExecutionException: exception in which a tasks exception gets wrapped when a
114+
thread calls task's future.get
76115
- RejectedExecutionException: exception thrown when a task submitted to an
77116
executor is not run.
117+
- `Executor` interface:
118+
+ `execute(Runnable)`
119+
120+
# Chapter 7
121+
- Threads in blocked state throw `InterruptedException`, if a thread is not
122+
blocked state and gets interrupted, then the thread's interrupted status flag
123+
is set but no exception is thrown.
124+
- Swallowing the `InterruptedException` is bad practise as swallowing makes it
125+
not possible for methods up the call stack to interrupt a thread.
126+
- `Thread.interrupted()` fetch and clear the interruption status flag.
127+
- `Thread.interrupt()` set the interruption status flag and cause an
128+
`InterruptedException` in invoked thread if blocked.
129+
- Either a thread should propogate the `InterruptedException` or reset the
130+
interruption status using `Thread.currentThread().interrupted()`
131+
- Tasks do not execute in threads they own; they borrow threads owned by a
132+
service such as a thread pool. Code that doesn’t own the thread (for a thread
133+
pool, any code outside of the thread pool implementation) should be careful
134+
to preserve the interrupted status so that the owning code can eventually act
135+
on it, even if the “guest” code acts on the interruption as well.
136+
- You should know a thread’s interruption policy before interrupting it.
78137

79138
# Chapter 14
80139
- Use `wait`, `notify`, `notifyAll` on any `Object` for conditional variables.

k8s.md

+6
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
* Platform (cloud/virtual/physical)
1515
* Fault tolerance
1616
- Manifest: initial configuration.
17+
18+
# 101
1719
- Cluster -> Node -> Pod -> Container -> Application/microservice.
1820
- Pod: abstraction over containers to provide a uniform communication interface
1921
irrespective of underlying container (may be docker or something else).
@@ -41,4 +43,8 @@
4143
Pods and ReplicaSets. You describe a desired state in a Deployment, and the
4244
Deployment Controller changes the actual state to the desired state at a
4345
controlled rate
46+
47+
# Networking
48+
- Each pod gets cluster-wide unique IP address
4449
-
50+

kafka.md

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# 101
2+
- Broker: a single Kafka server, which receives messages from producers,
3+
assigns offsets to them, and commits the messages to storage on disk.
4+
- Cluster: set of brokers.
5+
- Topic: collection of partitions
6+
- Partition: single commit-log. Each partition can be hosted on a different
7+
server.
8+
- Replication: multiple copies of partitions across brokers to improve
9+
fault-tolerance.
10+
- More brokers => more time required to elect leader.
11+
- Kafka is organized into topics, each topic has partitions, partitions have
12+
replicas stored on brokers.
13+
- Each broker stores hundreds/thousands of replicas belonging to different
14+
topics and partitions.
15+
- A partition is owned by a single broker in the cluster, and that broker is
16+
called the leader of the partition. All producer and consumer requests for a
17+
partition go through the partition's leader to ensure consistency.
18+
- ZooKeeper is used by Kafka to store metadata about the Kafka cluster and the
19+
consumer client details.
20+
- ZooKeeper is a centralized service for maintaining configuration information,
21+
naming, providing distributed synchronization, and providing group services.
22+
TODO explore ZooKeeper
23+
- The key of a record determines which partition the record will be written to.
24+
All records with the same key are written to the same partition. Useful to
25+
distribute records among processes reading specific partitions.
26+
- If a record's key is null, the record is written to a partition at random
27+
as determined by a round robin algorithm.
28+
- As long as the number of partitions in a topic are not changed, records with
29+
the same key will be hashed to the same partition. If a new partition is
30+
added, the older records will not be moved but new records will get hashed
31+
according to the new number of partitions.
32+
- Kafka's defualt partition algorithm is independent of the Java library
33+
version.
34+
35+
# Producers
36+
- Trade-offs to consider when configuring Kafa:
37+
1. Is every message critical or can we tolerate loss of messages? Are we OK
38+
with duplicating messages?
39+
2. Are there any strict latency or throughput requirements we need to
40+
support?
41+
- A separate thread is responsible for batching records to be sent to a
42+
particular topic and partition.
43+
- If a broker is able to successfully write the messages, the broker returns a
44+
`RecordMetadata` object with the topic, partition, and the offset of the
45+
record within the partition; otherwise the broker returns an error.
46+
- Three ways to use a producer:
47+
1. Fire-and-Forget
48+
2. Synchronously: get a future
49+
3. Asynchronously: pass a callback
50+
- Producer configurations:
51+
1.
52+
53+
# Consumers
54+
- Consumer group: set of consumers of a topic in which each consumer receives
55+
records from a disjoint subset of partitions.
56+
- If there are more consumers in a single group with a single topic than we have
57+
partitions, some of the consumers will be idle and get no messages at all.

microservices.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# 101
2+
- Microservices do not share DBs

mlir-toy.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Chapter 1
22
- Dialect: grouping functionality to extend MLIR system by adding new operators,
3-
attributes, and types.
3+
attributes, and types. A dialect consists of:
4+
+ A prefix / namespace
5+
+ A list of custom types, each its C++ class
6+
+ A list of operations, each its name and C++ class implementation
7+
- Verifier for operator invariants (e.g. toy.print must have a single operand)
8+
- Semantics (no-side-effects, constant-folding, CSE-allowed)
9+
+ Passes: analysis, transformations, dialect conversions
10+
+ Possibly custom parser and assembly printer
411
- Operations are defined by
512
+ Name
613
+ List of SSA operand values
@@ -10,6 +17,7 @@
1017
+ Source location
1118
+ List of successor blocks
1219
+ List of regions
20+
- Region: list of basic blocks. Approximately CFG.
1321
- Traits: mechanism to inject additional behavior (accessors, verification, etc)
1422
into operators.
1523
- MLIR allows undefined operations to be manipulated through opaque `Operaton`

0 commit comments

Comments
 (0)