- https://github.com/pingcap/tidb
- https://github.com/facebook/rocksdb/
- https://github.com/google/leveldb
- https://en.wikipedia.org/wiki/Log-structured_merge-tree
- https://en.wikipedia.org/wiki/Bloom_filter
- http://sigmod2016.org/pods_list.shtml
- Lock free datastructures (https://arxiv.org/pdf/1510.00116v1.pdf)
- Distributed git like K/V inmemory datastore.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* build 1, job X | |
docker volume create --name Xcache1 --driver cache-driver | |
#/VolumeDriver.Create | |
mount -t overlay overlay -olowerdir=/cacheX,upperdir=/cacheX1Upper,workdir=/work /cacheX1 | |
docker run slave -v Xcache1:/cache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Cache - X | |
* Build - 1 | |
* Copy of cache- X` and share mount it into build 1. | |
* On build sucess, cache X+1 gets commited back to X | |
* cache is now X+1 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"fmt" | |
"github.com/fsouza/go-dockerclient" | |
"log" | |
"net/http" | |
"os" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
g init | |
g remote add origin [email protected]:suryagaddipati/mycool-packages.git | |
echo vim-9.3p1 >> .git/info/sparse-checkout | |
git config core.sparsecheckout true | |
git fetch --depth=1 .git master #branch or sha | |
#g pull origin master --depth 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//type | |
type T struct { | |
A int | |
B string | |
} | |
t := T{23, "skidoo"} | |
//type inheritence | |
type K struct{ | |
T |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
starwars | |
aliens | |
ufo's | |
legos | |
superheros | |
heists | |
vampires | |
serial killers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ava.lang.ClassCastException: hudson.util.CopyOnWriteList cannot be cast to hudson.model.JobProperty | |
at hudson.model.Job.onLoad(Job.java:233) | |
at hudson.model.AbstractProject.onLoad(AbstractProject.java:320) | |
at hudson.model.Project.onLoad(Project.java:98) | |
at com.groupon.jenkins.dynamic.build.DbBackedProject.onLoad(DbBackedProject.java:89) | |
at com.groupon.jenkins.dynamic.build.DynamicProject.onLoad(DynamicProject.java:104) | |
at com.groupon.jenkins.dynamic.organizationcontainer.OrganizationContainer.getJobsForThisContainer(OrganizationContainer.java:138) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm verb unsafe-perm in lifecycle true | |
npm verb addLocalTarball adding from inside cache /Users/sgaddipati/.npm/dotci/0.0.4/package.tgz | |
npm verb afterAdd /Users/sgaddipati/.npm/dotci/0.0.4/package/package.json not in flight; writing | |
npm verb afterAdd /Users/sgaddipati/.npm/dotci/0.0.4/package/package.json written | |
npm verb getPublishConfig undefined | |
npm verb publish registryBase https://registry.npmjs.org/ | |
npm verb request uri https://registry.npmjs.org/dotci | |
npm verb request sending authorization for write operation | |
npm info attempt registry request try #1 at 13:48:04 | |
npm verb request using bearer token for auth |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins: | |
- hipchat: | |
room: test | |
notify_on: FAILURE_AND_RECOVERY| ALL | |
message: optional message |