- Feb 2021
-
memerocket.com memerocket.com
-
Looking For
A slightly-off Star Wars reference:
"These aren't the droids you're looking for" —Obi-Wan Kenobi Star Wars: Episode IV–A New Hope
-
- Dec 2020
-
geode.apache.org geode.apache.org
-
length of time the asynchronous messaging queue can exist
I think this statement is misleading. It implies the time is measured from the birth of the queue. It's actually measured since the most recent transmission to the receiver. Source code (Connection.java) says:
- How long to wait, with the receiver not accepting any messages, before kicking the receiver out
- of the distributed system. Ignored if asyncDistributionTimeout is zero.
-
-
www.usenix.org www.usenix.org
-
We note that liveness of the consensus layer dependson a majority of bothCjandCj+1remaining correct toperform the ‘hand-off’: Between the time whenCjbe-comes current and untilCj+1does, no more than a mi-nority fail in either configuration.
Make sense. Glad they call this out though!
-
-
blog.cloudflare.com blog.cloudflare.com
-
until the faulty switch recovered
Is there not a configurable timeout that would have let nodes 2 and 3 form a cluster (with 3 still the leader) and causing node 1 to shut itself down (ostensibly ahead of the fault switch recovering)?
-
-
geode.apache.org geode.apache.org
-
In parallel to the receipt of the SuspectMembersMessage
"in parallel to receipt" confuses me. If it said "in parallel to sending the SuspectMembersMessage, the suspicious member initiates a distributed…"
-
-
geode.apache.org geode.apache.org
-
The coordinator sends a network-partitioned-detected UDP message
The implication here is that the coordinator can (in general) learn of a network-partition-detected event from other members. This implies that a non-coordinator member notifies the coordinator of a network-partition-detected event.
-
total membership weight has dropped below 51%
Seems to me that quorum is lost when the total weight is less-than-or-equal-to 50%. Another way of saying that is quorum requires a majority, and a majority is greater-than 50%.
-
- Dec 2018
-
geode.apache.org geode.apache.org
-
netSearch
what's netSearch?
-
Map.put
how can Map.put be both a "create" operation and a "modify" operation?
-
put, putAll, Map.put
what's the diff between put and Map.put?
-
-
geode.apache.org geode.apache.org
-
Queries and indexes reflect the cache contents and ignore the changes made by ongoing transactions
woopsie!
-
-
geode.apache.org geode.apache.org
-
voluntary rollback
the transaction manager can perform a "voluntary commit"? wouldn't that be something only an application could do?
-
-
geode.apache.org geode.apache.org
-
hosted entirely by one member
Ah since all data for a replicated region is stored on all members, it follows that a transaction can be run on any member.
For a partitioned region, a transaction would have to run on the member designated as the primary member for buckets containing the data of interest, I suppose.
-
-
geode.apache.org geode.apache.org
-
geode.apache.org geode.apache.org
-
does not support on-disk or in-memory durability for transactions
Hang on, don't the next two paragraphs directly contradict this statement?
-
two-phase commit
the distinction between "two-phase locking" and "two-phase commit" is not clear
-
-
geode.apache.org geode.apache.org
-
two-phase commit protocol
Wait how many phases? There are 5 items on the list after the colon there.
-
-
geode.apache.org geode.apache.org
-
Create a copy
boy immutable object sure would be nice here. Even better, persistent data structures!
-
Modifying a value in place bypasses the entire distribution framework provided by Geode
I think this applies regardless of the copy-on-read setting. If you need to modify a value (of an entry), you have to modify a copy, and then re-set it via put(k,v) (or some other data-modifying API method)
-
If you do not have the cache’s copy-on-read attribute set to true
…should I infer that if I do have copy-on-read set to true, that I can change objects returned from entry access methods?
-
- Nov 2018
-
geode.apache.org geode.apache.org
-
Replicated (distributed)
this makes me think "distributed" is an alias for "replicated". but other doc pages make me think that "distributed" is a superset containing both "replicated" and "partitioned"
-
Client regions must have region type local
?
-
-
geode.apache.org geode.apache.org
-
The main choices are partitioned, replicated, or just distributed. All server regions must be partitioned or replicated
does this mean that only a client cache, may configure a distributed region that is neither partitioned nor replicated?
-
-
geode.apache.org geode.apache.org
-
To resolve a concurrent update, a Geode member always applies (or keeps) the region entry that has the highest membership ID
the tie-breaker!
-
a replicate
I think this is talking about a distributed region here since the second sentence talks about partitioned ones.
-
normal
i.e. data policy == "normal" right? That data policy says:
- Allows the contents in this cache to differ from other caches.
- Data that this region is interested in is stored in local memory.
-
performs conflict checking in the same way as for a replicated region
If I understand this statement, then we are talking about an update event arriving at a partitioned region (on a peer JVM) or a client region (on a client JVM).
There are then, three kinds of region that might receive this event, I think:
- primary partitioned region
- non-primary partitioned region
- client region (proxy or caching proxy)
Seems to me that the conflict checking would differ in those three cases.
-
non-replicated
does this mean exactly "partitioned region" here? Or does "non-replicated" mean partitioned regions and client regions?
-
When a member receives an update
I think that "receives an update" here means "receives an update event". Contrast that with client code invoking a region update method via the Geode API in a member JVM.
-
hosts a replicate
if the region is "non-replicated" then how can the member "(pass) that operation to a member that hosts a replicate"?
-
- Oct 2018
-
gemfire.docs.pivotal.io gemfire.docs.pivotal.io
-
With a redundant partitioned region, if a member that hosts primary buckets fails or is shut down, then a Geode member that hosts a redundant copy of those buckets takes over WAN distribution for those buckets.
this is talking about failure. does the same behavior hold during rebalancing?
-
By default gateway sender queues use 5 threads to dispatch queued events.
Why does Geode burn threads for what is fundamentally an IO-bound process?
-
-
gemfire.docs.pivotal.io gemfire.docs.pivotal.io
-
peers in a single system
there's that word, "system", again. Shouldn't that say "cluster"?
-
-
gemfire.docs.pivotal.io gemfire.docs.pivotal.io
-
highest membership ID
there must be some reason why this seemingly arbitrary, but deterministic algorithm is beneficial. Ah eventual consistency!
-
indicates an out-of-order update
there's that need for synchronized clocks again huh
-
tombstone
🗝
-
it first passes that operation to a member that hosts a replicate
but wait, this section is about "non-replicated" regions though. I don't get it
-
-
gemfire.docs.pivotal.io gemfire.docs.pivotal.io
-
local timestamp
…of the entry?
-
synchronize their system clocks
How much clock skew is tolerable?
-
also
By "also" is this contrasting regions (distributing updates) to systems distributing updates? It would help if I understood what systems meant above.
Perhaps "system" means "cluster" and the distinction being made here is between serial and parallel replication?
-
systems
Does "system" mean cluster or member here?
-
-
gemfire.docs.pivotal.io gemfire.docs.pivotal.io
-
Replaces offline members
huh?
-
different host IP addresses
puzzling
-
available space
Interesting. So the percentage, not the absolute size, is balanced
-
gemfire.resource.manager.threads
Seems like this shouldn't be bound to the concept of a "thread". What if balancing a single region requires multiple threads? What if more than one region can be concurrently rebalanced with a single thread?
-
-
gemfire.docs.pivotal.io gemfire.docs.pivotal.io
-
vertical scaling
This is a nonstandard use of the term "vertical scaling".
-
-
gemfire.docs.pivotal.io gemfire.docs.pivotal.io
-
Data and event distribution is based on a combination of the peer-to-peer and system-to-system configurations.
This is a mysterious statement. Should it say "client/server" here instead of system-to-system?
-
- Sep 2018
-
cwiki.apache.org cwiki.apache.org
-
stream and aggregate the results
Can I define a "monoidal" function in Geode such that the function can run on each partition in parallel, with results from each partition being aggregated up?
-
entity groups
"entity groups" is mentioned in the paragraph (twice) and nowhere else on this page and nowhere in the cited paper (Helland). The paper talks about an "entity" which is a think referenced by a key. I think the "groups" here are actually groups of associations (key+entity). The grouping is based on "data affinity".
-
-
cwiki.apache.org cwiki.apache.org
-
which is available to customers
Why is it available to customers? When would a customer want to use it? When would a customer not want to use it?
-
- Sep 2017
-
www.fastcompany.com www.fastcompany.com
-
you never let the child do something that isn’t the real thing
Logo > Minecraft? >> Clash of Clans
Rocksmith >> Guitar Hero!
-
I don’t know if you’ve read Kahneman’s Thinking Fast and Slow, but you should look at it
Grain of salt: Kahneman says "I placed too much faith in underpowered studies (about priming research)".
-
- Apr 2016
-
blog.jonudell.net blog.jonudell.net
-
I’ve long imagined a standards-based annotation layer for the web
Me too @jon! Good luck to you!
PS it seems like it'd be a very small step from open annotation to allowing somebody to produce a chunk of original content (that is not a reference to anything else). Then we're done :)
:bowtie:
-
- Jun 2015
-
aegis.sourceforge.net aegis.sourceforge.net
-
Recursi ve M ak eC onsidered
This is a classic.
-
-
web.hypothes.is web.hypothes.is
-
Properly rewriting all the URLs in the proxied page is a tricky business
Surely. Look at what happens to HuffPo…
before:
and after:
Notice that the proxied page is missing the "Iowa Straw Poll" photograph. But perhaps more importantly it's missing the Subaru ad.
As a result, do you think HuffPo would object to the proxied page?
-
- May 2015
-
jonudell.net jonudell.net
-
Medium's SPA navigation seems to foil Hypothes.is. I got back to your original Medium post by hitting the back button from a couple levels deep in Medium responses. Notice there are no Hypothes.is comment indicators:
screen shot of Medium article Missing Hypothes.is comment indicator
Tags
Annotators
URL
-
- Mar 2015
-
my.brainspace.com my.brainspace.comExplore1
-
then the notion of a meditation practice or of mindfulness training, which implies progress toward a future goal, seems at odds with the very concept of
Revolutionary?
-
-
web.hypothes.is web.hypothes.is
-
Here’s a presentation at the 2013 Personal Democracy Forum that provides a little more context for our project.
This is an inspiring talk.
Tags
Annotators
URL
-